1. Question: Which directive binds application data to the HTML view?

    A
    ng-model

    B
    ng-bind

    C
    ng-controller

    D
    ng-app

    E
    All of these

    Note: Not available
    1. Report
  2. Question: Which directive binds the value of the input field to the application variable name?

    A
    ng-app

    B
    ng-controller

    C
    ng-bind

    D
    ng-model

    E
    ng-data

    Note: Not available
    1. Report
  3. Question: Which directive binds the innerHTML of the element to the application variable?

    A
    ng-contorller

    B
    ng-model

    C
    ng-view

    D
    ng-bind

    E
    ng-app

    Note: Not available
    1. Report
  4. Question: Which directive initialize AngularJS application variables?

    A
    ng-init

    B
    ng-app

    C
    ng-inital

    D
    ng-model

    E
    None of these

    Note: Not available
    1. Report
  5. Question: AngularJS expressions bind AngularJS data to HTML the same way as the ______ directive.

    A
    ng-model

    B
    {{expression}}

    C
    ng-bind

    D
    ng-model

    E
    None of these

    Note: Not available
    1. Report
  6. Question: Which is the correct syntax of creating AngularJS application module?

    A
    var app = angularJS.module('myApp',[]);

    B
    var app = angular.module('myApp', []);

    C
    var app = angular.module('myApp');

    D
    var app = angular.module([],'myApp',);

    Note: Not available
    1. Report
  7. Question: Which is the correct syntax of creating AngularJS Controller?

    A
    var app = angular.module('myApp', []); angular.controller('myCtrl', function(app,$scope) { });

    B
    var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { });

    C
    var app = module('myApp', []); app.controller('myCtrl', function($scope) { });

    D
    var app = angular.module('myApp', []); app.controller( function($scope) { });

    Note: Not available
    1. Report
  8. Question: Which directive will auto-bootstrap (automatically initialize) the application when a web page is loaded?

    A
    ng-app

    B
    ng-init

    C
    ng-css

    D
    ng-module

    Note: Not available
    1. Report
  9. Question: Which directive can also provide type validation for application data (number, email, required)?

    A
    ng-app

    B
    ng-bind

    C
    ng-model

    D
    ng-validate

    Note: Not available
    1. Report
  10. Question: Which directive can also provide status for application data (invalid, dirty, touched, error)?

    A
    ng-model

    B
    ng-app

    C
    ng-bind

    D
    ng-init

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd