Tag: General
-
Artificial Intelligence MCQ Questions & Answer Part 4
Q 31. Ambiguity may be caused by: A. syntactic ambiguity B. multiple word meanings C. unclear antecedents D. All of the above Show Answer Answer:-D. All of the above Q 32. Which company offers the LISP machine considered to be “the most powerful symbolic processor available”? A. LMI B. Symbolics C. Xerox D. Texas Instruments…
-
Artificial Intelligence MCQ Questions & Answer Part 2
Q 11. Seymour Papert of the MIT AI lab created a programming environment for children called: A. BASIC B. LOGO C. MYCIN D. None of the above Show Answer Answer:-B. LOGO Explanation Seymour Papert, a researcher at the MIT AI Lab, created a programming environment for children called LOGO. LOGO is a programming language specifically…
-
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.…
-
C++ Programming Questions and Answers – Function Call
C++ quiz focuses on “Function Call”. One shall practice these quizzes to improve their C++ programming skills needed for various interviews (campus interviews, walk in interviews, company interviews), placements, entrance exams and other competitive exams. These questions can be attempted by anyone focusing on learning C++ programming language. They can be a beginner, fresher, engineering…
-
CSS Questions & Answers – Selectors
CSS Multiple Choice Questions & Answers (MCQs) focuses on “Selectors”. Q 1. What type of selector is used in this case? p {line-height: 150%;} A. element SelectorsB. class SelectorsC. id SelectorsD. none of the mentioned Show Answer Answer:-A. element Selectors Explanation These selectors are called element selectors and are simply used as follows: element-name {…
-
CSS Questions & Answers – Advanced Selectors
CSS Multiple Choice Questions & Answers focuses on “Advanced Selectors”. Q 1. Which of the following selector selects all elements of E that have the attribute attr that end with the given value?A. E[attr^=value]B. E[attr*=value]C. E[attr$=value]D. none of the mentioned Show Answer Answer:-C. E[attr$=value] Explanation Example: p[title$=”!”] {color: red;} Q 2. Which of the following…
-
Current Affairs Quiz – November, 2024
Q 1.Which state government has launched the Elevate 2024 scheme for early stage startups? A. KarnatakaB. RajasthanC. MaharashtraD. Jharkhand Show Answer Answer:-A. Karnataka Explanation Karnataka launched ELEVATE 2024 and Karnataka Acceleration Network (KAN) to support start-ups. ELEVATE 2024 is a grant scheme offering up to ₹50 lakh per start-up to help early-stage companies with seed…
-
Python Questions and Answers – Lists – 7
Python Code Output Questions Python Multiple Choice Questions & Answers (MCQs) focuses on “Lists-7”. Q 1.What will be the output of the following Python code? a=[“Apple”,”Ball”,”Cobra”] a.sort(key=len) print(a) A. Invalid syntax for sort() B. [‘Ball’, ‘Apple’, ‘Cobra’] C.[‘Apple’, ‘Ball’, ‘Cobra’] D.[‘Cobra’, ‘Apple’, ‘Ball’] Show Answer Answer:-B.[‘Ball’, ‘Apple’, ‘Cobra’] Explanation The syntax isn’t invalid and the…