You are on page 1of 3

COMPUTER VISION PAPER*************************(CV,PUNE) 1.There are 45 questions which includes unix , c & apptitude,in 40 mts. 2.

People sayvthat cut of will be around 25-30 questions.All questions are objective type only. 3.Interview fulla project pati thaan katpanga.konjam fem tariumnu katiko. There wont be any technical (about software)questions in software. 4.here are some of the questions, 1.|x-a| = a-x solve. ans.x<=a 2.There is a six letterword UGANDA.How many ways u can arrange the letters in the word in such a way that both A's are together. ans.120 3.If two cards are taken one after another without replacing from a pack of cards.what will be the probability for 2 cards to be drawn? ans.1/13 x1/17 4.51x53x.....x59 ans.99!x25!/2 power 24x 49!x5! 5.The ratio of boys to girls is 6:4.60% of the boys and 40% of girls take lunch in the canteen.What % of class takes lunch? ans.52% 6.& 7. 2 simple problems from data sufficency(refer 1 or 2 test from ims) three analytical questions (simple) do some 10 questions from gre book. UNIX & C unix commands:-fork,tar,chmod,yacc,find,compress,make questionukku fork thaan answer ana quetion tariyathu. similarly hexa decimala larnthu octhal-0 etho matiratirukku oru quetion athukku answer 23. C:-know about calloc,exit(),pointer and arrays,pointer to functions(5 th chapter in K & R c book.(pointer fn. arguments thro'pointer) some protype functions like swap,sinfunction in math.h -pointer arithmatic -what is the value of "i"? i=Strlen("BLUE") + strlen ("purple")/strlen("red")-strlen("green") ans:-1 i=2 printf("%ld%ld%ld%ld",i,i++,i--,i++): what is the output? ans 3232 what is the output of the following statements(string) printf("what is 10 the output"): ans.what is read about sttic,extern.

:wq Some of the C frequently asked questions (Collected from Express Computer mag.) ******************************************************************************* 1. what is the error in the following sequence of program. int i1; switch(i1) { printf("The value of I1 is :"); case 1: printf("%d",i1); break; case 2: printf("%d",i1); break; default : printf("Invalid entry"); } 2. what is an error in the following sequence of a program. int i1; switch(i1) { case 1: goto lure; break; case 2: printf("This is second choice"); break; default: printf("This is default choice"); } void fun(void) { lure: printf("This is unconditional jump"); } 3. What is an error in the following sequence of a program. int i; switch(i) { case 1: printf("This is first choice"); break; case j: printf("This is second choice"); break; case 1+2+4: printf("This is the third and last choice"); break; } 4. what is an error in the following sequence of a program. int i; switch(i) { default: printf("This is default value"); break; case 1: printf("This is first choice"); break; case 2: printf("This is the second choice"); }

1. Will the following be used as an identifier? a. sum_of_credits b. initial tree d. while e. SECTION_6 g. 2_4_87 2. Are the identifiers name and NAME are same?

c. final_# f. bingo-square

3. Is it right to type # of #define other than in first column? 4. Does C require expressions to be enclosed in parenthesis for while loop? 5. Will the preprocessor terminates with semicolon ? 6. What is the return value of scanf statement? 7. What will happen, if there are two statements (without grouping) in if condition and an else is there for that if. 8. What will be the output of this program. int no_fish; no_fish=1; if (no_fish==1) printf("The water was to warm\n"); else ; printf("The wates were all fished out\n"); 9. Is parenthesis required for conditional expression in if condition? ******************* end **********************

You might also like