0% found this document useful (0 votes)
293 views

Javascript

This document contains multiple choice questions about JavaScript concepts like functions, operators, strings, cookies, and more. It asks about the output of code snippets involving string methods like split(), substring(), and indexOf(). Other questions cover math functions, conditional operators, regular expressions, and properties like window.location used to redirect pages.

Uploaded by

Good Divya
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
293 views

Javascript

This document contains multiple choice questions about JavaScript concepts like functions, operators, strings, cookies, and more. It asks about the output of code snippets involving string methods like split(), substring(), and indexOf(). Other questions cover math functions, conditional operators, regular expressions, and properties like window.location used to redirect pages.

Uploaded by

Good Divya
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 20

Javascript

What is the output of following JavaScript code? <script type="text/javascript"> x=4+"4"; document.write(x); </script> a) 44 b) 8 c) 4 d) Error output

What is the output of following JavaScript code? <script type="text/javascript"> var cst = "Chadha Software Technologies"; var result = cst.split(" "); document.write(result); </script>

a) Chadha b) C,h,a,d,h,a,S,o,f,t,w,a,r,e,T,e,c,h,n,o,l,o,g,i,e,s c) Chadha,Software,Technologies d) Chadha Software Technologies

What is the output of following JavaScript code? <script type="text/javascript"> var cst = "Chadha Software Technologies"; var result = cst.split(" "); document.write(result); </script> a) Chadha b) C,h,a,d,h,a,S,o,f,t,w,a,r,e,T,e,c,h,n,o,l,o,g,i,e,s c) Chadha,Software,Technologies d) Chadha Software Technologies

Is it possible to nest functions in JavaScript? a) True b) False

What is the output of following JavaScript code? <script type="text/javascript"> function x(z,t) { alert(x.length); } </script>

a) b) c) d)

Error 2 1 3

Math.round(-20.51) = ? a) 20 b) -21 c) 19 d) None

What is the output of following JavaScript code? <script type="text/javascript"> var cst=((45%2)==0)?"hello":"bye"; document.write(cst); </script> a) Hello b) bye c) Error in string handling d) None of the above

What is the output of following JavaScript code? <script type="text/javascript"> function x() { var cst = "Chadha Software Technologies"; var pattern = new RegExp("SOFTWARE","i"); document.write(cst.match(pattern)); } </script> a) Error b) SOFTWARE c) Software d) null

What is the output of following JavaScript code? <script type="text/javascript"> var cst="Chadha Software Technologies"; var result =cst.lastIndexOf("a"); document.write(result); </script>

a) b) c) d)

2 12 11 13

What is the output of following JavaScript code? <script type="text/javascript"> function sum(x) { function add(y) { return x+y; } return add; } function callme() { result=sum(5)(5); alert(result); } </script> If you call the function callme(), what will happen? a) 10 b) Error in calling Function c) 5 d) None of the above

Which is not an attribute of the cookie property? a) Path b) host c) secure d) domain

What will be the output of following JavaScript code snippter? <script type="text/javascript"> var cst = "PHPKB Knowledge Base Software"; var result =cst.substring(7,8); document.write(result); </script>

a) b) c) d)

PHPKB Kn Kn ow n

What property would you use to redirect a visitor to another page? a) document.URL b) window.location.href c) document.location.href d) link.href

How do you change the style/class on any element?

What does 1+2+4 evaluate to? What about 5 + 4 + 3?

What is the difference between == and ===

How to detect the operating system on the client machine?

How to reload the current page?

window.location.reload(true);

What is negative infinity?

You might also like