Category: MCQs / Quiz

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...

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>...