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 … Continue reading Current Affairs Quiz 3 December, 2023 Quizs Question

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 … Continue reading Python Multiple Choice Quizs Question – Lists

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 … Continue reading Quadratic Equations Exercise 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 … Continue reading Area of Parallelograms and Triangles Worksheet Quizs Question

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 … Continue reading C++ Programming Quizs Question and Answers – OOPs -2

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 … Continue reading C++ Programming Quizs Question and Answers – OOPs

C++ Programming Quizs Question MCQ – OOPs

Q 1. Which of the following shows multiple inheritances?A. A->B->CB. A->B; A->CC. A,B->CD. B->A Show Answer Answer:-C. A,B->C Explanation In multiple inheritance, a single class is inherited from two classes. So in A,B->C, Class C is inherited from A and B, whereas in A->B->C, C from B and B from A called simple inheritance, in … Continue reading C++ Programming Quizs Question MCQ – OOPs