Question 1
Le debut de la boucle FOR correspond à :
If (i != 5)
For (i = 0; i <= 5; i++)
For (i <= 5; i++)
For i = 1 to 5
Question 2
Quelle est la syntaxe javascript correcte pour afficher "Hello world"
Echo "Hello World";
Response.write("Hello World");
Document.write("Hello World");
("Hello World");
Question 3
A quel endroit inserer un code javascript ? :
La section <body>
La section <head>
Les deux sections <head> et <body> sont correctes
Question 4
Quelles est la syntaxe correcte pour appeler un fichier javascript "XXX.js"
<script name="xxx.js">
<script src="xxx.js">
<script href="xxx.js">
Question 5
Le fichier javascript externe doit contenir la balise <script> ? :
Vrai
Faux
Question 6
Comment afficher "Hello world" dans une boite alerte ? :
AlertBox("Hello World");
MsgBox("Hello World");
Msg("Hello World");
Alert("Hello World");
Question 7
Comment écrit on une instruction IF en javascript ? :
If i=5
If i==5 then
If (i==5)
If i=5 then
Question 8
Comment creer une fonction en javascript ? :
Function myFunction()
Function=myFunction()
Function:myFunction()
Question 9
Comment appeler une fonction nommée"myfunction"
MyFunction()
Call function myFunction()
Call myFunction()
Question 10
Comment traduit on en javascript cette instruction : si "i" différent de 5 ?
If i<>5
If i=! 5 then
If (i <> 5)
If (i != 5)
Comments