If X > Y is false, which of the following is always true?

A. X < Y
B. X <= Y
C. X = Y
D. X >= Y


Answer: B

Computer Science & Information Technology

You might also like to view...

Web ________ refers to the next-generation Web

Fill in the blank(s) with correct word

Computer Science & Information Technology

In an Audio/Video editing situation, the advantage of a large, fast hard drive includes ________

a. Less expensive b. More rugged c. Faster disk writes and faster retrieval of source material d. None of the above

Computer Science & Information Technology

To build a threaded tree, first build a standard binary search tree. Then traverse the tree, changing the null right pointers to point to _____.

A. void* B. their second ancestor C. their successors D. the root

Computer Science & Information Technology

18. What is the output of the following code fragment?

int f1(int n, int m) { if(n < m) return 0; else if(n==m) return m+ f1(n-1,m); else return n+ f1(n-2,m-1); } int main() { cout << f1(1,4); return 0; } a. 0 b. 2 c. 4 d. 8 e. infinite recursion

Computer Science & Information Technology