Computer Science, asked by pranayaxis1413, 1 month ago

NEED ANSWER ASAP(NOLINKS)
Type the correct answer in the box. Use numerals instead of words. If necessary, use / for the fraction bar.
var num2 = 32;
var num1 = 12;
var rem=num2 % num1;
while(rem > 0)
{
num2 = num1;
num1 = rem;
rem = num2 % num1;
}
document.write(num1);
The output of the document. write statement at the end of this block is ____

Answers

Answered by mirza74
0

Answer:

NEED ANSWER ASAP(NOLINKS)

Type the correct answer in the box. Use numerals instead of words. If necessary, use / for the fraction bar.

var num2 = 32;

var num1 = 12;

var rem=num2 % num1;

while(rem > 0)

{

num2 = num1;

num1 = rem;

remyes yes

= num2 % num1;

}jh

document.write(num1);

The output of the document. write statement at the end of this block is ____

Similar questions