Dynamic Web Page Development (3350702) MCQs

MCQs of Establishing a Database Connection and Working With Database

Showing 21 to 30 out of 33 Questions
21.

What is the default format for “Time” data type?

(“Time” ડેટાટાઇપ માટેનું default ફોર્મેટ શું છે?)

(a)

HHH:MM:SS

(b)

SS:MM:HHH

(c)

MM:SS:HHH

(d)

HHH:MM:SE

Answer:

Option (a)

22.

Which one of the following statements is used create a table?

(ટેબલ બનાવવા માટે નીચેનામાંથી કયા statementનો ઉપયોગ થાય છે?)

(a)

CREATE Table table_name(column_name column_type);

(b)

CREATE table_name(column_type column_name);

(c)

CREATE table_name(column_name column_type);

(d)

CREATE Table table_name(column_type column_name);

Answer:

Option (a)

23.

Which one of the following statements is used create a database?

(ડેટાબેઝ બનાવવા માટે નીચેનામાંથી કયા statementનો ઉપયોગ થાય છે?)

(a)

CREATE db databasename

(b)

CREATE DATABASE databasename

(c)

CREATE databasename

(d)

DATABASE create databasename

Answer:

Option (b)

24.

Which function opens a new connection to the MySQL server?

(કયું ફંકશન MySQL સર્વર સાથે નવું કનેક્શન ઓપન છે?)

(a)

mysql_new()

(b)

mysql_connect()

(c)

mysql_create

(d)

mysql_open

Answer:

Option (b)

25.

Which function is used to change the default database for the connection?

(કનેક્શન માટે ડિફોલ્ટ ડેટાબેસને બદલવા માટે કયા ફંક્શનનો ઉપયોગ થાય છે?)

(a)

mysql_db()

(b)

mysql_choose_db()

(c)

mysql_select_db()

(d)

mysql_default_db()

Answer:

Option (c)

26.

Which function is executes a query on a MySQL database?

(MySQL ડેટાબેઝ પર ક્વેરી execute કયું ફંકશન કરે છે?)

(a)

mysql_query()

(b)

mysql_qry()

(c)

query_mysql()

(d)

qry_mysql()

Answer:

Option (a)

27.

Which one of the following is not a function to access the result generated in PHP.

(PHP માં જનરેટ થયેલ રીઝલ્ટને એક્સેસ કરવા માટે નીચેનામાંથી કયું ફંકશન વપરાતું નથી.)

(a)

mysql_fetch_row

(b)

mysql_fetch_result

(c)

mysql_fetch_assoc

(d)

mysql_fetch_array

Answer:

Option (b)

28.

If you want to access the result generated by query using numeric index which method can be used

(જો તમે ન્યૂમેરિક indexની મદદથી ક્વેરી દ્વારા જનરેટ કરેલા રિઝલ્ટને એક્સેસ કરવા માંગતા હોવ તો કઈ મેથડનો ઉપયોગ કરી શકાય છે.)

(a)

mysql_fetch_row

(b)

mysql_fetch_result

(c)

mysql_fetch_assoc

(d)

mysql_fetch_numeric

Answer:

Option (a)

29.

If you want to access the result generated by query using string index which method can be used

(જો તમે સ્ટ્રિંગ indexની મદદથી ક્વેરી દ્વારા જનરેટ કરેલા રિઝલ્ટને એક્સેસ કરવા માંગતા હોવ તો કઈ મેથડનો ઉપયોગ કરી શકાય છે.)

(a)

mysql_fetch_row

(b)

mysql_fetch_result

(c)

mysql_fetch_assoc

(d)

mysql_fetch_numeric

Answer:

Option (c)

30.

Which function fetches a result row as an associative array, a numeric array, or both?

(કયું ફંકશન  associative એરે, numeric એરે અથવા બંને તરીકે રિઝલ્ટ row મેળવે છે?)

(a)

mysql_fetch_row

(b)

mysql_fetch_array() 

(c)

mysql_fetch_assoc

(d)

mysql_fetch_result

Answer:

Option (b)

Showing 21 to 30 out of 33 Questions