JavaScript average (4-7) importance

Problem 2016-01-14-17-38

complexity: 1 ; importance: 7; author: docentmail

Question: Give sample of JavaScript code block


Problem 2015-12-31-20-44

complexity: 1 ; importance: 7; author: docentmail

Question: What should be placed instead of dots to have method do (); performed only when x does not equal y ?

if (x ... y) {
  do();
}


Problem 2015-12-30-22-40

complexity: 1 ; importance: 7; author: docentmail

Question: What is the name of "=" operators ?


Problem 2015-12-30-22-32

complexity: 2 ; importance: 6; author: docentmail

Question: Give a code fragment that declares a variable, but is not initializing it.


Problem 2016-02-20-23-57

complexity: 2 ; importance: 6; author: docentmail

Question:What is the latest standard of ECMA script?


Problem 2015-12-29-19-38

complexity: 3 ; importance: 6; author: docentmail

Question: Use switch statement and write the code that alert Today is your day!


Problem 2015-12-18-15-21

complexity: 3 ; importance: 6; author: docentmail

Question: create object that has a "name" field and can alert text "Hello my friend" on calling his hi method


Problem 2016-03-24-23-42

complexity: 2 ; importance: 5; author: docentmail

Question: Modify the snippet to use "if" statement to alert "It is night." in case the variable "isNight" is true and "It is not night." otherwise.

      


Problem 2015-12-17-16-48

complexity: 2 ; importance: 5; author: docentmail

Question: What would be value of x?

var x = 100 / "Apple"; 


Problem 2016-01-14-18-21

complexity: 2 ; importance: 5; author: docentmail

Question: Which of the names of variables are correct?

2things
something4you
my_variable_name
aaa+bbb
...
 


Problem 2015-12-18-16-11

complexity: 2 ; importance: 5; author: 4LUCKYNIKITA

Question: What would the alert say?

x=5
x += 5 + 2 
alert ( x ) ;


Problem 2016-01-14-23-45

complexity: 2 ; importance: 5; author: docentmail

Question: Name reserved keywords of JavaScript


Problem 2016-01-15-00-26

complexity: 2 ; importance: 5; author: docentmail

Question: Give code snippets with assignment operators.


Problem 2015-12-28-12-07

complexity: 1 ; importance: 5; author: docentmail, 4luckynikita

Question:Name the main four arithmetical operations.


Problem 2015-12-14-09-12

complexity: 3 ; importance: 5; author: docentmail

Question: Replace with the code fragment, with equals one that only one “.” per line/statement

var rez = document.getElementById("testspan").getAttribute("class").length;


Problem 2016-01-17-03-49

complexity: 2 ; importance: 5; author: docentmail

Question: What would be the alert message for the code snippet?

alert(aVar);
var aVar=5;


Problem 2015-12-16-08-57

complexity: 2 ; importance: 5; author: docentmail

Question: how many times method do() would be called?

for (i = 0; i < 1 ; i++) { 
   do();
}


Problem 2016-01-17-04-52

complexity: 2 ; importance: 5; author: docentmail

Question: What would be alert messges for the code snippet?

alert(typeof myFunction);
alert(typeof OtherFunction);

function myFunction(){
  alert("Hello from myFunction ");
}

var myOtherFunction = function() {
       alert("hello from local myFunction");  
};


Problem 2016-02-20-12-48

complexity: 4 ; importance: 5; author: docentmail

Question:List all falsy values.


Problem 2016-02-21-13-38

complexity: 3 ; importance: 5; author: docentmail

Question:What is percentage of support ECMAScript 5 in modern browsers?


Problem 2016-02-20-23-51

complexity: 4 ; importance: 5; author: docentmail

Question:Which version of ECMA script is supported by current browsers?


Problem 2016-02-21-13-07

complexity: 4 ; importance: 5; author: docentmail

Question:Why standard for JavaScript has name ECMAScript?


Problem 2016-02-21-13-10

complexity: 3 ; importance: 5; author: docentmail

Question:What is percentage of support ECMAScript 6.0 in modern browsers?


Problem 2016-03-24-23-49

complexity: 4 ; importance: 5; author: docentmail

Question: Develop an snippet to use "if" statement to alert "type is number" if in case the type variable "theVar" is number, "type is string" if type is string less, "type is something else" otherwise.

      


Problem 2016-03-24-23-47

complexity: 2 ; importance: 5; author: docentmail

Question: Develop an snippet to use "if" statement to alert "You are to young" in case the variable "age" is less or equal 17.

      


Problem 2016-03-24-23-45

complexity: 2 ; importance: 5; author: docentmail

Question: Develop an snippet to use "if" statement to alert "The size fits" in case the variable "size" value is greater than 5 but less than 7.

      


Problem 2015-12-17-16-49

complexity: 2 ; importance: 5; author: docentmail

Question: What would be value of x?

var x = 100 / "10";


Problem 2016-02-20-13-10

complexity: 2 ; importance: 5; author: docentmail

Question:Give definition for "truthy/falsy values" with if statement.


Problem 2016-01-15-00-12

complexity: 1 ; importance: 4; author: docentmail

Question: Give the code snippet to declare (or define) variable myVar but not initialize it. What is value of the variable?


Problem 2016-01-14-18-07

complexity: 2 ; importance: 4; author: docentmail

Question: Name main parts (or aspects) of variable


Problem 2015-12-03-10-20

complexity: 2 ; importance: 4; author: docentmail

Question: what does alert (x); show?

var x = 1;
var y = x;
y=101;
alert (x);


Problem 2016-01-17-04-15

complexity: 5 ; importance: 4; author: docentmail

Question: What would be result of execution of the snippet?

function myFunction(){
  alert("Hello from myFunction ");
}

function testFunctionHoisting(){
   alert(typeof myFunction);
    
   myFunction();  

   var myFunction = function() {
       alert("hello from local myFunction");  
   };
}
testFunctionHoisting();


Problem 2016-02-20-23-40

complexity: 2 ; importance: 4; author: docentmail

Question:What is the name of organization that maintains JavaScript standards?


Problem 2015-12-16-09-09

complexity: 2 ; importance: 4; author: docentmail

Question: how many times method do() would be called?

for (i = 0; i < 1 ; i) { 
   do();
}


Problem 2015-12-16-09-16

complexity: 2 ; importance: 4; author: docentmail

Question: how many times method do() would be called?

for (i = 0; i > 1 ; i++) { 
   do();
}


Problem 2015-12-17-16-45

complexity: 2 ; importance: 4; author: docentmail

Question: How to assign last element of array b to var x