Jobs in India
Search Jobs
Search Jobs
Advertisements

Technical - C & C++ - 7 July 2003 by UbiNetics

Details of Technical - C & C++ - 7 July 2003 by UbiNetics conducted by UbiNetics for job interview.
Advertisements
Ubinetics Test Pattern- July 2003

20 c objective Qs to be answered in 30 minutes
All questions are related to basic c concepts like expression, arrays, loops ,structure , pointers around 3 or 4 qs on array with loops
Since paper is very easy cutoff is very high.
They will select 20% of the student for the interview after written test. Freshersworld.com
point to remember.
Each correct ans 1 marks
Each wrong answer 1 -ve mark
Sample Paper

Some of the questions will not have answers .Please forgive us.

1. Difference b/n scanf("%s",msg);and scanf("%[\^n]",msg); where msg is a char array.
2. What is ure of comma operator in for loop.
3. int shw(int *a){
*a = 10;
/* return stmt is missing */
}

main(){

int p=3,q=4;

q = shw(&p);

printf("%d %d",p,q);
}

4. which is true
a. all automatic variables are declared with in the function
b. all variables are automatic
c. all not declared variables are automatic
d. none
5. What is recursion. Recursive prog to generate Fibonacci series . Is it a best method?
6. write 7*a interms of +,-,