This is the default value of a bool type field in C#
What is false?
This keyword is used to create a new instance of an object.
What is new?
This tag is used to create a paragraph in HTML.
What is <p>?
This command-line interface tool is used to create and manage Angular projects.
What is the Angular CLI?
The method where execution of a C# console program begins.
What is Main()?
This keyword is used in a class to indicate that a method must be implemented in a derived class.
What is abstract?
This tag is used to create a hyperlink to another webpage.
What is <a>?
This file is the root module of most Angular applications.
What is app.module.ts?
This access modifier makes a class member accessible only within its own class.
What is private?
The concept of defining multiple methods with the same name but different parameters.
What is method overloading?
This class in ASP.NET Core handles HTTP requests in the middleware pipeline.
What is HttpContext?
This tag is used to insert an image into an HTML page.
What is <img>?
This decorator defines a class as an Angular component.
What is @Component?
This keyword is used to handle exceptions in C#.
What is try?
This special method is automatically called when an object is created.
What is a constructor?
This design pattern is used in ASP.NET to inject dependencies like services and repositories.
What is dependency injection?
This global HTML attribute provides extra information when hovering over an element.
What is title?
This symbol is used in Angular templates to bind a property from the class to the view.
What is {{ }} (interpolation)?
In C#, this type is used for non-decimal numbers that require large storage, such as file sizes.
What is long?
This keyword is used to allow a derived class to override a method in its base class.
What is virtual?
This component of ASP.NET Core is responsible for handling routing and endpoints.
What is the Endpoint Routing Middleware?
This tag is used to embed JavaScript directly in an HTML document.
What is <script>?
This lifecycle hook runs after the component’s view has been fully initialized.
What is ngAfterViewInit()?