اكثر اسئلة واجوبة المقابلات طلبا والاختبارات عبر الإنترنت
منصة تعليمية للتحضير للمقابلات والاختبارات عبر الإنترنت والدروس والتدريب المباشر

طوّر مهاراتك من خلال مسارات تعلم مركزة واختبارات تجريبية ومحتوى جاهز للمقابلات.

يجمع WithoutBook أسئلة المقابلات حسب الموضوع والاختبارات العملية عبر الإنترنت والدروس وأدلة المقارنة في مساحة تعلم متجاوبة واحدة.

التحضير للمقابلة

Angular 8 اسئلة واجوبة المقابلات

سؤال 21. Explain the concept of Angular decorators.

Decorators in Angular are functions that modify the behavior of classes, methods, or properties. They are used to annotate and configure Angular components, directives, services, and modules.

Example:

@Component({
  selector: 'app-root',
  template: '

Hello World

',
})

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 22. What are Angular guards and how are they used?

Angular guards are used to control the navigation to or from a route. There are different types of guards, such as CanActivate, CanDeactivate, CanLoad, and Resolve. They are implemented as services and can be added to route configurations.

Example:

canActivate: [AuthGuard]

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 23. Explain the concept of Angular directives.

Directives in Angular are markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or its children. Directives can be structural (changing the structure of the DOM) or attribute (changing the behavior or appearance of the DOM).

Example:

This is visible

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 24. What is Angular CLI and how is it useful?

Angular CLI (Command Line Interface) is a command-line tool that facilitates the development, testing, and deployment of Angular applications. It provides commands for creating components, services, modules, building, testing, and more, making it easier to manage the development workflow.

Example:

ng generate component my-component

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 25. Explain the use of *ngFor and *ngIf directives.

*ngFor is a structural directive in Angular used for iterating over a list of items and creating a template for each item. *ngIf is a structural directive that conditionally includes or excludes elements based on an expression.

Example:

{{ item }}

This is shown if the condition is true

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

الاكثر فائدة حسب تقييم المستخدمين:

حقوق النشر © 2026، WithoutBook.