MCQOPTIONS
Saved Bookmarks
This section includes 657 Mcqs, each offering curated multiple-choice questions to sharpen your Testing Subject knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Mark the best option: The declarations typedef float height [100]; height men, women; |
| A. | define men and women as 100 element floating point arrays |
| B. | define men and women as 100 floating point variables |
| C. | define height, men and women as floating point variables |
| D. | are illegal |
| Answer» B. define men and women as 100 floating point variables | |
| 2. |
Predict the output of following program fragment main ( ) { float balance, loan; balance =1000.0; loan = balance/10; if ((balance > 500) && ( loan < 500)) printf(“good account \n"); if((balance < 500) || (loan < 500)) printf(“caution ! \n"); } |
| A. | good account |
| B. | caution ! |
| C. | good account caution ! |
| D. | None of these |
| Answer» D. None of these | |
| 3. |
Pulse stuffing is a strategy used in________________________. |
| A. | FDM |
| B. | TDM |
| C. | FHS |
| D. | DSSS |
| Answer» C. FHS | |
| 4. |
Choose the proper statement |
| A. | volatile is a reserved keyword in C++ |
| B. | user defined variables can also be overloaded along with method and operators. |
| C. | bool keyword is used for logical values |
| D. | Both A and C |
| Answer» E. | |
| 5. |
The function that actually created from a call to a template function is called |
| A. | Generated |
| B. | Inherited |
| C. | Spawned |
| D. | Declassified |
| Answer» D. Declassified | |
| 6. |
In tree construction which is the suitable efficient data structure? |
| A. | Array |
| B. | Linked list |
| C. | Stack |
| D. | Queue |
| Answer» C. Stack | |