Module 1 : JavaScript and Creating Web Page (ITI COPA)
ITI COPA TRADE : आपके ITI COPA की परीक्षा जल्द ही होने वाली है इसलिए ये बहुविकल्पीय प्रश्न आपके लिए अत्यंत महत्वपूर्ण सिद्ध होंगे | आज की इस पोस्ट में आपको ITI COPA के Module 1 से सम्बंधित सभी प्रश्नों को यहाँ दिया गया है | जिससे आपके एग्जाम की अच्छी तैयारी हो जायेगी |
Q2. 'Which is a statement terminator in javascript ?',
Q3. 'who developed javascript ?',
Q4. 'Which programming Language's syntax influences javascript syntex ?',
Q5. 'Which web server provides good customer support if it had any issues ?',
Q6. 'Which web server has high performance stability simple configuration and low resource usge ?',
Q7. 'Which key is used to declare a variable in javascript ?',
Q8. 'Which is a variable seperator if more than one variable eclared in one statement ?',
Q9. 'Which brackets is used to write array in javascript ?',
Q10. 'Which bracket is used to write object in javascript ?',
Q11. 'How many types of operation are there in javascript ?',
Q12. 'What is the purpose module (%) operator in javascript ?',
Q13. 'How many part are there in 'For' loop ?',
Q14. 'Whick part in loop evaluates the conditions ?',
Q15. 'How many types of error are there in javascript programming ?',
Q16. 'How many different values can be returned by the error name property in javascript ?',
Q17. 'Which object method is used to return the value rounded down to its nearest interger ?',
Q18. 'Which special variable holds more than one value at a time ?',
Q19. 'Which is the parameter name separator in javascript ?',
Q20. 'Which function in javascript converts a number to a string ?',
Q21. 'Which allows developers to bundle all functionality under a unique application specific name ?',
Q22. 'Which is a valid js code to sort element of an array tracle ?',
Q23. 'What is the full form of BOM ?',
Q24. 'What is the full form of TOC ?',
Q25. 'Which is the first phase of System Development Life Cycle ?',
Q26. 'What is the abbreviation of W3C in Dom ?',
Q2. Which one is responsible of running javascript code ?
Q3. Which one enables the hosting providers to mange multiple domains on a single server ?
Q4. Which sign an 'assignment' operator in javascript ?
Q5. Which data type in javascript returns the value 'true' or 'False' ?
Q6. Which assignment operator is equivalent to a = a*5 ?
Q7. Which operator is used to check both value and type in javascript ?
Q8. Which single charcter escape sequence represents 'line feed' javascript ?
Q9. What is the purpose of initialisation part in 'for' loop ?
Q10. Which keyboard in switch case statement specifies the code to run if there is no case match ?
Q11. Which statement is used to test a block of code for errors ?
Q12. Which statement is used to handle the error ?
Q13. Which statement is used create custom error in javascript ?
Q14. Which statement is used to execute code after try and catch ?
Q15. Which error indicates that the numbers is outside the range of legal values ?
Q16. Which error indicates that the variable used is not declared ?
Q17. Which error indicates that the value is outside the range of expected type ?
Q18. Which is used to access individual value in an array ?
Q19. What is the purpose of length property in array ?
Q20. Which method joins all array element into string with specified spearator ?
Q21. Which method removes the last elements from an array ?
Q22. Which method is used to add new element to an array ?
Q23. Which method removes the first array element ?
Q24. Which variable works as function argument in javascript ?
Q25. Which variable declared outside a function in Javascript ?
Q26. Which feature in Javascript has properties and methods ?
Q27. Which variable are deleted in JavaScript when the page is closed ?
Q28. Which method is called at the moment of instentiation of an object ?
Q29. Which is an instance of class ?
Q30. Which is window method is used to move the current window ?
Q31. Which is property returns the width of the visitor's screen in pixels ?
Q32. Which is property returns the URL of the current page ?
Q33. Which property is used to transfer files from one host to another host over internet ?
Q34. Which open source software is used to upload from client to server or download from server to client ?
Q2. What will be the output for the following Javascript code: var x = 13 + "03" Alert(x); ?
Q3. What will be the output, if the javascript code is excuted var x = 1324; var y = new Number(1324); if(x ===y) alert ("Yes") else alert ("No") ?
Q4. What is the output of the following javascript code , var x = "ITI"; var y = "GOVT"; var o = y concat(x) document.write(0) ?
Q5. What is the output of the following javascript code, var name = "Kanya kumari"; var x = name.substr(8,2); document.write(x); ?
नमस्कार दोस्तों 🙏 , स्वागत हैं आपका हमारी वेबसाइट "ज्ञान और शिक्षा" में |
Question Level - 1
Q1. 'What is the process of writing instruction to be get executed by the computer ?',- Debugging
- Executing
- Presenting
- Programming
answer: D
Q2. 'Which is a statement terminator in javascript ?',
- ","
- ";"
- ":"
- "."
answer: B
Q3. 'who developed javascript ?',
- Brendan Eich
- Brendan Rich
- John Ecker
- John Mauchy
answer: A
Q4. 'Which programming Language's syntax influences javascript syntex ?',
- C
- COBAL
- Java
- JDK
answer: A
Q5. 'Which web server provides good customer support if it had any issues ?',
- Apache
- IIS
- Lite speed
- Nginx
answer: B
Q6. 'Which web server has high performance stability simple configuration and low resource usge ?',
- Apach
- IIS
- Lite speed
- Nginx
answer: D
Q7. 'Which key is used to declare a variable in javascript ?',
- const
- dec
- dim
- var
answer: D
Q8. 'Which is a variable seperator if more than one variable eclared in one statement ?',
- ,
- :
- `
- /
answer: A
Q9. 'Which brackets is used to write array in javascript ?',
- Curve bracket
- Square bracket
- Curly bracket
- Corner bracket
answer: B
Q10. 'Which bracket is used to write object in javascript ?',
- Curve bracket
- Square bracket
- Curly bracket
- Corner bracket
answer: C
Q11. 'How many types of operation are there in javascript ?',
- 3
- 4
- 6
- 8
answer: D
Q12. 'What is the purpose module (%) operator in javascript ?',
- Percentage value
- Product value
- Remainder value
- Quotient value
answer: C
Q13. 'How many part are there in 'For' loop ?',
- 2
- 3
- 4
- 5
answer: B
Q14. 'Whick part in loop evaluates the conditions ?',
- Condition part
- Increment / Decrement part
- Initialsation part
- Looping part
answer: A
Q15. 'How many types of error are there in javascript programming ?',
- 3
- 4
- 6
- 8
answer: A
Q16. 'How many different values can be returned by the error name property in javascript ?',
- 3
- 4
- 5
- 6
answer: D
Q17. 'Which object method is used to return the value rounded down to its nearest interger ?',
- abs()
- ceil()
- floor()
- round()
answer: C
Q18. 'Which special variable holds more than one value at a time ?',
- Array
- Element
- Function
- Object
answer: A
Q19. 'Which is the parameter name separator in javascript ?',
- ,
- :
- -
- /
answer: A
Q20. 'Which function in javascript converts a number to a string ?',
- Num()
- Str()
- String()
- to string()
answer: D
Q21. 'Which allows developers to bundle all functionality under a unique application specific name ?',
- Class
- Name space
- Object
- Property
answer: B
Q22. 'Which is a valid js code to sort element of an array tracle ?',
- Trade.sort:
- Trade.sort();
- Sort.trade();
- Sort.(trade);
answer: B
Q23. 'What is the full form of BOM ?',
- Browser Object Method
- Browser Object Model
- Browser Oriented Method
- Browser Oriented Model
answer: B
Q24. 'What is the full form of TOC ?',
- Text of content
- Time of calculation
- Table of content
- Terminator of content
answer: C
Q25. 'Which is the first phase of System Development Life Cycle ?',
- Testing
- Planning
- Developing
- Defining
answer: B
Q26. 'What is the abbreviation of W3C in Dom ?',
- Word Wide Web Curriculum
- World Wide Web Consortium
- World Wide Web Centre
- World Wide Web Content
answer: B
Question Level - 2
Q1. What is the main purpose of JavaScript ?- Client side validation
- Create web browsers
- Read and write files
- Store data in the server
A
Q2. Which one is responsible of running javascript code ?
- Browser
- Notepad++
- Sublime Text
- Visual studio code
A
Q3. Which one enables the hosting providers to mange multiple domains on a single server ?
- Network server
- SQL server
- Web server
- Database server
A
Q4. Which sign an 'assignment' operator in javascript ?
- =
- #
- = =
- < >
A
Q5. Which data type in javascript returns the value 'true' or 'False' ?
- Boolean
- Dyanmic
- Object
- String
A
Q6. Which assignment operator is equivalent to a = a*5 ?
- a = 5*9
- a = *5
- a* = 5
- a = 5
C
Q7. Which operator is used to check both value and type in javascript ?
- #
- =
- ==
- ===
D
Q8. Which single charcter escape sequence represents 'line feed' javascript ?
- \b
- \f
- \n
- \t
C
Q9. What is the purpose of initialisation part in 'for' loop ?
- exit the loop
- evaluate the condition
- increase or decrease the initial variable
- Initiate the variable
D
Q10. Which keyboard in switch case statement specifies the code to run if there is no case match ?
- Break
- Case
- Default
- End
C
Q11. Which statement is used to test a block of code for errors ?
- Catch
- Finally
- Throe
- Try
D
Q12. Which statement is used to handle the error ?
- Try
- Catch
- Throw
- Finallly
B
Q13. Which statement is used create custom error in javascript ?
- Catch
- Finally
- Throw
- Try
C
Q14. Which statement is used to execute code after try and catch ?
- Finally
- Syntax error
- Throw
- Type error
A
Q15. Which error indicates that the numbers is outside the range of legal values ?
- Range Error
- Reference Error
- Type Error
- URI Error
A
Q16. Which error indicates that the variable used is not declared ?
- Eval Error
- Range Error
- Reference Error
- Syntax Error
C
Q17. Which error indicates that the value is outside the range of expected type ?
- Eval Error
- Range Error
- Reference Error
- Syntax Error
D
Q18. Which is used to access individual value in an array ?
- Content Number
- Element Number
- Table Number
- Variable Number
B
Q19. What is the purpose of length property in array ?
- Returns number of array element
- Returns number of characters
- Returns number of fields in object array
- Returns number of hightest array index
A
Q20. Which method joins all array element into string with specified spearator ?
- Join ()
- Pop()
- Push()
- To string()
A
Q21. Which method removes the last elements from an array ?
- Join()
- Pop()
- Push()
- Shift()
B
Q22. Which method is used to add new element to an array ?
- Join()
- Pop()
- Push()
- Shift()
C
Q23. Which method removes the first array element ?
- Join()
- Pop()
- Push()
- Shift()
D
Q24. Which variable works as function argument in javascript ?
- Function variable
- Global variable
- Local variable
- Object variable
C
Q25. Which variable declared outside a function in Javascript ?
- Function variable
- Global variable
- Local variable
- Object variable
B
Q26. Which feature in Javascript has properties and methods ?
- Array
- Function
- Object
- Controls
C
Q27. Which variable are deleted in JavaScript when the page is closed ?
- Function variable
- Global variable
- Local variable
- Object variable
B
Q28. Which method is called at the moment of instentiation of an object ?
- Constructor
- Inheritance
- Polymorphism
- Property
A
Q29. Which is an instance of class ?
- Class
- Name-space
- Object
- Property
C
Q30. Which is window method is used to move the current window ?
- Move()
- Move to ()
- Window.move()
- Window.move.to()
D
Q31. Which is property returns the width of the visitor's screen in pixels ?
- Width()
- Screen.width()
- Screen.width()
- Width.screen()
C
Q32. Which is property returns the URL of the current page ?
- href()
- Location.herf
- herf.location
B
Q33. Which property is used to transfer files from one host to another host over internet ?
- IP
- FTP
- HTTP
- SMTP
B
Q34. Which open source software is used to upload from client to server or download from server to client ?
- PHP
- Perl
- HTTP
- Filezilla
D
Question Level - 3
Q1. How will javascript treat a number, when it is enclosed with double or single quotes ?- Error
- Number
- String
- Zero
C
Q2. What will be the output for the following Javascript code: var x = 13 + "03" Alert(x); ?
- 16
- 133
- 1303
- 13 03
C
Q3. What will be the output, if the javascript code is excuted var x = 1324; var y = new Number(1324); if(x ===y) alert ("Yes") else alert ("No") ?
- Infinity
- Error
- No
- Yes
D
Q4. What is the output of the following javascript code , var x = "ITI"; var y = "GOVT"; var o = y concat(x) document.write(0) ?
- ITI GOVT
- ITIGOVT
- GOVTITI
- GOVT ITI
C
Q5. What is the output of the following javascript code, var name = "Kanya kumari"; var x = name.substr(8,2); document.write(x); ?
- um
- ma
- ar
- ku
B
Thank You
for any further Information Please Comment.
(किसी भी अन्य जानकारी के लिए, कृपया कमेंट जरूर करें |)
No comments
Give your valuable comments. Your Comments is very important for us. ❤ Thank You..❤