Tag: India

  • C++ Programming MCQ – Constructors and Destructors – 3

    C++ Programming MCQ – Constructors and Destructors – 3

    C++ Programming written test Questions & Answers focuses on “Constructors and Destructors – 3”. Q 1. Which of the following constructors are provided by the C++ compiler if not defined in a class?A. Default constructorB. Copy Assignment OperatorC. Copy constructorD. All of the mentioned Show Answer Answer:-D. All of the mentioned Explanation If a programmer…

  • C++ Programming MCQ – Constructors and Destructors – 2

    C++ Programming MCQ – Constructors and Destructors – 2

    C++ Programming Multiple Choice Questions & Answers (MCQs) focuses on “Constructors and Destructors – 2”. Q 1. What is the difference between constructors and destructors?A. They have a different function nameB. Constructors allow function parameters whereas destructors do notC. Constructors does not have return type whereas destructors do haveD. Constructors does not function parameters Show…

  • Current Affairs Quiz – January, 2025

    Current Affairs Quiz – January, 2025

    Q 1.The Brazilian Velvet Ant species is mainly found in which habitat? A. RainforestB. Savanna grasslandsC. Shrub desertD. None of the Above Show Answer Answer:-C. Shrub desert Explanation Scientists discovered that the dark markings on the Brazilian Velvet Ant absorb nearly all visible light, reflecting less than 1%. Velvet ants, a group of parasitic wasps,…

  • C++ Programming MCQ – Constructors and Destructors

    C++ Programming MCQ – Constructors and Destructors

    C++ Programming Multiple Choice Questions & Answers (MCQs) focuses on “Constructors and Destructors”. Q 1. What is the role of a constructor in classes?A. To modify the data whenever requiredB. To destroy an objectC. To initialize the data members of an object when it is createdD. To call private functions from the outer world Show…

  • Cloud Computing MCQ Questions & Answers Part 5

    Cloud Computing MCQ Questions & Answers Part 5

    Q 81. What is the name of Rackspace’s cloud service? A. Cloud On-Demand B. Cloud Servers C. EC2 D. None of these Show Answer Answer:-B. Cloud Servers Q 82. Point out the wrong statement. A. a composable component must be stateless B. a composable component must be modular C. a cloud cannot be created within…

  • C++ Programming Questions and Answers – Dereferencing

    C++ Programming Questions and Answers – Dereferencing

    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 graduate or an experienced IT professional. Our C question bank comes with the detailed explanation…

  • SQL MCQ Questions and Answers 4

    SQL MCQ Questions and Answers 4

    Q 61. A subquery in an SQL SELECT statement is enclosed in: A. brackets — […]. B. parenthesis — (…). C. CAPITAL LETTERS. D. braces — {…}. Show Answer Answer:-B. parenthesis — (…). Explanation In SQL, a subquery is enclosed in parentheses, as shown in Option A. Subqueries are used to retrieve data from one…

  • Cloud Computing MCQ Questions & Answers Part 3

    Cloud Computing MCQ Questions & Answers Part 3

    Q 41. Which of the following statement is wrong about Amazon S3? A. amazon s3 is highly reliable B. amazon s3 provides large quantities of reliable storage that is highly protected C. amazon s3 is highly available D. none of the mentioned Show Answer Answer:-D. None of the mentioned Q 42. Which of the following…

  • SQL MCQ Questions and Answers 3

    SQL MCQ Questions and Answers 3

    Q 41. Which of the following query finds the total rating of the sailors who have reserved boat “103”? A. SELECT SUM(s.rating) FROM sailors s, reserves r AND r.bid = 103; B. SELECT s.rating FROM sailors s, reserves r WHERE s.sid = r.sid AND r.bid = 103 C. SELECT COUNT(s.rating) FROM sailors s, reserves r…

  • SQL MCQ Questions and Answers 2

    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…

You cannot copy content of this page