Exit Comprehensive Angular JavaScript Post Test Question Title * 1. Which of the following is NOT a valid Angular Directive? A. *ngIf B. *ngFor C. *ngSwitch D. *ngRender I don't know Question Title * 2. Which command will create a new Angular project ng new project-name ng init npm install @angular npm create project project-name I don't know Question Title * 3. Which of the following is created when you generate a Component? component-name.ts component-name.html component-name.css All the above I don't know Question Title * 4. Which command will run the application? npm run ng run npm serve ng serve I don't know Question Title * 5. What language do you use to code in Angular? JavaScript 5 or later Java TypeScript ECMAScript 6 or later I don't know Question Title * 6. What does the following line of code do? (click) = “processData” Run the processData function when the User clicks Run the click function when the field processData is true Sets a new field named click to an existing field name processData Nothing, it is invalid Angular code I don't know Question Title * 7. The Angular application has the following files: <project>/src/main.ts => A <project>/src/app/app.module.ts => B <project>/src/app/app.component.tsWhat is the correct bootstrap order? A → B → C B → A B → C B → A → C I don't know Question Title * 8. Which of the following is NOT a built-in Angular pipe? DatePipe CurrencyPipe I18NPipe UpperCasePipe I dont' know Question Title * 9. A Service in Angular is a Singleton? True False I don't know Question Title * 10. To use Dependency Injection in Angular... Add the Service to the Component as a @Input Add the Service to the Module as a provider Add the Service to the main.ts as in Import Add the Service to the app.component.ts as a spec file I don't know Done