792). What is the purpose of the radix parameter in the parseInt() method?

[A]Numeral system not to be used
[B]Numeral system to be used
[C] Conversion mode
[D]Parsing mode

Show Answer

793). What will be the radix value of the parseInt() method when the string begins with 0?

[A]6
[B]7
[C]8
[D]9

Show Answer

794). What is the purpose of the method JSON.parse()?

[A]Parses a string to integer
[B]Parses a string to JSON
[C]Parses a string from JSON to JSON2
[D]Parses integer to string

Show Answer

795). What is the return type of the method parseInt()?

[A]String
[B]Float
[C]Integer
[D]Date

Show Answer

796). What are the parameters of the method JSON.parse()?

[A]text
[B]reviver
[C]both text and reviver
[D]object

Show Answer

797). What will be the radix value of the parseInt() method when the string begins with any other value other than 0x and 0?

[A]8
[B]9
[C]10
[D]11

Show Answer

798). What kind of an exception will be thrown if the string to parse is not valid JSON?

[A]SyntaxError
[B]ArrayOutOfBoundException
[C]Both SyntaxError and ArrayOutOfBoundException
[D]Compilation error

Show Answer

799). Which of the following is a JavaScript Compressor?

[A]Esprima
[B]UgilifyJS
[C]Acron
[D]Compressify

Show Answer

800). What is the purpose of the UgilifyJS?

[A]Exposes a simple API
[B]Minification
[C]Both Exposes a simple API and Minification
[D]Compilation

Show Answer

801). Which of the following is the fastest JavaScript parser?

[A]JSLint
[B]Esprima
[C]Acron
[D]Traceur

Show Answer