Login
Remember
Register
Q&A
Questions
Ask a Question
What is the value of C?var a = 100; var b = "10"; var c = a + b;
Home
>
Technology
>
What is the value of C?var a = 100; var b = "10"; var c = a + b;
+1
vote
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
What is the value of C? var a = 100; var b = "10"; var c = a + b;
a)10010
b)110
c) None
d)10100
interview-question-answer
technology-questions-answers
Facebook
Twitter
LinkedIn
Email
Add Answer
1
Answer
0
votes
answered
Oct 8, 2020
by
JackTerrance
(
1.7m
points)
Answer:-10010
Related questions
+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
0
votes
1
answer
FIbonacci Series Program function fibonacciSequence(input) { var a=0;b=1;c=0; var array1=[0,1]; for(var i=2;i<=input;i++) { c=a+b; a=b; b=c; array1.push(c) } return array1; }
asked
Oct 9, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
0
votes
1
answer
What is the value of C? var a = 100; var b = "10"; var c = a + b;
asked
Feb 23, 2021
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
In multidimensional array mySubject, which of the following will allow assigning the value 100 in position 5 of the third mySubject array?
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
1.7m
points)
interview-question-answer
technology-questions-answers
...