Antonym:EPHEMERAL:
Error Spotting:The woman that had (a)/ kidnapped a child has now (b)/ been apprehended and is being (c)/ held in the citys jail(d). |
Answer |
Fill in the Blank: His over-enthusiasm has now been ________ because of his ________ to mobilize the required support. |
Answer |
Fill in the Blank: Anything in this shop can be bought, ________ |
Answer |
Sentence Arrangement: (X) It is a general tendency among human beings that as our familiarity with a person increases, our aversion towards him too starts going higher. (1) when the relationship grows deeper, it brings the shortcomings and deficiencies of a person to the fore front. (2) As the relationship starts, the good qualities of a person come into notice and these attract the other towards him and his other qualities of lesser grade remain in the rear. (3) The real qualities of a person are observed only when relationship with him becomes closer and go to the level of intimacy. (4) No person on this earth can claim himself or herself to be free from defects and shortcomings. (Y) A person by nature brings forth his better instincts and traits to show to others and tends to hide his weak points and shortcomings. |
Answer |
Cisco Technical Test Given two sorted lists of size m and n respectively. The number of comparisons needed in the worst case by the merge sort algorithm will be? |
Answer |
Which indicates pre-order traversal? |
Answer |
What is the output of following program? include int main() { int n; for (n = 9; n!=0; n--) printf("n = %d", n--); return 0; } |
Answer |
How many times LogicGuns will be printed? include int main() { int i = -5; while (i <= 5) { if (i >= 0) break; else { i++; continue; } printf("LogicGuns"); } return 0; } |
Answer |
What will be the output of the following program on GCC compiler? include int main() { int x=4, y, z; y = --x; z = x--; printf("%d, %d, %d\n", x, y, z); return 0; } |
Answer |
Which of the following operation is illegal in structures? |
Answer |