Tag: Question

  • Artificial Intelligence MCQ Questions & Answer Part 6

    Artificial Intelligence MCQ Questions & Answer Part 6

    Q 51. A series of AI systems developed by Pat Langley to explore the role of heuristics in scientific discovery. A. RAMD B. MIT C. BACON D. DU Show Answer Answer:-C. BACON Q 52. A.M. turing developed a technique for determining whether a computer could or could not demonstrate the artificial Intelligence,, Presently, this technique…

  • Artificial Intelligence MCQ Questions & Answer Part 5

    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 2

    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…

  • C++ Programming Questions and Answers – Function Call

    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 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 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…

  • CSS Questions & Answers – Specificity and Importance

    CSS Questions & Answers – Specificity and Importance

    CSS Multiple Choice Questions & Answers (MCQs) focuses on “Specificity and Importance”. Find the specificity of the statments using the rule given below.A selector’s specificity is calculated as follows:1) count 1 if the declaration is from is a ‘style’ attribute rather than a rule with a selector, 0 otherwise (= a) (In HTML, values of…

  • CSS Questions & Answers – Applying Style to a Document

    CSS Questions & Answers – Applying Style to a Document

    CSS Interview Questions and Answers for freshers focuses on “Applying Style to a Document”. Q 1. Which of the following is the correct way to applying style to a document?A. Use an external style sheet, either by importing it or by linking to itB. Directly embed a document-wide style in the head element of the…

  • Current Affairs Quiz – November, 2024

    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 – 6

    Python Questions and Answers – Lists – 6

    Python Multiple Choice Questions & Answers (MCQs) focuses on “Lists-6”. Python Multiple Choice Questions & Answers (MCQs) focuses on “Lists-6”. Q 1. What will be the output of the following Python code? a=[10,23,56,[78]] b=list(a) a[3][0]=95 a[1]=34 print(b) A. [10,34,56,[78]] B. [10,23,56,[95]] C. [10,23,56,[78]] D. [10,34,56,[95]] Show Answer Answer:-B. [10,23,56,[95]] Explanation The above copy is a…

You cannot copy content of this page