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

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

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

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

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

سؤال 6. Explain dependency injection in Angular.

Dependency injection is a design pattern in which a class receives its dependencies from external sources rather than creating them itself. In Angular, the DI system provides and injects the dependencies into the components, services, etc.

Example:

constructor(private dataService: DataService) { }

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

سؤال 7. What is a service in Angular?

In Angular, a service is a singleton object that performs tasks like fetching data, sharing data between components, or encapsulating business logic. Services are used to promote reusability and maintainability.

Example:

import { Injectable } from '@angular/core';

@Injectable({
  providedIn: 'root',
})
export class DataService { }

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

سؤال 8. Explain Angular directives.

Directives in Angular are markers on DOM elements that tell Angular to attach behavior to a DOM element or transform the DOM element and its children. Examples include ngIf, ngFor, and ngStyle.

Example:

This is visible

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

سؤال 9. What is the purpose of ngOnInit() in Angular?

ngOnInit is a lifecycle hook in Angular that is called after Angular has initialized all data-bound properties of a directive. It is a good place to put initialization logic for your component.

Example:

ngOnInit() {
  // Initialization code here
}

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

سؤال 10. What is Angular CLI?

Angular CLI (Command Line Interface) is a powerful tool for initializing, developing, scaffolding, and maintaining Angular applications. It provides commands for tasks like generating components, services, and modules.

Example:

ng generate component my-component

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

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

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