Tag: India
-
Square Root Quizs Question
Q 1. Square root of 21 ?A. 1.532B. 1.632C. 1.732D. 1.832 Show Answer Answer:-C. 1.732 Q 2. The area of a square playground in 256.6404 square metres. Find the length of one side of the playground.A. 16.02 metresB. 17.02 metresC. 18.02 metresD. 19.02 metres Show Answer Answer:-A. 16.02 metres Q 3. What is the square…
-
Current Affairs Quiz 3 December, 2023 Quizs Question
Q 1.Article 280(1) of the Constitutions lays down that the modalities for setting up which institution?A. Election CommissionB. Planning CommissionC. Finance CommissionD. NITI Aayog Show Answer Answer:-C. Finance Commission Explanation The Union Cabinet chaired by the Prime Minister Narendra Modi has approved the Terms of Reference for the Sixteenth Finance Commission. The 16th Finance Commission’s…
-
Python Quizs Question and Answers – Lists – 2
Q 1. Suppose list1 is [1, 3, 2], What is list1 * 2?A. [2, 6, 4]B. [1, 3, 2, 1, 3]C. [1, 3, 2, 1, 3, 2]D. [1, 3, 2, 3, 2, 1] Show Answer Answer:-C. [1, 3, 2, 1, 3, 2] Explanation Execute in the shell and verify. Q 2. Suppose list1 = [0.5…
-
Python Multiple Choice Quizs Question – Lists
Q 1. Suppose list1 is [1, 5, 9], what is sum(list1)?A. 1B. 15C. 9D. Error Show Answer Answer:-B. 15 Explanation Sum returns the sum of all elements in the list. Q 2. To shuffle the list(say list1) what function do we use?A. list1.shuffle()B. shuffle(list1)C. random.shuffle(list1)D. random.shuffleList(list1) Show Answer Answer:-C. random.shuffle(list1) Explanation Execute in the shell…
-
Quadratic Equations Exercise Quizs Question
Q 1. The roots of the equation ix2 – 4x – 4i = 0 areA. –2iB. 2iC. –2i, –2iD. 2i, 2i Show Answer Answer:-C. –2i, –2i Q 2. Two students while solving a quadratic equation in x, one copied the constant term incorrectly and got the roots 3 and 2. The other copied the constant term and coefficient of…
-
The Book Quizs Question
-
Area of Parallelograms and Triangles Worksheet Quizs Question
Q 1. A parallelogram ABCD and a rectangle ABPQ are on the same base AB and between the same parallels AB and CQ. If AB = 8 cm and AQ = 6 cm, find the area of ||gm ABCD.A. 52 cm2B. 46 cm2C. 48 cm2D. 58 cm2 Show Answer Answer:-C. 48 cm2 Q 2. In the given figure, PQS = SRQ, QPR = SRQ, U is a point on QR such…
-
General Maths Quizs Question with Answers MCQ
Q 1.The equation of the normal to the curve y = sin x at (0, 0) isA. x = 0B. y = 0C. x + y = 0D. x – y = 0 Show Answer Answer:-C. x + y = 0 Q 2. What shape are honeycomb cells?A. TrianglesB. PentagonsC. SquaresD. Hexagons Show Answer Answer:-D.…
-
C++ Programming Quizs Question and Answers – OOPs -2
Q1. Which of the following is a static polymorphism mechanism?A. Function overloadingB. Operator overloadingC. TemplatesD. All of the mentioned Show Answer Answer:-D. All of the mentioned Explanation All the options mentioned above uses static polymorphism mechanism. As the conflicts in all these types of functions are resolved during compile-time. Q 2. Which of the following…
-
C++ Programming Quizs Question and Answers – OOPs
Q 1. Which of the following cannot be a friend?A. FunctionB. ClassC. ObjectD. Operator function Show Answer Answer:-C. Object Explanation Objects of any class cannot be made a friend of any other or same class whereas functions, classes and operator functions can be made a friend. Q 2. Why references are different from pointers?A. A…