Labour Day - Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: dpm65

1D0-435 CIW JavaScript Fundamentals exam Questions and Answers

Questions 4

Which property of the form object represents the identity of the form as defined in the

tag?

Options:

A.

elements

B.

method

C.

name

D.

target

Buy Now
Questions 5

There are __________ ways to refer to form objects.

Options:

A.

4

B.

5

C.

3

D.

2

Buy Now
Questions 6

A function that defines methods and properties of a custom object used as a template for instances of the custom object is a _______________

Options:

A.

predefined object

B.

method

C.

constructor

D.

new instance

Buy Now
Questions 7

The following are both advantages of creating user defined objects in JavaScript:

1. You can create sophisticated solutions with a minimum of coding.

2. You can represent programming constructs as objects (which allows you to code efficient schemes for evaluating forms or creating client-side databases).

Options:

A.

TRUE

B.

FALSE

Buy Now
Questions 8

What is a constructor function in JavaScript?

Options:

A.

A special function that enables the recursion of functions throughout the Web site.

B.

A special function that allows the construction of objects.

C.

Any function that allows databases to be parsed without being loaded entirely into memory.

D.

Any function that allows the definition of any object as a global rather than a specific instance.

Buy Now
Questions 9

Which of the following would be the correct JavaScript way to make a text string appear in bold print?

Options:

A.

"Hello!"

B.

"Hello!.bold()";

C.

"Hello!".bold();

D.

"Hello!"

Buy Now
Questions 10

When you want to evaluate multiple objects in an array, you need a __________ instead of a ___________.

Options:

A.

literal, variable

B.

method, function

C.

variable, literal

D.

function, method

Buy Now
Questions 11

The Microsoft implementation of the Netscape JavaScript language is called _________________.

Options:

A.

VBScript

B.

Java

C.

ECMAScript

D.

JScript

Buy Now
Questions 12

The variable name "firstname" is the same as variable name "FirstName".

Options:

A.

TRUE

B.

FALSE

Buy Now
Questions 13

Which special character in JavaScript is interpreted as a tab?

Options:

A.

\\

B.

\t

C.

\b

D.

\f

Buy Now
Questions 14

You want to embed your JavaScript into an HTML document.

Which HTML tag should you use?

Options:

A.

<COMMENT>

B.

<SCRIPT>

C.

<META>

D.

<OBJECT>

Buy Now
Questions 15

Which one of the following choices describes a type of information that a cookie can readily provide?

Options:

A.

The current licensing status of the software on the user's hard drive

B.

The addresses of all e-mail recipients with which the user has corresponded

C.

The current buying habits of the user

D.

A history of the sites that the user has visited

Buy Now
Questions 16

Which version of Netscape Navigator first supported JavaScript on Microsoft Windows?

Options:

A.

1.0

B.

1.1

C.

2.0

D.

3.0

Buy Now
Questions 17

Which one of the following is an action that can be performed by an object?

Options:

A.

Property

B.

Value

C.

Method

D.

String

Buy Now
Questions 18

Which one of the following best describes JavaScript?

Options:

A.

Interpreted at run time, and complied

B.

Interpreted at run time, and not compiled

C.

Not interpreted at run time, and compiled on the server

D.

Not interpreted at run time, and not compiled

Buy Now
Questions 19

Methods operate on _________ instances of objects.

Options:

A.

two

B.

three

C.

multiple

D.

single

Buy Now
Questions 20

The technique of embedding scripting instructions directly into certain HTML tags is called ____________________.

Options:

A.

tagging

B.

client-side scripting

C.

inline scripting

D.

scripting

Buy Now
Questions 21

The continue statement is used with a __________________.

Options:

A.

for or a while loop

B.

for or a next loop

C.

for loop

D.

while statement

Buy Now
Questions 22

Consider the following script:

<SCRIPT>

<!--

var name;

name=prompt("What is your name?" , "");

alert("Hello, " + name +".");

// -->

</SCRIPT>

What does this script do in terms of the use of the variable "name"?

Options:

A.

The variable value is assigned via the prompt method, and then displayed via the alert method.

B.

The variable value is assigned via the prompt method.

C.

Nothing. This script would result in an error.

D.

The variable value is assigned via the alert method.

Buy Now
Questions 23

Once the constructor is defined, you need to create new instances of the object. This process is called ___________.

Options:

A.

constructing

B.

populating

C.

instantiation

D.

calling

Buy Now
Questions 24

alert(), prompt() and confirm() are all methods of the __________ object.

Options:

A.

window

B.

browser

C.

form

D.

document

Buy Now
Questions 25

A button that changes its image on mouseover is an example of _______________.

Options:

A.

the mouseover object

B.

the mouseover method

C.

the mouseover property

D.

the image object

Buy Now
Questions 26

What is the primary difference between method and functions when working with custom JavaScript objects?

Options:

A.

There is no difference between method and functions in JavaScript.

B.

Method work with single instances of objects, whereas functions can work on all instances of an object.

C.

Functions are declared in the constructor, whereas method are never declared in the constructor.

D.

Method are single entities, whereas functions can have more than one method.

Buy Now
Questions 27

ServerSide JavaScript will not function if LiveWire is not installed.

Options:

A.

TRUE

B.

FALSE

Buy Now
Questions 28

The ____________ contains path information for the URL that issued the cookie.

Options:

A.

path=path pair

B.

domain=domain pair

C.

name=value pair

D.

url=url pair

Buy Now
Questions 29

JavaScript offer a predefined method for determining when you should use custom objects instead of arrays for your programs.

Options:

A.

FALSE

B.

TRUE

Buy Now
Questions 30

JavaScript is an event-driven programming language. Events trigger _________.

Options:

A.

functions

B.

behaviors

C.

methods

D.

actions

Buy Now
Questions 31

Since JavaScript is case sensitive, using lower case to refer to language objects will result in an error.

Options:

A.

FALSE

B.

TRUE

Buy Now
Questions 32

The key difference between the While Statement and the Do While Statement is ____________

Options:

A.

The Do While Statement does not check the condition until it has iterated the loop at the first time. The While Statement will check the condition before beginning the first loop.

B.

None. There is no Do While loop in JavaScript.

C.

The While Statement does not check the condition until it has iterated the loop at the first time. The Do While Statement will check the condition before beginning the first loop.

D.

The Do While Statement will check the condition before it loops the first time. The Do While Statement will never check the condition.

Buy Now
Questions 33

JavaScript is case sensitive, and the keyword "function" must be all lowercase.

Options:

A.

FALSE

B.

TRUE

Buy Now
Questions 34

A user can never delete or disable cookies

Options:

A.

TRUE

B.

FALSE

Buy Now
Questions 35

The built in function parseFloat() __________________.

Options:

A.

converts a currancy formatted number to a decimal formatted number.

B.

converts a number to its integer equivalent.

C.

does not exist.

D.

converts a number to its floating-point decimal equivalent.

Buy Now
Questions 36

Which of the following is the JavaScript's server-side solution that enables you to connect Web pages to databases, as well as enable server-side image maps and save client state so that the computer will remember where the client is in a multi-page preocess.

Options:

A.

ServerSide JavaScript

B.

JavaWire

C.

Java

D.

LiveWire

Buy Now
Exam Code: 1D0-435
Exam Name: CIW JavaScript Fundamentals exam
Last Update: Apr 22, 2024
Questions: 244

PDF + Testing Engine

$56  $159.99

Testing Engine

$42  $119.99
buy now 1D0-435 testing engine

PDF (Q&A)

$35  $99.99
buy now 1D0-435 pdf
dumpsmate guaranteed to pass
24/7 Customer Support

DumpsMate's team of experts is always available to respond your queries on exam preparation. Get professional answers on any topic of the certification syllabus. Our experts will thoroughly satisfy you.

Site Secure

mcafee secure

TESTED 26 Apr 2024