Você está na página 1de 1

1. What network side was JavaScript?

Client-side
2. What do you call the technique where you use the three layers and separate the other two
layers in web development? Unobtrusive JavaScript
3. It is an event handler where the user clicked a button-like form element. onClick
4. It is a model where it is the interpretation of the HTML page. Document Object Model
5. What type of language is JavaScript? Interpreted language
6. It asks the user for some small amount of information. Prompt() method or prompt box
7. method is used to send a warning to the user or alert him or her to do something. Alert()
8. It is a string operator used to join together one or more strings. Concatenation operator
9. These operators take numerical values (either literals or variables) as their operands and return
a single numerical value. Arithmetic operators
10. These operators allow you to perform an arithmetic or string operatio by combining an
assignment operator with an arithmetic or string operator. Shortcut assignment operator
11. It allows the program to execute a statement block repetitively until some condition is satisfied.
The looping constructs
12. It controls the flow of a program. Conditional constructs
13. It provides a multiway decision structure. If/else if
14. It sends loop control directly to the top of the loop and re-evaluates the loop condition.
Continue
15. It allows you to name control statements (while, do/while, for, for/in, and switch) so that you
can refer to them by that name elsewhere in your program. Labels
16. Where does a function placed normally? <head> tag
17. It is a function that calls itself. Recursive function
18. What is it to possible to catch errors and resolve them gracefully? Exception handling
19. It can be used to send back the result of some task or to exit a function early if some condition
occurs. Return
20. It is a runtime error that the program might encounter during its execution. Exception

Você também pode gostar