Blogmepost
Latest Questions
Contact Us
Is the following a valid variable definition? var 100apples
Home
>
Technology
>
Is the following a valid variable definition? var 100apples
0
votes
16
views
Is the following a valid variable definition?
var 100apples
1. True
2. False
javascript
asked
Feb 23
in
Technology
by
JackTerrance
(
189k
points)
Add Answer
1
Answer
0
votes
Answer is
No
answered
Feb 23
by
JackTerrance
(
189k
points)
Related questions
0
votes
0
answers
30
views
30
views
Is the following a valid variable definition? var 100apples No Yes
asked
Oct 8, 2020
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
+1
vote
1
answer
36
views
36
views
Is the following a valid variable assignment var product cost = 3.45;
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
189k
points)
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
15
views
15
views
What is the value of C? var a = 100; var b = "10"; var c = a + b;
asked
Feb 23
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
13
views
13
views
Which of the following are not valid in JavaScript?
asked
Feb 23
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
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
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
25
views
25
views
What is the output you get for the following code? (function() { return typeof arguments; }) ();
asked
6 days
ago
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
26
views
26
views
What is the output for the following code (function f(){ function f(){ return 1; } return f(); function f() { return 2; } })();
asked
Feb 25
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
12
views
12
views
Which of the following regarding scope is true?
asked
Feb 25
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
19
views
19
views
What is the output for the following function test(x) { while(x < 5) { x++; } return x; } alert(test(2));
asked
Feb 25
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
16
views
16
views
What is the output you get for the following code? (function() { return typeof arguments; }) ();
asked
Feb 25
in
Technology
by
JackTerrance
(
189k
points)
javascript
0
votes
1
answer
15
views
15
views
var i = 1; if (function f(){}) { i += typeof f; } x;
asked
Feb 25
in
Technology
by
JackTerrance
(
189k
points)
javascript
+1
vote
1
answer
51
views
51
views
What is true about variables 7Wonders is a valid variable name to give ?
asked
Oct 8, 2020
in
Technology
by
JackTerrance
(
189k
points)
#javascript
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
15
views
15
views
isNan function returns ______ if the argument is not a number otherwise it is ______
asked
Feb 23
in
Technology
by
JackTerrance
(
189k
points)
javascript
+1
vote
1
answer
21
views
21
views
What is the difference between variable declaration and variable definition in C-Programming?
asked
Nov 9, 2020
in
Technology
by
JackTerrance
(
189k
points)
#c-programming
0
votes
1
answer
329
views
329
views
Which of the following is a valid long literal?
asked
Dec 19, 2020
in
Technology
by
Editorial Staff
(
49.4k
points)
java-mcq-questions
java
java-interview-questions
0
votes
1
answer
492
views
492
views
Which of the following is a valid declaration of a char?
asked
Dec 19, 2020
in
Technology
by
Editorial Staff
(
49.4k
points)
java-mcq-questions
java
java-interview-questions
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
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
...