Tag: South Australia

  • C++ Programming Questions and Answers – Integer Types

    C++ Programming Questions and Answers – Integer Types

    C++ interview questions and answers focuses on “Integer Types”. One shall practice these interview questions to improve their C++ programming skills needed for various interviews. 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++ interview questions…

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

    C++ Programming Questions and Answers – C++ Concepts – 3

    Q 1. Which of the following statement is correct?A. Structure in C allows Constructor definitionB. Both allow Constructor definition C. Structure in C++ allows Constructor definitionD. C allows constructor definition while C++ does not Show Answer Answer:-C. Structure in C++ allows Constructor definition Explanation As C does not allow the programmer to define a function…

  • 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 Quizs Question and Answers – Formatting – 2

    Q 1. The output of which of the codes shown below will be: “There are 4 blue birds.”?A. ‘There are %g %d birds.’ %4 %blueB. ‘There are %d %s birds.’ %(4, blue)C. ‘There are %s %d birds.’ %[4, blue]D. ‘There are %d %s birds.’ 4, blue Show Answer Answer:-B. ‘There are %d %s birds.’ %(4,…

  • Python Quizs Question and Answers – Formatting – 1

    Q 1. What will be the output of the following Python expression if x=456? print(“%-06d”%x) A. 000456B. 456000C. 456D. error Show Answer Answer:-C. 456 Explanation The expression shown above results in the output 456. Q 2. What will be the output of the following Python expression if S=345? print(“%06d”%S) A. 345000B. 000345C. 000000345D. 345000000 Show…

  • CSS Quizs Question & Answers – Border Elements

    Q1. Which of the following property defines the style for the right border of an element?A. border-spacingB. border-spacingC. border-rightD. border-right-style Show Answer Answer:-C. border-right Explanation Syntax: border-right-style: dashed | dotted | double Q 2. Which of the following property defines the color of an element’s top border?A. border-colorB. border-topC. border-top-color-webkitD. border-top-color Show Answer Answer:-D. border-top-color…

  • CSS Quizs Question & Answers – Media Types

    Q 1. The __________ rule makes it possible to define different style rules for different media types in the same stylesheet.A. audio/videoB. sinkC. @mediaD. @canvas Show Answer Answer:-C. @media Explanation Example:@media screen { p { font-family: verdana, sans-serif; font-size: 17px; } } Q 2. What is the way to specify media dependencies for style sheets…

  • CSS Quizs Question & Answers – CSS Voice

    Q 1. Which of the following property sets pitch or tone (high or low) for the synthesized speech when reading an element; the pitch may be specified absolutely or relative to the normal pitch for the voice-family used to read the text?A. voice-checkB. voice-formatC. voice-pitchD. voice-volume Show Answer Answer:-C. voice-pitch Q 2. Which of the…

You cannot copy content of this page