- AHTML and CSS
- BHTML and JavaScript
- CHTML and PHP
- DHTML and AngularScript
Time Taken:
Correct Answer:
Wrong Answer:
Percentage: %
Model is the lowest level of the pattern responsible for maintaining data
Yes, Android, Chrome Mobile, iOS Safari
ng-app
Answer: B) A front-end web development framework
Explanation: AngularJS is a popular front-end web development framework used for building dynamic and responsive web applications.
Answer: D) angular.module
Explanation: To create a new AngularJS module, we use the angular.module() method.
Answer: D) A way to inject services into a component
Explanation: Dependency injection is a key feature of AngularJS that allows services to be injected into components, making it easy to reuse code and separate concerns.
Answer: B) ng-if removes the element from the DOM, while ng-show hides the element using CSS
Explanation: The ng-if directive removes the element from the DOM when its condition is false, while the ng-show directive hides the element using CSS when its condition is false.
Answer: C) A way to extend HTML in AngularJS
Explanation: A directive in AngularJS is a way to extend HTML by creating custom HTML elements or attributes with new functionality. Directives are a powerful feature of AngularJS that allow developers to create reusable and modular code.