Blogmepost
Latest Questions
Contact Us
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;
0
votes
15
views
What is the value of C? var a = 100; var b = "10"; var c = a + b;
1. 10010
2. 110
3. None
4. 10100
javascript
asked
Feb 23
in
Technology
by
JackTerrance
(
189k
points)
Add Answer
1
Answer
0
votes
Answer:-10010
answered
Feb 23
by
JackTerrance
(
189k
points)
Related questions
+1
vote
1
answer
79
views
79
views
What is the value of C?var a = 100; var b = "10"; var c = a + b;
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
189k
points)
#javascript
0
votes
1
answer
15
views
15
views
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
Feb 23
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
22
views
22
views
In a Certain Country 1/2 of 5 = 3. If the same proportion holds, what is the value of 1/3 of 10 ? A) 4 B) 6 C) 8 D) 10
asked
Feb 12
in
Education
by
JackTerrance
(
189k
points)
logic-puzzles-questions-answers
0
votes
1
answer
18
views
18
views
___________ is a pretest loop that will execute until the value of z equals 10
asked
Feb 24
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
14
views
14
views
function multi(a,b) { var ans = a * b; return ans; } var c = _________
asked
6 days
ago
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
12
views
12
views
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
Feb 24
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
17
views
17
views
What is the output of the following expression? function multi(x,y) { var c = x*y; } multi(20,3);
asked
Feb 25
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
14
views
14
views
In multidimensional array mySubject, which of the following will allow assigning the value 100 in position 5 of the third mySubject array?
asked
Feb 24
in
Technology
by
JackTerrance
(
189k
points)
javascript
+1
vote
2
answers
27
views
27
views
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
(
189k
points)
#javascript
0
votes
1
answer
13
views
13
views
Which is the correct way to create an array in JavaScript? I) var myProg = []; II) var myArray = ["C","Java","C++","Python"]; III) var myProg = new Array();
asked
Feb 24
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
11
views
11
views
Is the following a valid variable assignment var product cost = 3.45;
asked
Feb 23
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
16
views
16
views
Is the following a valid variable definition? var 100apples
asked
Feb 23
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
29
views
29
views
What is true about functions : I) Functions are objects II) Can be assigned to a variable III) Can be anonymous IV) Return value type has to be defined in function declaration
asked
Feb 25
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
11
views
11
views
To display whether a value is a number or not, ____ is used
asked
Feb 23
in
Technology
by
JackTerrance
(
189k
points)
javascript
+1
vote
1
answer
34
views
34
views
___________ is a pretest loop that will execute until the value of z equals 10?
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
189k
points)
#javascript
0
votes
1
answer
38
views
38
views
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
(
189k
points)
#javascript
0
votes
1
answer
20
views
20
views
If A is substituted by 4, B by 3, C by 2, D by 4, E by 3, F by 2 and so on, then what will be total of the numerical values of the letters of the word SICK?
asked
Feb 12
in
Education
by
JackTerrance
(
189k
points)
logic-puzzles-questions-answers
0
votes
1
answer
29
views
29
views
Predict the output of the following JavaScript code. <script type="text/javascript"> var a="blogsforblog"; var x=a.lastIndexOf("b"); document.write(x); </script>
asked
5 days
ago
in
Technology
by
JackTerrance
(
189k
points)
html5
html
0
votes
1
answer
11
views
11
views
What is true about array Can have combination of data types in a single array list Must have same data types for array list
asked
Feb 24
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
43
views
43
views
how to pass a value to a react funtion without immediately firing it?
asked
Dec 10, 2020
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
50
views
50
views
What is the HTML tag under which one can write the JavaScript code? A) <javascript> B) <scripted> C) <script> D) <js>
asked
5 days
ago
in
Technology
by
JackTerrance
(
189k
points)
html5
html
0
votes
1
answer
51
views
51
views
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
(
189k
points)
#javascript
#carinsurance
#health-insurance
#medical-insurance
+1
vote
1
answer
14
views
14
views
What it the return value of a relational operator if it returns any in C Programming?
asked
Nov 9, 2020
in
Technology
by
JackTerrance
(
189k
points)
#c-programming
0
votes
1
answer
12
views
12
views
Which statement will return the value false?
asked
Feb 23
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
17
views
17
views
____ allows you to loop through a block of code as long as the specified condition is true.
asked
Feb 24
by
JackTerrance
(
189k
points)
javascript
...