Masigaderic
On this page, you find all documents, package deals, and flashcards offered by seller masigaderic.
- 513
- 0
- 18
Community
- Followers
- Following
520 Reviews received
531 items
JavaScript Exam 1 Sample Questions and Answers Verified
What is the difference between code compilation and interpretation - Compilation = When code is 
evaluated and translated into one or more code Units 
Interpretation = When code is parsed statement by statement at run time 
What are Conditional Statements and give examples - When code is executed depending on situation 
ex. If and Switch 
What is code called that is chained to an else statement - else if 
What are the three steps in the Switch Statement - 1.) Switch expression is evalutaed once...
- Exam (elaborations)
- • 5 pages •
What is the difference between code compilation and interpretation - Compilation = When code is 
evaluated and translated into one or more code Units 
Interpretation = When code is parsed statement by statement at run time 
What are Conditional Statements and give examples - When code is executed depending on situation 
ex. If and Switch 
What is code called that is chained to an else statement - else if 
What are the three steps in the Switch Statement - 1.) Switch expression is evalutaed once...
JavaScript Exam 1 Review Questions Solved for Faster Revision
What allows you to execute a related group of statements as a single unit? - A function 
 Parameters in a function definition are placed within what? - parentheses 
 A variable that is declared outside a function is called a... - global variable 
 What creates a local variable? - Declaring it inside a function with the var keyboard. 
 What is a primitive data type in JavaScript? - Boolean 
 What describes JavaScript? - Loosely typed 
 What is an integer? - -11 
 What is a Boolean value? - True ...
- Exam (elaborations)
- • 2 pages •
What allows you to execute a related group of statements as a single unit? - A function 
 Parameters in a function definition are placed within what? - parentheses 
 A variable that is declared outside a function is called a... - global variable 
 What creates a local variable? - Declaring it inside a function with the var keyboard. 
 What is a primitive data type in JavaScript? - Boolean 
 What describes JavaScript? - Loosely typed 
 What is an integer? - -11 
 What is a Boolean value? - True ...
JavaScript Ciw Practice Test A Questions with Complete Solutions 2024
You want to include in your form a button labeled Edit, which changes to Save when in edit mode and 
changes back to Edit when the form contents are saved. You are calling a function from the onclick event 
handler to perform this task. Which of the following is the correct code for that function? - 
if(myB =="Edit") { 
myB = "Save"; 
} 
else{ 
myB = "Edit"; 
} 
Which of the following is a valid variable name in JavaScript? - sink 
Which of the following correctly defines an object with...
- Exam (elaborations)
- • 11 pages •
You want to include in your form a button labeled Edit, which changes to Save when in edit mode and 
changes back to Edit when the form contents are saved. You are calling a function from the onclick event 
handler to perform this task. Which of the following is the correct code for that function? - 
if(myB =="Edit") { 
myB = "Save"; 
} 
else{ 
myB = "Edit"; 
} 
Which of the following is a valid variable name in JavaScript? - sink 
Which of the following correctly defines an object with...
Javascript Ciw Practice A Test Questions with Complete Solutions
You want to include in your form a button labeled Edit, which changes to Save when in edit 
mode and changes back to Edit when the form contents are saved. You are calling a function 
from the onclick event handler to perform this task. Which of the following is the correct code 
for that function? - if(myB =="Edit") { 
myB = "Save"; 
} 
else{ 
myB = "Edit"; 
} 
 Which of the following is a valid variable name in JavaScript? - sink 
 Which of the following correctly defines an object ...
- Exam (elaborations)
- • 10 pages •
You want to include in your form a button labeled Edit, which changes to Save when in edit 
mode and changes back to Edit when the form contents are saved. You are calling a function 
from the onclick event handler to perform this task. Which of the following is the correct code 
for that function? - if(myB =="Edit") { 
myB = "Save"; 
} 
else{ 
myB = "Edit"; 
} 
 Which of the following is a valid variable name in JavaScript? - sink 
 Which of the following correctly defines an object ...
JavaScript Certification Test Questions with Complete Solutions. New Verified updates
1. Which of the following escape sequences will print the backslash character? - 
2. Which of the following characters matches the start of a line in a regular expression - ^ 
3. What is the main role of JavaScript in an AJAX transaction? - To request XML or plain text 
data from a web server 
4. Which property is used to add CSS styles to elements in a Web Page? - HTMLE 
5. What is a bug in the JavaScript code? - An error in the code 
6. Which of the following is not a valid property? - t...
- Exam (elaborations)
- • 10 pages •
1. Which of the following escape sequences will print the backslash character? - 
2. Which of the following characters matches the start of a line in a regular expression - ^ 
3. What is the main role of JavaScript in an AJAX transaction? - To request XML or plain text 
data from a web server 
4. Which property is used to add CSS styles to elements in a Web Page? - HTMLE 
5. What is a bug in the JavaScript code? - An error in the code 
6. Which of the following is not a valid property? - t...
Javascript Certification Final Exam Guide Questions with Verified Answers
What is the name of the method that provides the database variable when we're using the angular-inmemory-web-api package? - createDb 
Google Material design is a: - Design Language 
Material allows you to create a custom light or custom dark theme - True 
What variable type does the createDb method return? - Object 
The following code will correctly inject the content service into the component: 
constructor(contentService: ContentService){} - False 
Material allows you to create a custom ligh...
- Exam (elaborations)
- • 3 pages •
What is the name of the method that provides the database variable when we're using the angular-inmemory-web-api package? - createDb 
Google Material design is a: - Design Language 
Material allows you to create a custom light or custom dark theme - True 
What variable type does the createDb method return? - Object 
The following code will correctly inject the content service into the component: 
constructor(contentService: ContentService){} - False 
Material allows you to create a custom ligh...
Java Script Final Exam Questions with correct Answers merged 2024 new updates
1. What is a correct way to specify the following loop to run exactly 20 times? 
for (var i = 0; _____; i++) { 
alert (i); 
} 
a. i > 20 
b. i <= 20 
c. i < 19 
d. i <= 19 - d 
2. Given the code 
var message = "Your percentage score of "; 
var percentage = "95.6"; 
var letterGrade ="% is A grade."; 
3. What is the correct code to display the following result to the web page? 
Your percentage score of 95.6% is A grade. 
a. ("message", "percentage", "letterGrade"); 
b. (mes...
- Exam (elaborations)
- • 18 pages •
1. What is a correct way to specify the following loop to run exactly 20 times? 
for (var i = 0; _____; i++) { 
alert (i); 
} 
a. i > 20 
b. i <= 20 
c. i < 19 
d. i <= 19 - d 
2. Given the code 
var message = "Your percentage score of "; 
var percentage = "95.6"; 
var letterGrade ="% is A grade."; 
3. What is the correct code to display the following result to the web page? 
Your percentage score of 95.6% is A grade. 
a. ("message", "percentage", "letterGrade"); 
b. (mes...
Java Script Final Exam Questions with correct Answers merged 2024 new updates
1. What is a correct way to specify the following loop to run exactly 20 times? 
for (var i = 0; _____; i++) { 
alert (i); 
} 
a. i > 20 
b. i <= 20 
c. i < 19 
d. i <= 19 - d 
2. Given the code 
var message = "Your percentage score of "; 
var percentage = "95.6"; 
var letterGrade ="% is A grade."; 
3. What is the correct code to display the following result to the web page? 
Your percentage score of 95.6% is A grade. 
a. ("message", "percentage", "letterGrade"); 
b. (mes...
- Exam (elaborations)
- • 18 pages •
1. What is a correct way to specify the following loop to run exactly 20 times? 
for (var i = 0; _____; i++) { 
alert (i); 
} 
a. i > 20 
b. i <= 20 
c. i < 19 
d. i <= 19 - d 
2. Given the code 
var message = "Your percentage score of "; 
var percentage = "95.6"; 
var letterGrade ="% is A grade."; 
3. What is the correct code to display the following result to the web page? 
Your percentage score of 95.6% is A grade. 
a. ("message", "percentage", "letterGrade"); 
b. (mes...
ITM Certification Exam with Answers Merged
Which standard includes secure authentication using RADIUS server and password encryption 
using EAP? 
a. IEEE 802.1X 
b. WEP 
c. MAC address filtering 
d. WPA 
a. IEEE 802.1x 
In a Basic Service Set Identifier (BSSID) infrastructure mode network, the BSSID is the same as 
_______ for the WAP. 
a. the SSID 
b. the manufacturer ID 
c. a randomly generated value 
d. the MAC address 
d. the MAC address 
One of the big challenges to larger enterprise networks are the large number of clients that ...
- Exam (elaborations)
- • 10 pages •
Which standard includes secure authentication using RADIUS server and password encryption 
using EAP? 
a. IEEE 802.1X 
b. WEP 
c. MAC address filtering 
d. WPA 
a. IEEE 802.1x 
In a Basic Service Set Identifier (BSSID) infrastructure mode network, the BSSID is the same as 
_______ for the WAP. 
a. the SSID 
b. the manufacturer ID 
c. a randomly generated value 
d. the MAC address 
d. the MAC address 
One of the big challenges to larger enterprise networks are the large number of clients that ...
Introduction to JavaScript Practice Questions with Complete Solutions 2024
What is correct 
import 
import - import 
Order of Operations of: 
Binary Search 
Selection sort 
Insertion sort - Binary Search (log n) 
Selection sort n^2 all times 
Insertion sort n^2 worst case, n best case 
Describe how to do all of this: 
Unsigned Integers 
Signed Integers 
Sign/Magnitude Representation 
Two's Complement Representation (and the algorithm for negating such numbers) 
Floating Point Representation 
ASCII Encoding of Characters - Unsigned Integers: Only positive ints. Done...
- Exam (elaborations)
- • 10 pages •
What is correct 
import 
import - import 
Order of Operations of: 
Binary Search 
Selection sort 
Insertion sort - Binary Search (log n) 
Selection sort n^2 all times 
Insertion sort n^2 worst case, n best case 
Describe how to do all of this: 
Unsigned Integers 
Signed Integers 
Sign/Magnitude Representation 
Two's Complement Representation (and the algorithm for negating such numbers) 
Floating Point Representation 
ASCII Encoding of Characters - Unsigned Integers: Only positive ints. Done...
OCR 2023 GCE Sociology H580/02: Researching and understanding social inequalities A Level Question Paper & Mark Scheme (Merged)
OCR 2023 GCSE Economics J205/01: Introduction to economics Question Paper & Mark Scheme (Merged
OCR 2023 Biology A H020/02: Depth in biology AS Level Question Paper & Mark Scheme (Merged)
OCR 2023 Biology A H020/01: Breadth in biology OCR 2023Biology AH020/01: Breadth in biology AS Level Question Paper & Mark Scheme (Merged)AS Level Question Paper & Mark Scheme (Merged)
OCR 2023 Biology A H020/02: Depth in biology AS Level Question Paper & Mark Scheme (Merged)