Recent questions tagged tricky

1 1 vote
1 1 answer
243
243 views
In the following sentence, phrases are marked as P, Q, and R. One of the parts may contain an error or may not be acceptable in standard written communication.Select the ...
1 1 vote
1 1 answer
1.1k
1.1k views
Consider the following two functions.void fun1(int n) { if(n == 0) return; printf("%d", n); fun2(n - 2); printf("%d", n); } void fun2(int n) { if(n == 0) return; printf("...
51 51 votes
14 answers 14 answers
19.5k
19.5k views
There are three boxes. One contains apples, another contains oranges and the last one contains both apples and oranges. All three are known to be incorrectly labeled. If ...
92 92 votes
12 answers 12 answers
34.1k
34.1k views
Consider the following two functions.void fun1(int n) { if(n == 0) return; printf("%d", n); fun2(n - 2); printf("%d", n); } void fun2(int n) { if(n == 0) return; printf("...
14 14 votes
3 answers 3 answers
2.7k
2.7k views
A large community practices birth control in the following peculiar fashion. Each set of parents continues having children until a son is born; then they stop. What is th...
16 16 votes
3 answers 3 answers
3.2k
3.2k views
The exponent of $3$ in the product $100!$ is$27$$33$$44$$48$None of the above
103 103 votes
7 answers 7 answers
34.0k
34.0k views
What is the largest integer $m$ such that every simple connected graph with $n$ vertices and $n$ edges contains at least $m$ different spanning trees ?$1$$2$$3$$n$
112 112 votes
12 12 answers
36.1k
36.1k views
A function $f(x)$ is continuous in the interval $[0,2]$. It is known that $f(0) = f(2) = -1$ and $f(1) = 1$. Which one of the following statements must be true?There exis...
82 82 votes
8 answers 8 answers
16.2k
16.2k views
Which one of the first order predicate calculus statements given below correctly expresses the following English statement? Tigers and lions attack if they are hungry or ...
To see more, click for the full list of questions or popular tags.