Number new Array 5 for var i 1 i 5 i i 1 for var k 6 k 10 k k 1-01682
Number=new Array(5);for(var i=1; i<=5 ; i=i+1) { for( var k=6; k<=10; k=k+1) { Number[i]= k*i; } }<br> For how many times the Nested For Loop shall execute;
This multiple choice question (MCQ) is related to the book/course vu cs101 Introduction to Computing. It can also be found in vu cs101 Final Term - Quiz No.34.
Number=new Array(5);for(var i=1; i<=5 ; i=i+1) { for( var k=6; k<=10; k=k+1) { Number[i]= k*i; } }
For how many times the Nested For Loop shall execute;
For how many times the Nested For Loop shall execute;
20
15
25
shal terminate in first loop