Tag: Australia

  • C++ Programming Questions and Answers – C++ Concepts – 2

    Q 1. Which of the following is the scope resolution operator?A. .B. *C. ::D. ~ Show Answer Answer:-C. :: Explanation :: operator is called scope resolution operator used for accessing a global variable from a function which is having the same name as the variable declared in the function. Q 2. What will be the…

  • GK Quizs Question on Google Know Search Engine

    GK Quizs Question on Google Know Search Engine

    Q 1. What year was Google founded? A. 1995 B. 1997 C. 1998 D. 2000 Show Answer Answer:-C. 1998 Q 2. What is the name of Google’s parent company as of 2015? A. Google LLC B. Alphabet Inc. C. G-Holdings D. Search Co Show Answer Answer:-B. Alphabet Inc. Q 3. What was Google’s original name…

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

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

  • Mean, Median, Mode Quizs Question

    Q 1. Mean marks of 150 students were found to be 50.Later it was found that a score of 87 was misread as 78.What is the correct mean?A. 50.09B. 59C. 49.9D. None of these Show Answer Answer:-A. 50.09 Q 2. What is the range of the following data? Class 40-45 45-50 50-55 55-60 60-65 65-70 Frequency 4…

  • Euclidean Geometry Quiz with Answers

    Euclid Geometry Questions and Answers: Q 1 . It is known that if x + y = 10 then x + y + z = 10 + z. The Euclid‟s axiom that illustrates this statement is :A. First AxiomB. Second AxiomC. Third AxiomD. Fourth Axiom Show Answer Answer:-B. Second Axiom Q 2. Thales belongs to…

  • Python Quizs Question and Answers – While and For Loops – 2

    Q 1. What will be the output of the following Python code? x = “abcdef” while i in x: print(i, end=” “) A. a b c d e fB. abcdefC. i i i i i i …D. error Show Answer Answer:-D. error Explanation NameError, i is not defined. Q 2. What will be the output…

You cannot copy content of this page