Login and Register ×
Check your Email for the OTP
JavaScript MCQ Javascript Classes MCQ
⚠ Report ✓ Question Verified Copy Link
Explanation:
"A namespace is a container that holds a set of identifiers, functions, methods, and other elements and helps to organize and distinguish them. Modules that have multiple items in their API may return a namespace object
Related Topic:
Share Above MCQ
public class Test{ public static void main(String args[]){ int i; for(i = 1; i < 6; i++){ if(i > 3) continue ; } System.out.println(i); } }
6
1. public class Test{ 2. public static void main(String [] args){ 3. int x = 0; 4. // insert code here 5. do{ } while(x++ < y); 6. System.out.println(x); 7. } 8. }
int y = 11;
public class Test{ public static void main(String args[]){ int i = 1; do{ i--; }while(i > 2); System.out.println(i); } }
0
Learn More MCQ Questions from JavaScript MCQ Javascript Classes MCQ
Hello, please login before you report any Quesion. Login