Dynamic Webpage With Scripting Language (3360705) MCQs

MCQs of Working with jQuery

Showing 31 to 40 out of 46 Questions
31.
Which is the correct jQuery code snippet?
સાચો jQuery કોડ સ્નિપેટ કયો છે?
(a)
$(document).ready(function(){ 
$("p").click(function(){ 
$(this).hide(); 
}); 
});
(b)
$(document).ready(function{ 
$("p").click(function{ 
$(this).hide(); 
}); 
});
(c)
$(document).(function(){ 
$("p").click(function(){ 
$(this).hide(); 
}); 
});
(d)
(document).(function(){ 
("p").click(function(){ 
(this).hide(); 
}); 
});
Answer:

Option (a)

32.
i) $(selector). dblclick() 
ii) $(selector). dblclick(function)
(a)

Only (i) true

ફક્ત (i) સાચુ

(b)

Only (ii) true

ફક્ત (ii) સાચું

(c)

Both (i) and (ii) true

(i) અને (ii) બંને સાચા

(d)

Both (i) and (ii) false

(i) અને (ii) બંને ખોટા

Answer:

Option (c)

33.
When are the keyboard events fired?
કીબોર્ડ ઇવેન્ટ્સ ક્યારે fire થાય છે?
(a) When the user manually calls the button
જ્યારે યુઝર જાતે જ બટનને call કરે છે
(b) When the user clicks a key
જ્યારે યુઝર કોઈ કીને ક્લિક કરે છે
(c) When the user calls the modifier
જ્યારે યુઝર મોડિફાયર call કરે છે
(d) When the user right clicks the mouse
જ્યારે યુઝર માઉસની રાઇટ ક્લિક કરે છે
Answer:

Option (b)

34.
How does a user generate multiple keydown events?
યુઝર કેવી રીતે મલ્ટિપલ keydown ઇવેન્ટ્સ બનાવે છે?
(a) Repeating the same process
સરખી process ને repeat કરવી
(b) Pressing multiple keys
Multiple keys ને press કરવી
(c) Pressing the key longer than usual
સામાન્ય કરતાં key લાંબી press કરવી
(d) Pressing the key multiple times
key ઘણી વખત press કરવી
Answer:

Option (c)

35.

Which property is used to specify the key type when pressed?

કઈ પ્રોપર્ટી કી પ્રેસ કરવામાં આવે ત્યારે key type ના ઉલ્લેખ માટે વપરાય છે?

(a)

keyCode

(b)

keyType

(c)

keyName

(d)

keyProperty

Answer:

Option (a)

36.
Which of the following are not key event properties?
નીચેનામાંથી કઈ કી ઇવેન્ટ પ્રોપર્ટિ નથી?
(a) Code key
(b) Alt Key
(c) Ctrl Key
(d) Shift Key
Answer:

Option (a)

37.
When modifier keys are pressed (ALT, CTRL, SHIFT, and ESC), the _______ event will not fire.
જ્યારે modifire key press (ALT, CTRL, SHIFT, અને ESC)કરવામાં આવે છે, ત્યારે _______ ઇવેન્ટ fire થશે નહીં.
(a) Keydown
(b) Keypress
(c) Keyup
(d) Keyrelease
Answer:

Option (b)

38.
The _______ event occurs when the browser window is resized.
_______ ઇવેન્ટ occur થાય ત્યારે બ્રાઉઝર વિંડોનું કદ બદલાઈ જાય છે.
(a) ready
(b) move
(c) resize
(d) None of these
ઉપરમાંથી એકપણનહી
Answer:

Option (c)

39.
Which is the form events?
Form events કયા છે?
(a) Blur
(b) Submit
(c) Change
(d) All of the above
ઉપર આપેલ બધા જ
Answer:

Option (d)

40.
Which is the window events?
Window events કયા છે?
(a) load()
(b) resize()
(c) scroll()
(d) All of the above
ઉપર આપેલ બધા જ
Answer:

Option (d)

Showing 31 to 40 out of 46 Questions