Edu
Hub
Courses
AI Tools
Leaderboard
Login/Register
AR
Abdullah Rashid
abdullah@example.com
Navigation
📚
Courses
🏆
Leaderboard
✨
AI Tools
←
jQuery & MySQL (IsDB WDPF Question)
⏱
15:00
Quit
0 / 40 answered
0%
jQuery & MySQL (IsDB WDPF Question)
10 questions · Medium difficulty · 00:40:00 min
🔥 In Progress
Question 1
Which SQL statement is used to update data in a database?
MODIFY
UPDATE
SAVE AS
SAVE
Question 2
Which jQuery method is used to hide selected elements?
hidden()
visible(false)
display(none)
hide()
Question 3
Which of the following statement would be used if you want to show the structure of the Product table in your inventory?
DESCRIBE Product
DISTINCT Product
None of the above
STRUCTURE Product
Question 4
Which of the following method can be used to get the current offset of the first matched element?
outerHeight([margin])
position()
offset()
offsetParent()
Question 5
Which SQL clause is used to restrict the rows returned by a query?
FROM
AND
WHERE
HAVING
Question 6
Which of the following selector selects all checked boxes in a form?
$('checked')
$(':checked')
$('input[checked=checked]')
$('input[checked]')
Question 7
Which of the following method retrieves the total number of rows affected by an INSERT, UPDATE, or DELETE operation?
affected_rows()
None of the above
Both a & b
num_rows()
Question 8
Which of the following method can be used to apply multiple CSS properties using a single jQuery method?
map()
jQuery()
style()
css()
Question 9
Which SQL statement is used to extract data from a database?
SELECT
OPEN
GET
EXTRACT
Question 10
Which of the following method can be used to locate all the descendant elements of a particular type?
next(selector)
filter(selector)
children(selector)
find(selector)
Question 11
How do you view all tables in MySQL?
ALTER TABLES
VIEW TABLES
SELECT TABLES
SHOW TABLES
Question 12
Which event type occurs when an element loses focus?
Change
Focus
Blur
Load
Question 13
What does the SQL GROUP BY clause do?
Joins two or more tables
Groups rows that have the same values in specified columns
Sorts rows in ascending order
Filters rows based on a condition
Question 14
Which of the following method gets the HTML contents (innerHTML) of the first matched element in jQuery?
replaceWith(content)
html()
jQuery()
text(val)
Question 15
Which command deletes both the table data and the table structure?
TRUNCATE
REMOVE
DROP
DELETE
Question 16
Which jQuery function is used to prevent code from running before the document is fully loaded?
$(document).load()
$(body).onload()
$(document).ready()
$(window).load()
Question 17
Which SQL statement is used to retrieve unique values from a column?
SELECT DISTINCT column_name FROM table_name;
SELECT UNIQUE column_name FROM table_name;
SELECT SINGLE column_name FROM table_name;
SELECT DIFFERENT column_name FROM table_name;
Question 18
Which of the following method can be used to either fetch or set the value of an attribute from the first element?
val()
text(val)
html()
attr()
Question 19
What is jQuery?
JavaScript Method
JavaScript Library
PHP Method
JavaScript Language
Question 20
Which constraint ensures that a column cannot have NULL values?
NOT NULL
CHECK
UNIQUE
PRIMARY KEY
Question 21
Which of the following method can be used to filter out elements from the set of matched elements?
filter_out()
add()
select()
filter(selector)
Question 22
What is the purpose of using the .bind() method in jQuery?
To attach standard JavaScript events to elements
To reduce the matched set to a single element
To filter out all elements from the matched set
To apply CSS properties using jQuery
Question 23
How do you convert ISAM tables to MyISAM tables?
ADD TABLE table_name TYPE=MYISAM;
CHANGE TABLE table_name TYPE=MYISAM;
MODIFY TABLE table_name TYPE=MYISAM;
ALTER TABLE table_name TYPE=MYISAM;
Question 24
Which of the following selector is used to select only form elements?
$(':input')
$('input')
$('form')
$('input[type=*]')
Question 25
Which method removes all matched elements from the DOM?
remove(expr)
removeAll(selector)
empty()
remove()
Question 26
Which command is used to remove an existing table or database?
DROP TABLE
None of the above
Either DROP TABLE or DELETE
DELETE
Question 27
Which jQuery utility function parses the returned JSON string?
get()
getJSON()
getScript()
parseJSON()
Question 28
Which utilities are used to export data from a MySQL server?
mysqlshow
mysqldump
A & C
mysqlhotcopy
Question 29
Which jQuery function is used to set the plain text contents of all matched elements?
$(selector).add(val)
$(selector).wrap(val)
$(selector).html(val)
$(selector).text(val)
Question 30
Which of the following method can be used to replace an element?
replace()
replaceAll()
change()
replaceWith(content)
Question 31
How can we get a set of elements containing the unique next siblings?
next([selector])
nextAll(selector)
find(selector)
children([selector])
Question 32
What do you mean by sanitizing input?
How to interact with data files
How to perform file system operations
None of the above
Preventing users from passing harmful data
Question 33
Which file is responsible for configuring MySQL on the Windows platform?
my.ini
php.ini
my.cnf
mysql.ini
Question 34
Which of the following method can be used to remove event handlers?
delete()
remove()
die()
empty()
Question 35
Which SQL statement is used to process the rows in a cursor?
GET
READ
None of the above
FETCH
Question 36
Which of the following method can be used to wrap the inner child contents of each matched DOM element?
wrapInner(elem)
wrapAll(html)
wrap(html)
wrapInner(html)
Question 37
Which command should be used to connect as the anonymous user of a MySQL server running on localhost?
mysql -u anon
mysql -u anonymous
mysql
mysql -u
Question 38
Which symbol always starts a jQuery statement?
Plus sign +
Dollar sign and parentheses $()
Equal sign =
Parentheses ()
Question 39
How can we bind multiple events in jQuery?
bind()
param()
getbind()
bindparam()
Question 40
With SQL, how do you select all the columns from a table named "Persons"?
SELECT Persons
SELECT *. Persons
SELECT * FROM Persons
SELECT [all] FROM Persons
✅ Answered:
0
⬜ Unanswered:
8
📊
20%
done
Submit Answers →