Author: web-admin

0

jQuery MCQs

Q.1 What does the .stopPropagation() method do? A. Stops the event from bubbling up the event chain B. Stops all functions C. Prevents default actions D. None of the above Q.2 What method would...

0

Python McQs

Q.1 What is the purpose of an if statement in Python? A. To loop through a sequence B. To execute a block conditionally C. To define a function D. To handle exceptions Q.2 Find...

0

HTML MCQs

Q.1 Spot the error in: <p>HTML is <em>fun</u> to learn</p> A. <em> tag not closed B. <u> tag not closed C. Incorrect tag pairing D. No error Q.2 Identify the mistake: <html> <body> <p>HTML is <i>very</i><b> interesting.</p> </body> </html> A. <i> tag not closed B. <b> tag not closed C. <p> tag not closed D. No mistake Q.3 Find the error in this HTML snippet: <p>Welcome to <b>our website</p></b> A. Missing end tag for <b> B. Incorrect nesting of <b> and <p> C. Missing start tag for <b> D. No error Q.4 Which tag is used to create a line break in an HTML document? A. <break>...

0

C++ Programming MCQs

Q.1 Identify the error: int x = 10; int y = ++x + 2; cout << x << ” ” << y; A. Incorrect use of increment operator B. No error C. Syntax error...