page-banner
Chapter-6 JavaScript and AngularJS
Q26.
AngularJS में ng-repeat निर्देश के बारे में क्या सत्य नहीं है?<break-line><break-line>What is not true about ng-repeat directive in AngularJS?
A. HTML एलिमेंट को रिपीट करता है/Repeats an HTML element
B. कलेक्शन में प्रत्येक आइटम के लिए HTML एलिमेंट को क्लोन करता है/Clones HTML elements once for each item in a collection
C. ऑब्जेक्ट्स की ऐरे पर उपयोग किया जाता है/Used on an array of objects
D. AngularJS एप्लिकेशन के लिए प्रारंभिक मान परिभाषित करता है/Defines initial values for an AngularJS application
View Answer
Q27.
AngularJS एप्लिकेशन को प्रारंभ करने के लिए निम्नलिखित में से किस निर्देश का उपयोग किया जाता है?<break-line><break-line>Which of the following directives is used to start an AngularJS application?
A. ng-repeat
B. ng-init
C. ng-app
D. ng-model
View Answer
Q28.
HTML तत्व को दिखाने या छिपाने के लिए किस AngularJS निर्देश का उपयोग किया जाता है?<break-line><break-line>Which AngularJS directive is used to show or hide an HTML element?
A. ng-showHide
B. ng-ShowHide
C. ng-show
D. ng-hide
View Answer
Q29.
नीचे दिए गए कथन पर विचार करें - आउटपुट क्या होगा?<break-line><break-line>Consider the below statement – what will be the output?<pre><code><div ng-app="" ng-init="num=10"> <p ng-show="num > 5">Displaying: {{num}}</p> </div></code></pre>
A. सिंटैक्स त्रुटि/Syntax Error
B. कुछ प्रदर्शित नहीं होगा/Nothing will display
C. Displaying: 5
D. Displaying: 10
View Answer
Q30.
निम्नलिखित में से किसका उपयोग निर्देशों के उपसर्ग के रूप में किया जा सकता है?<break-line><break-line>Which of the following can be used as a prefix for Directives?
A. data
B. ng
C. दोनों A और B/Both A and B
D. इनमें से कोई नहीं/None of these
View Answer