Tag: United State
-
C++ Programming Questions and Answers – C++ Concepts – 1
Q 1. In which part of the for loop termination condition is checked?for(I;II;III){IV}A. IB. IIC. IIID. IV Show Answer Answer:-B. II Explanation In II part the termination condition of the for loop is checked. Q 2. What is dynamic binding?A. The process of linking the actual code with a procedural call during compile -timeB. The…
-
Top 50 Gk Question with Answers on U.S Armed Forces
Q 1. The United States Armed Forces consists of how many branches? Show Answer Answer:-6 service branches. Q 2. What is the name of the United States Armed Forces branches? Show Answer Answer:-Army, Navy, Marine Corps, Air Force, Coast Guard, and Space Force. Q 3. Which branch of the US Armed Forces conducts land operations?…
-
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…
-
History
Q 1. On July 20, 1969, Neil Armstrong became the first person in history to do what? Show Answer Answer:-Walk on the moon Q 2. What U.S. woman was appointed as the first woman Speaker of the House? Show Answer Answer:-Nancy Pelosi Q. 3. Which American financier was convicted of running the largest Ponzi scheme in…
-
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…
-
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…
-
Python Quizs Question and Answers – Bitwise – 2
Q 1. It is not possible for the two’s complement value to be equal to the original value in any case.A. TrueB. False Show Answer Answer:-B. False Explanation In most cases the value of two’s complement is different from the original value. However, there are cases in which the two’s complement value may be equal…
-
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…