Tag: Quizs, Question, Answer ,

  • CSS Questions & Answers – Strings and Keywords

    CSS Questions & Answers – Strings and Keywords

    CSS Multiple Choice Questions & Answers (MCQs) focuses on “Strings and Keywords”. Q 1. Which of the following strings are defined by in css?A. single quotesB. double quotesC. both single quotes and double quotesD. none of the mentioned Show Answer Answer:-C. both single quotes and double quotes Explanation In CSS, strings are defined with either…

  • 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 – Decorators

    Q 1. In the following Python code, which function is the decorator? def mk(x): def mk1(): print(“Decorated”) x() return mk1 def mk2(): print(“Ordinary”) p = mk(mk2) p() A. p()B. mk()C. mk1()D. mk2() Show Answer Answer:-B. mk() Explanation In the code shown above, the function mk() is the decorator. The function which is getting decorated is…

You cannot copy content of this page