Time Left : 00 : 30 : 00

What are the two types of enums?

Correct Answer : B

You can disable implicit variable type assignment by enabling the compiler option:

Correct Answer : A

List some features of Typescript?

Correct Answer : D

A ________ in terms of OOP is a blueprint for creating objects.

Correct Answer : D

TypeScript is a ?

Correct Answer : D

What is a constructor in TypeScript?

Correct Answer : A

..... are the way to organise code in typescript.

Correct Answer : A

What are variables in Typescript?

Correct Answer : D

In TypeScript, what keyword do you use to declare a variable?

Correct Answer : B

Which object-oriented terms are supported by Typescript?

Correct Answer : D

What are the benefits of Typescript?

Correct Answer : D

Interfaces are similar to type aliases, but only for object types?

Correct Answer : A

Which statements are true regarding JSX modes?

Correct Answer : D

Which is a successful example of this tuple '[number, string]'?

Correct Answer : D

Among which of the following computer programming language influenced the creation of typescript?

Correct Answer : D

What is the type of the parameter: 'function ex(param1?: string){}'?

Correct Answer : B

You can enable 'undefined' and 'null' types to be accounted for by enabling the compiler property:

Correct Answer : D

What company develops TypeScript?

Correct Answer : A

________ an interface will have the same properties as that interface.

Correct Answer : C

Type Aliases are mostly used with ______

Correct Answer : A

What are the disadvantages of TypeScript?

Correct Answer : D

What is the inherited type for the variable example in 'const example = ['Dylan']'?

Correct Answer : A

Can a typescript be installed or managed through?

Correct Answer : D

Which of the following is the typing principle of typescript?

Correct Answer : D

TypeScript is?

Correct Answer : C

What are the built-in types in Typescript?

Correct Answer : D

The ...... Service powers the interactive TypeScript experience in Visual Studio, Vs Code, Sublime, the TypeScript playground and other editor.

Correct Answer : A

_____ is similar to 'any', but a safer alternative when uncertain about the type.

Correct Answer : C

Which of the following is a filename extension for typescript?

Correct Answer : A

What does the 'readonly' access modifier do for an array variable assignment like: 'const codeNames: readonly string[] = ['Coding', 'God']'?

Correct Answer : D