Login
Remember
Register
Questions
Ask a Question
Is the following a valid variable definition? var 100apples No Yes
Home
>
Technology
>
Is the following a valid variable definition? var 100apples No Yes
0
votes
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
Is the following a valid variable definition? var 100apples
No
Yes
interview-question-answer
technology-questions-answers
Facebook
Twitter
LinkedIn
Email
Add Answer
0
Answers
Related questions
0
votes
1
answer
Is the following a valid variable definition? var 100apples
asked
Feb 23, 2021
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
+1
vote
1
answer
What is true about variables 7Wonders is a valid variable name to give ?
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
0
votes
1
answer
What is the output of the following expression? function multi(x,y) { var c = x*y; } multi(20,3);
asked
Oct 9, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
+1
vote
1
answer
What is the value of C?var a = 100; var b = "10"; var c = a + b;
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
+1
vote
2
answers
Code A: var x = 10; y = --x + 1; alert(y); Code B: var x = 10; y = x-- + 1; alert(y); What is the output for code A and B?
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
...