page-banner
WDP M2-R5.1 Quiz-14
Q 1. टेक्स्ट पर लाइन देने के लिए निम्नलिखित में से कौन सी CSS प्रॉपर्टी का उपयोग किया जाता है?<break-line><break-line>Which of the following CSS property is used to give a line over the text?

A. text-decoration: underline

B. text-decoration: overline

C. text-decoration: line-through

D. text-decoration: none

Q 2. निम्न में से कौन किसी टेक्स्ट डेकोरेशन का रंग सेट करता है, जैसे अंडरलाइन, ओवरलाइन और स्ट्राइक थ्रू?<break-line><break-line>Which of the following sets the color of any text decoration, such as underlines, overlines, and strike throughs?

A. text-font

B. text-format

C. text-color

D. text-decoration-color

Q 3. निम्नलिखित में से कौन सा गुण किसी तत्व के शीर्ष पर पैडिंग जोड़ता है?<break-line><break-line>Which of the following property adds padding to the top of an element?

A. height

B. padding-height

C. top

D. padding-top

Q 4. दो वेरिएबल्स (नाम और उम्र) को इनिशियलाइज़ करने के लिए <div> एलिमेंट के साथ एक स्टेटमेंट लिखें?<break-line><break-line>Write a statement with <div> element to initialize two variables (name and age)?

A. <div ng-app="" ng-init="Name:'Alex';Age:21">

B. <div ng-app="" ng-init="Name:'Alex',Age:21">

C. <div ng-app="" ng-init="Name='Alex',Age=21">

D. <div ng-app="" ng-init="Name='Alex';Age=21">

Q 5. नीचे दिए गए कथन पर विचार करें – आउटपुट क्या होगा?<break-line><break-line>Consider the below statement – what will be the output?<pre><code><div data-ng-app="" data-ng-init="qty=3;price=2.5"> <p>The result is: {{qty * price}}</p> </div></code></pre>

A. The result is: 7.5

B. The result is: 7

C. The result is: 7.15

D. The result is: 3*2.5