Advertisements
Advertisements
Question
<script type=“text/javascript”>
x = 6 + “3”;
document.write(x);
</script>
what will be the output?
Options
6
9
63
Error
MCQ
Solution
63
shaalaa.com
Introduction of Conditional Statements in Java
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Which conditional statement is used to transfer control from current statement to another statement?
_______ statement can be used as alterative to if-else statement.
Which of the following is not a branching statement?
In which loop the condition is evaluated, before executing a statement?
What are the different types of control statement used in JavaScript?
List out the various branching statements in JavaScript?
Write the general syntax for switch statement.
Write the syntax for else-if statement.
Which of the following is not true with regards to a switch statement?
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");