所屬科目:研究所、轉學考(插大)、學士後-計算機概論
22. In C/C++ programming, it requires at least________
byte(s) when an integer number 32768 is
stored as characters in computer memory.(A)2(B)4(C)5(D)
24. Consider the below C/C++ statement:Which of the following is FALSE? (A) iPtr is a variable that stores a memory address (B) Statement *iPtr = 10 is invalid (C) iPtr is a pointer variable that points to an object of type int (D) The data value of the object that iPtr points to can be modified
25. Consider the below C/C++ program:We would like to compile and run the program. Which of the following statement is TRUE? (A) It will show compilation errors (B) It will show run-time errors (C) It will show "'A string" (D) It will show "A"
26. Consider the below C/C++ program: We would like to compile and run the program. Which of the following statement is TRUE? (A) It will show compilation errors (B) It will show run-time errors (C) It will show "x= 0,y=o" (D) It will show "x = 1, y= 2" int main(void)!
37. Consider the following tables, A and B, in a relational database: Which of the following SQL statement can be used to concatenate A and B? (A) SELECT * FROM A UNION ALL SELECT * FROM B (B) SELECT * FROM A FULL OUTER JOIN B ON A.id = B.id (C) SELECT * FROM A INNER JOIN B ON A.id = B.id (D)SELECT * FROM A LEFT JOIN B ON A.id = B.id
40. Which of the following is the post-order traversal of the below binary search tree? (A)18 19 27 45 55 58 60 (B) 45 27 18 19 55 58 60 (C) 19 18 27 55 58 60 45 (D) 19 18 27 60 58 55 45