Bitwise Operators – Yes / No Questions 1. Bitwise & can be used in conjunction with ~ operator to turn off 1 or more bits…
Bitwise Operators – True / False Questions 1. Left shifting a number by 1 is always equivalent to multiplying it by 2. A. True B.…
Bitwise Operators – Point Out Correct Statements 1. Which of the following statements are correct about the program? A. It prints all even bits from…
Bitwise Operators – Find Output of Program 1. Assunming, integer is 2 byte, What will be the output of the program? A. ffff B. 0fff…
Bitwise Operators – General Questions 1. In which numbering system can the binary number 1011011111000101 be easily converted to? A. Decimal system B.…
Object Oriented Programming Using C++ – Section 11 1. A function whose purpose is to send messages to other functions is known as a _____ A.…
Object Oriented Programming Using C++ – Section 10 1. The main difference in operation between an 'if statement and a 'while' statement is A. the 'while'…
Object Oriented Programming Using C++ – Section 9 1. Programmer-defined functions can be A. value-returning functions only B. void functions only C. either value-returning or void…
Object Oriented Programming Using C++ – Section 8 1. Variables that are declared in a block are known as _____ variables to that block A. confined…
Object Oriented Programming Using C++ – Section 7 1. The comma operator (,) is primarily used in conjunction with A. 'for' statement B. 'if-else' statement C.…