Tag: MCQ
-
Cloud Computing MCQ Questions & Answers Part 2
Q 21. In distributed systems, link and site failure is detected by . . . . . . . . A. polling B. token passing C. handshaking D. none of the mentioned Show Answer Answer:-C. handshaking Explanation The correct answer is Option C: Handshaking, as it is the most reliable and commonly used method in…
-
SQL MCQ Questions and Answers 2
Q 21. Table Employee has 10 records. It has a non-NULL SALARY column which is also UNIQUE. The SQL statement SELECT COUNT(*) FROM Employee WHERE SALARY > ANY (SELECT SALARY FROM EMPLOYEE); prints A. 0 B. 5 C. 9 D. 11 Show Answer Answer:-C. 9 Explanation ANY compares a value with each of the values…
-
SQL MCQ Questions and Answers
Q 1. What is the full form of SQL? A. Structured Query List B. Structured Query Language C. Simple Query Language D. None of these Show Answer Answer:-B. Structured Query Language Explanation SQL (Structured Query Language) is a special-purpose programming language designed for managing data held in a relational database management system (RDBMS). Originally based…
-
Artificial Intelligence MCQ Questions & Answers Part 8
Q 71. In LISP, the function returns the list that results after the first element is removed (the rest f the list), is A. car B. last C. cdr D. cons Show Answer Answer:-C. cdr Q 72. Output segments of AI programming contain(s) A. printed language and synthesized speech B. Manipulation of physical object C.…
-
Artificial Intelligence MCQ Questions & Answers part 7
Q 61. LISP machines also are known as: A. super mini computers B. time-sharing terminals C. AI workstations D. All of the above Show Answer Answer:-C. AI workstations Q 62. Natural language processing can be divided into the two subfields of: A. context and expectations B. generation and understanding C. semantics of pragmatics D. recognition…
-
Artificial Intelligence MCQ Questions & Answer Part 5
Q 41. The hardware features of LISP machines generally include: A. large memory and a high-speed processor B. letter-quality printers and 8-inch disk drives C. a mouse and a specialized keyboard D. both (a) and (c) Show Answer Answer:-D. both (a) and (c) Q 42. In 1985, the famous chess player David Levy beat a…
-
Artificial Intelligence MCQ Questions & Answer Part 1
Q 1. What is the term used for describing the judgmental or common sense part of problem solving? A. Value based B. Critical C. Heuristic D. Analytical Show Answer Answer:-C. Heuristic Explanation A heuristic refers to a practical approach or guiding principle used to solve problems efficiently, especially when faced with complex or ill-defined situations.…
-
JavaScript MCQ
Q 1. Which type of JavaScript language is ___ A. Object-Based B. Object-Oriented C. Assembly-language D. High-level Show Answer Answer:-A. Object-Based Explanation JavaScript is not a pure OOP’s (object oriented programming) based languages such as PHP, java or many other languages, although it is an object-based language. It is not OOP’s based language, because it…
-
C++ Programming Questions and Answers – Operator Overloading – 1
C++ Programming Multiple Choice Questions & Answers (MCQs) focuses on “Operator Overloading – 1”. Q 1. What will be the output of the following C++ code? #include <iostream> #include <string> using namespace std; class A { static int a; public: void show() { a++; cout<<“a: “<<a<<endl; } }; int A::a = 5; int…