in Technology by

function multi(a,b) { var ans = a * b; return ans; } var c = _________

1. multi(15,2);

2. multi 15, 2;

3. multi();

1 Answer

0 votes
by
Answer:-multi(15,2);

Related questions

0 votes
    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...
asked Feb 25, 2021 in Technology by JackTerrance
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
    FIbonacci Series Program function fibonacciSequence(input) { var a=0;b=1;c=0; var array1=[0,1]; for(var i=2;i<= ... [endif]--> a) True b) False Read Loans and Insurance questions...
asked Oct 9, 2020 in Technology by JackTerrance
0 votes
    Predict the output of the following code snippet function foo(input: boolean) { let one = 1200; if (input) { let ans ... 1. 1201 2. Undefined 3. Compilation error 4. Runtime error...
asked Jun 29, 2021 in Technology by JackTerrance
0 votes
    which of the following is not a type of operating system a) multitasking b) multithreading c) multifunction d) multi user Select the correct answer from above options...
asked Dec 25, 2021 in Education by JackTerrance
0 votes
    What is the value of C? var a = 100; var b = "10"; var c = a + b; 1. 10010 2. 110 3. None 4. 10100...
asked Feb 23, 2021 in Technology by JackTerrance
+1 vote
    What is the value of C? var a = 100; var b = "10"; var c = a + b; a)10010 b)110 c) None d)10100...
asked Oct 8, 2020 in Technology by JackTerrance
0 votes
    Can a function return multiple values to the caller using return reserved word in C?...
asked Nov 9, 2020 in Technology by JackTerrance
0 votes
    I have a function value(x) which is overloaded for many types such that: double value(double x) { return x; } double ... [-Wreturn-local-addr] in the following code: Matrix33 m; m...
asked Apr 24, 2022 in Education by JackTerrance
0 votes
    Which is the correct way to create an array in JavaScript? I) var myProg = []; II) var myArray = ["C","Java","C++","Python"]; III) ... 1. I, III 2. II, III 3. I, II 4. I, II & III...
asked Feb 24, 2021 in Technology by JackTerrance
0 votes
    In the circuit given below, the resistance between terminals A and B is 7Ω, between terminals B and C is 12Ω ... for GATE EC Exam, Network Theory MCQ (Multiple Choice Questions)...
asked Oct 12, 2021 in Education by JackTerrance
0 votes
    12. Enter key is also known as______ key (a) Start (b) Toggle (c) Return (d) Lock Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    How to handle multi objective function in linear programming? Select the correct answer from above options...
asked Dec 14, 2021 in Education by JackTerrance
0 votes
    var i = 1; if (function f(){}) { i += typeof f; } x; 1. 1 2. undefined 3. Nan 4. Error...
asked Feb 25, 2021 in Technology by JackTerrance
...