in Technology by
What is the output of the following expression? function multi(x,y) { var c = x*y; } multi(20,3); 1. 20 2. 60 3. 3 4. Nothing

1 Answer

0 votes
by
Answer:-Nothing

Related questions

0 votes
    What is the output of the following expression? function multi(x,y) { var c = x*y; } multi(20,3); A) 20 B) 60 C) 3 D) Nothing...
asked Oct 9, 2020 in Technology by JackTerrance
0 votes
    Predict the output of the following JavaScript code.
    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? a)10,11 b)10,10 c)11,10 d)11,11...
asked Oct 8, 2020 in Technology by JackTerrance
0 votes
    Evaluate the following Java expression, if x=3, y=5, and z=10: ++z + y - y + z + x ... 🔗Reference: stackoverflow.com 🔗Source: Java Interview Questions and Answers...
asked Dec 19, 2020 in Technology by Editorial Staff
0 votes
    Q.32 :-What will the SWAP macro in the following program be expanded to on preprocessing? will the code compile? ... y); return 0; Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    function multi(a,b) { var ans = a * b; return ans; } var c = _________ 1. multi(15,2); 2. multi 15, 2; 3. multi();...
asked Feb 26, 2021 in Technology by JackTerrance
0 votes
0 votes
    1. Predict the output of the following operations if x=5 and y=3. x>=10&& y>=4 f. x>=1 || y>=4 Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    dues. Find the output of following A. X = 3 . Y = x + 2 x+ =y print (x,y) a = 5 b = 2xa a+ = a+b b* = a+b print (a,b) ) Select the correct answer from above options...
asked Dec 27, 2021 in Education by JackTerrance
0 votes
    dues. Find the output of following A. X = 3 . Y = x + 2 x+ =y print (x,y) a = 5 b = 2xa a+ = a+b b* = a+b print (a,b) ) Select the correct answer from above options...
asked Dec 26, 2021 in Education by JackTerrance
0 votes
    The transfer function of a system having the input as X(s) and output as Y(s) is? (a) Y(s)/X(s ... theory Questions for GATE EC Exam, Network Theory MCQ (Multiple Choice Questions)...
asked Oct 16, 2021 in Education by JackTerrance
0 votes
    var dataset = [ 5, 10, 15, 20, 25 ]; What will be output of d3.extent(data)? -...
asked Mar 7, 2023 in Technology by JackTerrance
0 votes
    Predict the output of the following JavaScript code. var a="blogsforblog"; var x=a.lastIndexOf("b"); document.write(x); A) 8 B) 0 C) 9 D) Error...
asked Feb 27, 2021 in Technology by JackTerrance
...