Correct Answer : All of the above
Explanation : TypeScript is a strongly typed, object oriented, compiled language. It was designed by Anders Hejlsberg (designer of C#) at Microsoft.
Correct Answer : Microsoft
Explanation :
Correct Answer : October 2012
Explanation : TypeScript was first made public in October 2012 (at version 0.8), after two years of internal development at Microsoft.
Correct Answer : False
Correct Answer : noImplicitAny
Correct Answer : strictNullChecks
Explanation : All of the above are the Features of TypeScript.
Correct Answer : .d.ts
Explanation : TypeScript Definition file (with .d.ts extension) provides definition for external JavaScript libraries.
Correct Answer : True
Explanation : TypeScript supports Object Oriented Programming concepts like classes, interfaces, inheritance.
Correct Answer : unknown
Correct Answer : string[]
Correct Answer : Allows no changes and is there simply to be read from and not modified
Correct Answer : 3
Explanation : At its heart, TypeScript has the following three components : Language, The TypeScript Compiler and The TypeScript Language Service.
Correct Answer : Case-sensitive
Explanation : TypeScript is case-sensitive. This means that TypeScript differentiates between uppercase and lowercase characters.
Correct Answer : 2
Explanation : TypeScript supports the following types of comments : Single-line comments And Multi-line comments.
Correct Answer : const ourTuple = [101, 'Coding God']
Correct Answer : Strings
Correct Answer : Extending
Correct Answer : String and Number
Correct Answer : 0
Correct Answer : class
Explanation : A class in terms of OOP is a blueprint for creating objects. A class encapsulates data for the object.
Correct Answer : a project that provides a central repository of TypeScript definitions for NPM packages which do not have types
Correct Answer : string | undefined
Correct Answer : void
Correct Answer : visibility
Correct Answer : Yes
Correct Answer : Override
Correct Answer : Boolean, Number, String
Correct Answer : Explicit
Correct Answer : The preserve mode will keep the JSX as part of the output to be further consumed by another transform step