1D0-735 CIW JavaScript Specialist Questions and Answers
Janice needs to create a pop-up window that will open a Web document in a new browser window. Which code statement should she use?
A)

B)

C)

D)

Consider the following code:

What code would you use to determine if the check box has been checked or not?
Which code could be used to send a user to another Web site when they click a button on the Web page?
A)

B)

C)

D)

Geraldine is creating a custom object to store user account data on her Web site. She has written the following code it is not working properly. What change should she make to enable the script to run correctly?

What is the expected result when executing the following scripts in a web browser?
Which of the following is a true statement regarding the relationship between Promises and callback functions?
What is the best practice for testing code to pinpoint a logic error within a script?
Which of the following comparison statement will return true?
A)
X=10;
Y=11;
y--;
x==y
B)
X=10;
Y=11;
Y++;
x==y’
C)
X=11;
Y=10;
y--;
x==y;
D)
X=11;
Y=10;
y-= 1;
x==y
Consider the following code:

Which of the following is true based on the above code?
Which script will display Configurations, you won! In the browser when the script is run?
A)

B)

C)

D)

Consider the following code.

Which of the following will occur if the user ' s response is 25?
Which of the following will correctly declare the courseNumber variable as a siring data type?

