click below
click below
Normal Size Small Size show me how
IT0043
FA6
| Question | Answer |
|---|---|
| JavaScript was developed by Brendan Frazer. [T/F] | FALSE - Brendan Eich |
| JavaScript is a not scripting language. [T/F] | FALSE - Is a scripting language |
| Other uses of JavaScript for applications like Photoshop. [T/F] | TRUE |
| Other uses of JavaScript for applications like Acrobatic. [T/F] | FALSE |
| JavaScript can react to events. [T/F] | TRUE |
| JavaScript gives HTML designers a programming design. [T/F] | TRUE |
| A JavaScript was designed to add interactivity to HTML pages. [T/F] | TRUE |
| JavaScript helps you create really beautiful and crazy fast websites. [T/F] | TRUE |
| JavaScript is everywhere, it comes installed on every modern web browser and so to learn JavaScript you really do not need any special environment setup. [T/F] | TRUE |
| JavaScript placement : Script in <body>...</body> and <head>...</head> sections. [T/F] | TRUE |
| One of the most fundamental characteristics of a programming language is the set of data types it supports. [T/F] | TRUE |
| The scope of a variable is the region of your program in which it is defined. [T/F] | TRUE |
| The ..whileloop is similar to the while loop except that the condition check happens at the end of the loop. This means that the loop will always be executed at least once, even if the condition is false. [T/F] | TRUE |
| The least fundamental characteristics of a programming language is the set of data types it supports. [T/F] | FALSE |
| A local variable will be visible only within a function where it is defined. Function parameters are always local to that function. [T/F] | TRUE |
| You should not re-declare same variable twice. [T/F] | TRUE |
| JavaScript allows you to work with three primitive data types : STRINGS. [T/F] | FALSE |
| The if statement is the fundamental control statement that allows JavaScript to make decisions and execute statements conditionally. [T/F] | TRUE |
| JavaScript supports a composite data type known as object. [T/F] | TRUE |
| JavaScript is untyped [T/F] | TRUE |