Home / Quizzes / Federal University of Technology, Minna / CSE934 / CSE934 - Computer Science Elective - QUIZ CSE934 - Computer Science Elective - QUIZ CSE934 · Computer Science Elective
Federal University of Technology, Minna
Questions 55 Questions Practice 55 questions on CSE934 - Computer Science Elective at Federal University of Technology, Minna. Free AI-generated quiz on uNotes — track your score, retake anytime.
Questions 1 Which of the following is NOT a fundamental data type in C++?
2 In C++, for what value of an expression is an if-statement block NOT executed?
3 Which C++ library header must be included to use the `pow()` function?
4 What is the result of the function call `pow(2, 5)` in C++?
5 Which of the following statements correctly describes the C++ preprocessor directive `#define myx 0.6912;`?
6 Which of the following can be used for a single-line comment in C++?
7 Multiple lines of comments in C++ can be implemented using which of the following syntax?
8 What is the primary purpose of `System("PAUSE")` in a C++ program?
9 Consider the `for` loop: `for(i = 0; i < 10; i++) { }`. How many times will the loop body be executed?
10 Evaluate the logical expression: `(false && true) || false || true`