JavaScript Language | 20 Minute‐Test 1


Instruction

  • Total number of questions : 20.
  • Time alloted : 20 minutes.
  • Each question carry 1 mark.
  • No Negative marks
  • DO NOT refresh the page.
  • All the best :-).

1.

JavaScript Code can be called by using

A.
RMI
B.
Triggering Event
C.
Preprocessor
D.
Function/Method

Your Answer: Option (Not Answered)

Correct Answer: Option D

Explanation:

None

2.

The escape sequence ‘\f’ stands for

A.
Floating numbers
B.
Representation of functions that returns a value
C.
\f is not present in JavaScript
D.
Form feed

Your Answer: Option (Not Answered)

Correct Answer: Option D

Explanation:

\f is the JavaScript escape sequence that stands for Form feed (\u000C).

3.

Which of the operator is used to test if a particular property exists or not?

A.
in
B.
exist
C.
within
D.
exists

Your Answer: Option (Not Answered)

Correct Answer: Option A

Explanation:

The operator “in” tests whether a particular property exists.

4.

The “var” and “function” are

A.
Keywords
B.
Declaration statements
C.
Datatypes
D.
Prototypes

Your Answer: Option (Not Answered)

Correct Answer: Option B

Explanation:

The var and function are declaration statements—they declare or define variables and functions. These statements define identifiers (variable and function names) that can be used elsewhere in your program and assign values to those identifiers.

5.

What will be the step of the interpreter in a jump statement when an exception is thrown?

A.
The interpreter stops its work
B.
The interpreter throws another exception
C.
The interpreter jumps to the nearest enclosing exception handler
D.
None of the mentioned

Your Answer: Option (Not Answered)

Correct Answer: Option C

Explanation:

When an exception is thrown in a jump statement, the interpreter jumps to the nearest enclosing exception handler, which may be in the same function or up the call stack in an invoking function.

6.

Consider the following code snippet

function f() {};
The above prototype represents a

A.
Function f
B.
A custom constructor
C.
Prototype of a function
D.
Not valid

Your Answer: Option (Not Answered)

Correct Answer: Option B

Explanation:

The above code snippet defines a custom constructor.

7.

Consider the following code snippet :

 var a = [];

 a.unshift(1);

 a.unshift(22);

 a.shift();

 a.unshift(3,[4,5]);

 a.shift();

 a.shift();

 a.shift();


The final output for the shift() is

A.
1
B.
[4,5]
C.
[3,4,5]
D.
Exception is thrown

Your Answer: Option (Not Answered)

Correct Answer: Option A

Explanation:

The unshift() and shift() methods behave much like push() and pop(), except that they insert and remove elements from the beginning of an array rather than from the end. unshift() adds an element or elements to the beginning of the array, shifts the existing array elements up to higher indexes to make room, and returns the new length of the array. shift() removes and returns the first element of the array, shifting all subsequent elements down one place to occupy the newly vacant space at the start of the array.

8.

Consider the following code snippet

function hypotenuse(a, b)

 {

       function square(x)

       {

            return x*x;

       }

       return Math.sqrt(square(a) + square(b));

}


What does the above code result?

A.
Square root of Sum of square of a and b
B.
Square root of square of sum of a and b
C.
Sum of a and b square
D.
None of the mentioned

Your Answer: Option (Not Answered)

Correct Answer: Option A

Explanation:

The above code snippet contains nested function in which the function hypotenuse(a,b) has another function inside its scope, function square(x). The interesting thing about nested functions is their variable scoping rules. They can acceess the parameters and variables of the function (or functions) they are nested within.

9.

For the below mentioned code snippet:

var o = new Object();
The equivalent statement is:

A.
var o = Object();
B.
var o;
C.
var o= new Object;
D.
Object o=new Object();

Your Answer: Option (Not Answered)

Correct Answer: Option C

Explanation:

You can always omit a pair of empty parentheses in a constructor invocation.

10.

What is the fundamental rule of lexical scoping?

A.
Functions are declared in the scope
B.
Functions are executed using scope chain
C.
Both a and b
D.
None of the mentioned

Your Answer: Option (Not Answered)

Correct Answer: Option B

Explanation:

The fundamental rule of lexical scoping is that the JavaScript functions are executed using the scope chain that was in effect when they were defined.

11.

When a class B can extend another class A, we say that

A.
A is the superclass and B is the subclass
B.
B is the superclass and A is the subclass
C.
Both A and B are the superclass
D.
Both A and B are the subclass

Your Answer: Option (Not Answered)

Correct Answer: Option A

Explanation:

Instances of B inherit all the instance methods of A. The class B can define its own instance methods, some of which may override methods of the same name defined by class A.

12.

How can we make methods available on all objects?

A.
Object.add(methods)
B.
Object.methods(add)
C.
Object.add.methods(…)
D.
Object.prototype

Your Answer: Option (Not Answered)

Correct Answer: Option D

Explanation:

It is possible to add methods to Object.prototype, making them available on all objects. This is not recommended, however, because prior to ECMAScript5, there is no way to make these add-on methods nonenumerable, and if you add properties to Object.prototype, those properties will be reported by all for/in loops.

13.

Consider the following code snippet

var sets = com.davidflanagan.collections.sets;
What is the programmer trying to do in the above code snippet?

A.
Importing a single module
B.
Importing a module partially
C.
Importing a namespace
D.
Importing the entire module

Your Answer: Option (Not Answered)

Correct Answer: Option D

Explanation:

Rather than importing individual classes, a programmer might import the entire module to the global namespace.

14.

What is the most essential purpose of parantheses in regular expressions ?

A.
Define pattern matching techniques
B.
Define subpatterns within the complete pattern
C.
Define portion of strings in the regular expression
D.
All of the mentioned

Your Answer: Option (Not Answered)

Correct Answer: Option B

Explanation:

When a regular expression is successfullyy matched against a target string, it is possible to extract the portions of the target string that matched any particular paranthesized subpattern. The essential purpose of parantheses in regular expressions is to define subpatterns within the complete pattern.

15.

Which are the two functions that are not allowed in any secure subset?

A.
evaluate() and restrict()
B.
eval() and the Function() constructor
C.
debugger() and test()
D.
eval() and debugger()

Your Answer: Option (Not Answered)

Correct Answer: Option B

Explanation:

eval() and the Function() constructor are not allowed in any secure subset because they allow the execution of arbitrary strings of code, and these strings cannot be statically analyzed.

16.

Consider the following code snippet

[x,y]=[y,x];
What is the result of the above code snippet?

A.
Throws exception
B.
Swap the value of the two variables
C.
Flashes an error
D.
Creates a new reference object

Your Answer: Option (Not Answered)

Correct Answer: Option C

Explanation:

The above code snippet swaps the value of the two variables.

17.

Which of the following is the descendant operator?

A.
..
B.
C.
*
D.
@

Your Answer: Option (Not Answered)

Correct Answer: Option B

Explanation:

The .. operator is the descendant operator; you can use it in place of the normal . member-access operator :

var names = pt..name;

18.

Which among the following POSIX signals generate events?

A.
SIGDOWN
B.
SIGFLOAT
C.
SIGINT
D.
SIGSHORT

Your Answer: Option (Not Answered)

Correct Answer: Option C

Explanation:

The SIGINT is a POSIX signal that generates event.

19.

Consider the following code snippet

var f = new java.io.File("/tmp/test");

var out = new java.io.FileWriter(f);

out instanceof java.io.Reader


What will be the output for the above code snippet?

A.
Error
B.
True
C.
Exception
D.
False

Your Answer: Option (Not Answered)

Correct Answer: Option D

Explanation:

The output for the above code snippet is false as it is a writer and not a Reader.

20.

The necessary globals of a node are defined under which namespace?

A.
variables
B.
system
C.
process
D.
using

Your Answer: Option (Not Answered)

Correct Answer: Option C

Explanation:

Node defines other important globals under the process namespace.

Submit your test now to view the Results and Statistics with answer explanation.