Top 35+ Most Asked Angular MCQ1) Which of the following statement is correct for AngularJS?
Answer: C is the correct option. AngularJS is a JavaScript framework. 2) On which of the Architectural pattern AngularJS is based?
Answer: D is the correct option. AngularJS is based on MVVM Architectural pattern. 3) AngularJS is perfect for?
Answer: A is the correct option. AngularJS is perfect for Single Page Applications (SPAs). 4) Which of the following is the correct syntax for writing AngularJS expressions?
Answer: B is the correct option. The correct syntax for writing AngularJS expressions is: {{expression}} 5) Do AngularJS provide reusable components?
Answer: A is the correct option. AngularJS provides reusable components. 6) Which of the following directive is used to bind the application data to the HTML view in AngularJS?
Answer: C is the correct option. The ng-bind directive is used to bind the application data to the HTML view in the AngularJS application. 7) Which of the following syntax is correct for applying multiple filters in AngularJS?
Answer: A is the correct option. The syntax of applying multiple filters in AngularJS can be written as: {{ expression | filter1 | filter2 | ... }} 8) Which of the following statement is true about the lowercase filter?
Answer: A is the correct option. The lowercase filter converts a text to lower case text. That's why it is added to the AngularJS expression to filter out the result. 9) Which of the following is an advantage of AngularJS?
Answer: D is the correct option. All of the above are the advantages of AngularJS. 10) Which of the following statement is true about $dirty flag?
Answer: A is the correct option. The $dirty flag is used to state that value in the form has been changed. 11) What will be the output for the following code?
Answer: C is the correct option. "The output is 19" would be the correct output of the above code. 12) What is the use of Angular Controllers in the application?
Answer: A is the correct option. Angular controllers are used to control the data. 13) Which of the following syntax is used to create a module in AngularJS?
Answer: C is the correct option. To create a module in AngularJS, we use angular.module("app", []); syntax. 14) Which of the following is used to share data between controller and view in AngularJS?
Answer: B: "using services" is the correct answer. 15) Which of the following statement specifies the data-binding in AngularJS?
Answer: A is the correct option. Data-binding in AngularJS apps is the automatic synchronization of data between the model and view components. 16) Which of the following is not a valid AngularJS filter?
Answer: C is the correct option. The "email" is not a valid AngularJS filter 17) Who is known as the father of AngularJS?
Answer: B is the correct answer. Misko Hevery was the inventor of AngularJS, so he is known as the father of AngularJS. 18) Which of the following directive is used to bind the value of HTML controls to application data?
Answer: C is the correct option. The ng-app directive is used to initialize the AngularJS application. The ng-init directive is used to initialize the application data. The ng-model directive binds the value of HTML controls (input, select, textarea) to application data, and the ng-hide directive is used to hide or show the HTML elements. 19) Which of the following community Angular JS belong to?
Answer: C is the correct option. AngularJS is a JavaScript-based open-source front-end web framework that belongs to Google and is mainly maintained by Google and a community of individuals and corporations. 20) Is AngularJS completely based on HTML and JavaScript?
Answer: A is the correct option. It is true that AngularJS completely based on HTML and JavaScript. 21) A module created by using the AngularJS function is called?
Answer: B is the correct option. A module created by using the AngularJS function is called "angular.module". 22) Which of the following types of the component can be used to create a custom directive?
Answer: D is the correct option. By using AngularJS, we can create custom directives for the following type of elements.
23) How many $RootScope an AngularJS application can have?
Answer: B is the correct option. An AngularJS application can have only one $RootScope 24) Which of the following is true about the currency filter?
Answer: B is the correct option. A currency filter is used to format the text in a currency format. It is added to the AngularJS expression to filter out the result. 25) Which of the following statement is true in the case of a controller in MVC?
Answer: B is the correct option. A controller is a software code that stores the data. 26) Which of the following components can be injected as a dependency in AngularJS?
Answer: D is the correct answer. The "Application Module" can be injected as a dependency in AngularJS. 27) What is deep linking in AngularJS?
Answer: C is the correct answer. Deep linking allows you to encode the state of an application in the URL so that it can be bookmarked. 28) AngularJS applications are a mix of which of the following technologies?
Answer: B is the correct answer. AngularJS applications are a mix of HTML and JavaScript. 29) Which of the following template can be used to write AngularJS directives?
Answer: D is the correct answer. 30) Which of the following statement is true in the case of $routeProvider?
Answer: A is the correct answer. The $routeProvider is a service. 31) Which of the following statement justify the working of AngularJS?
Answer: C is the correct answer as both the above statements are true. 32) The [] parameter in the module definition is used to define dependent modules.
Answer: A: True. The [] parameter in the module definition is used to define dependent modules. Without the [] parameter, you cannot create a new module but retrieve an existing one. True and False Questions33) In AngularJS, the $http service is used to make an Ajax call to the server.
Answer: A: True. AngularJS provides $http control which works as a service to make the Ajax call read data from the server. 34) AngularJS facilitates developers to write less code and get more functionality.
Answer: A: This is a true statement as AngularJS facilitates developers to write less code and get more functionality. 35) While using the factory method, we must first define a factory and then assign a method to it.
Answer: A: This is a true statement. As using the factory method, we first define a factory and then assign a method to it. 36) OrderBy filter is applied to an expression using pipe character.
Answer: A: This is a true statement. The OrderBy filter is applied to an expression using pipe characters. 37) AngularJS application expressions are pure JavaScript expressions.
Answer: A: True 38) AngularJS support two-way data binding.
Answer: A: True. 39) AngularJS supports internationalization?
Answer: A: True. Next Topic# |