Question
Question 17) JavaScript is case-insensitive. Therefore, the following statements will both work: document.write( Hello); // statement 1 DOCUMENT.WRITE(Hello); // statement 2 True False Flag this
Question 17)
JavaScript is case-insensitive. Therefore, the following statements will both work: document.write( "Hello"); // statement 1 DOCUMENT.WRITE("Hello"); // statement 2
True |
False |
Flag this Question
Question 18)
Since JavaScript only executes inside browsers, you can actually embed HTML tags in your script like this: document.write( "This is bold" );
True |
False |
Flag this Question
Question 19)
These browsers, Chrome, Internet Exlorer, Firefox, and Safari, offer a way to find and report JavaScript syntax errors.
True |
False |
Question 20)
Given the following JavaScript code, inside script tags, what will be stored in a at the end?
var a = 10; var b = 11; a *= b - 1;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started