a) Save all opened files
b) Close all running applications
c) Switch off monitor
d) Cut off the power supply
Answer: c
Related Posts
What is a block statement in JavaScript?
Which is a more efficient JavaScript code snippet?
Code 1 :
for(var num=10;num>=1;num–)
{
document.writeln(num);
}
Code 2 :
var num=10;
while(num>=1)
{
document.writeln(num);
num++;
}A conditional expression is also called a _______________
What will be the output of the following JavaScript code?
var a=5 , b=1
var obj = { a : 10 }
with(obj)
{
alert(b)
}JavaScript is a _______________ language.
What will be the output of the following JavaScript code?
function compare()
{
int a=1;
char b=1;
if(a.tostring()===b)
return true;
else
return false;
}The snippet that has to be used to check if “a” is not equal to “null” is _________
Join The Discussion