Tag: International
-
Top 50 World GK Quizs Question and Answers 2023
Q 1. What is the capital of Iceland? A. Hafnarfjordur B. Reykjavik C. Selfoss D. Vik Show Answer Answer: B. Reykjavik Q 2. What is the national game of Bangladesh? A. Cricket B. Football C. Kabaddi D. Shooting Show Answer Answer: C . Kabaddi Q 3. In which year the First World War begun? A.…
-
Top 20 HTML Interview Quizs Question
Q 1.If you have used inline, internal, and external all the 3 stylings in HTML for a single element then which style will be applied? A. Inline B. Internal C. External D. None of the above Show Answer Answer:-A.Inline Q 2.Comments in HTML is done by: A. <?– –> B. <!– –> C. <!– –!>…
-
Top 50 Html Quizs Question General Knowledge Answers
Q 1. What does the abbreviation HTML stand for? A. HyperText Markup Language. B. HighText Markup Language. C. HyperText Markdown Language. D. None of the above.Hide Show Answer Answer:-A. HyperText Markup Language. Explanation HTML stands for HyperText Markup Language. Q 2. How many sizes of headers are available in HTML by default? A. 5 B. 1 C.…
-
Current Affairs Quiz – May, 2023
Q 1. ‘Washington Declaration’ is a bilateral agreement that was signed between the US and which country? A. Canada B. South Korea C. Australia D. UK Show Answer Answer:-B.South Korea Explanation Explanation:- Washington Declaration is a bilateral agreement that was recently signed between the US and South Korea. According to this agreement, while South Korea…
-
United States & State Capitals
State Capitals 1.Alabama Montgomery 2.Alaska Juneau 3.Arizona Phoenix 4.Arkansas Little Rock 5.California Sacramento 6.Colorado Denver 7.Connecticut Hartford 8.Delaware Dover 9.Florida Tallahassee 10.Georgia Atlanta 11.Hawaii Honolulu 12.Idaho Boise 13.Illinois Springfield 14.Indiana Indianapolis 15. Iowa Des Moines 16.Kansas Topeka 17.Kentucky Frankfort 18.Louisiana Baton Rouge 19.Maine Augusta 20.Maryland Annapolis 21. Massachusetts Boston 22. Michigan Lansing 23. Minnesota Saint…
-
Python Quizs Question and Answers Precedence and Associativity – 2
Q 1. What will be the output of the following Python expression? print(4.00/(2.0+2.0)) A. ErrorB. 1.0C. 1.00D. 1 Show Answer Answer:-B. 1.0 Q 2. What will be the value of X in the following Python expression? X = 2+9*((3*12)-8)/10 A. 30.0B. 30.8C. 28.4D. 27.2 Show Answer Answer:-D. 27.2 Explanation Explanation:- The expression shown above is…
-
Python Quizs Question and Answers Precedence and Associativity – 1
Q 1. The value of the expressions 4/(3*(2-1)) and 4/3*(2-1) is the same.A. TrueB. False Show Answer Answer:-A. True Explanation Explanation:- Although the presence of parenthesis does affect the order of precedence, in the case shown above, it is not making a difference. The result of both of these expressions is 1.333333333. Hence the statement…
-
Python Questions and Answers – Numeric Types
Q 1. What is the output of print 0.1 + 0.2 == 0.3?A. TrueB. FalseC. Machine dependentD. Error Show Answer Answer:-B. False Explanation Explanation:- Neither of 0.1, 0.2 and 0.3 can be represented accurately in binary. The round off errors from 0.1 and 0.2 accumulate and hence there is a difference of 5.5511e-17 between (0.1…
-
Python Quizs Question and Answers – Core Data Types
Q 1. Which of these in not a core data type?A. ListsB. DictionaryC. TuplesD. Class Show Answer Answer:-D. Class Explanation Explanation:- Class is a user defined data type. Q 2. Given a function that does not return any value, What value is thrown by default when executed in shell.A. intB. boolC. voidD. None Show Answer…
-
PHP Quizs Question & Answers Basics of Object-Oriented PHP- 2
Q 1. Which one of the following functions is used to determine whether a class exists?A. exist()B. exist_class()C. class_exist()D. __exist() Show Answer Answer:-C. class_exist() Explanation The class_exist() function returns true or false according to whether the class exists within the currently executing script content. Q 2. Which one of the following functions is used to…