Home Company Questions Aditi Interview Questions Aditi Interview Questions - 3

Login Form




Aditi Interview Questions - 3 Print E-mail

Directions for questions 1-10: Each problem contains a question and two statements giving certain data. You have to select the correct answer from (a) to (d) depending on the sufficiency of the data given in the statements to answer the question. Mark your answer as

(a) If statement (I) alone is sufficient.
(b) If statement (II) alone is sufficient.
(c) If both (I) and (II) together are sufficient but neither of statements alone is sufficient.
(d) Either of the statements (I) and (II) is sufficient.
(e) If statements (I) and (II) together are not sufficient. 


1. What is the distance from City A to City C in kms?
(I) City A is 90 kms from City B.
(II) City B is 30 kms from City C.


2. Is z less than w? z and w are real numbers.
(I) z2 = 25
(II) w = 9


3. The value of an estate in January 1905 started gradually declining in such a way that at the end of each year it was worth only x times its value at the beginning of the year. What was its worth in end December 1910 ?
(I) It was worth Rs.10,109 in the end of December 1906.
(II)It was worth Rs.12,345 in the beginning of January 1905.


4. In an election, 3 candidates A, B and C were representing for a membership of parliament. How many votes did each receive?
(I) A received 1006 votes more than B and 1213 more votes than C.
(II) Total votes cast were 15,414.


5. John studies Chinese in a school. Which school does he attend?
(I) All students in Jefferson High School take French.
(II) Maysville High School offers only Chinese.


6. How many girls passed the entrance exam this year?
(I) Last year 560 girls passed
(II) This year there was a 10% decrease over last year in the number of failures.


7. What is Raju's age?
(I) Raju, Vimala and Kishore are all of the same age.
(II) Total age of Vimala, Kishore and Abishek is 32 and Abishek is as old as Vimala and Kishore together.


8. Is Sreedhar eligible for an entry pass to the company premisers?
(I) The company does not allow strangers to enter the company.
(II)All employees are eligible to get a pass.


9. Among five friends who is the tallest?
(I) D is taller than A and C.
(II) B is shorter than E but taller than D.


10. Can a democratic system operate without effective opposition?
(I) The opposition is indispensable.
(II) A good statesman always learns more from his opponents than from
his fervent supporters.


11. What will the printf print?
                        main()
                        {
                            char *p,*f();
                            p=f();
                            printf("f() returns:%s\n",p);
                        }
                        char *f()
                        {
                            char result[80];
                            strcpy(result,"anything will do");
                            return (result);
                        }

(a) f() returns: anything will do
(b) f() returns:
(c) compilation  error
(d) The printf statement is not going to be executed


12. What would be the output of the following program.
                        main()
                        {
                            int i,j;
                            i=10;
                            j=sizeof(++i);
                            printf("%d",i);
                        }

(a) 11
(b) 10
(c)4
(d) compilation error


13. Notice the error in the default statement in the code snippet below. Will it give a compilation error?
                        main()
                        {
                            int a=10,j;
                            j=fn(a);
                            switch(j)
                            {
                                case 30: printf("the value is 30");
                                              break;
                                case 50: printf("the value is 50");
                                              break;
                                default:printf("the value is not 30 or 50");
                            }
                        }
                        fn(int a)
                        {
                            return (++a);
                        }

(a)  Will display "the value is 30"
(b) Will display "The value is not 30 or 50"
(c) Yes a compilation error would happen
(d) No compilation errors but there will be no output on the screen