.Net Programming (3340704) MCQs

MCQs of Inbuilt Functions and Database access using ADO.NET

Showing 31 to 30 out of 40 Questions
31.
To perform Insert,Update and Delete Command which method is used ?
Insert,Update અને Delete કમાંડ પરફોર્મ કરવા માટે કઈ મેથડ નો ઉપયોગ કરવામાં આવે છે ?
(a) ExecuteNonQuery
(b) ExecuteReader
(c) ExecuteScaler
(d) ExecuteQuery
Answer:

Option (a)

32.
Default timeout for SqlCommand.Command timeout property
SqlCommand.Command ની timeout પ્રોપર્ટી નો ડીફોલ્ટ ટાઈમ આઉટ કેટલો હોય છે ?
(a) 10 Seconds
(b) 20 Seconds
(c) 30 Seconds
(d) 40 Seconds
Answer:

Option (c)

33.
In a connection string, ______________ represents name of the database
કનેક્શન સ્ટ્રીંગ માં __________ ડેટાબેઝ નું નામ દર્શાવે છે
(a) Data Source
(b) Initial Catalog
(c) Catalog Initial
(d) Database
Answer:

Option (b)

34.
Which of the following is not DataReader Method ?
નીચે ના માંથી કઈ DataReader ની મેથડ નથી ?
(a) NextResult
(b) GetName
(c) GetValue
(d) GetDataType
Answer:

Option (d)

35.
Which of the following is not DataAdapter Method ?
નીચે ના માંથી કઈ DataAdapter ની મેથડ નથી ?
(a) Fill
(b) FetchData
(c) Update
(d) FillSchema
Answer:

Option (b)

36.
The data is stored in a Microsoft SQL Server database on a server named Admin and the Database name is Diploma. You connect to Diploma by using Windows authentication mode.You use a SqlConnection object to connect to the database. Then which is the correct connection string from below ?
Microsoft SQL Server પ્રકારના Admin નામ ના સર્વર પર ડેટા સ્ટોર થયેલો છે અને તે ડેટાબેઝ નું નામ Diploma છે.Diploma સાથે કનેક્ટ થવા માટે Windows authentication મોડ નો ઉપયોગ કરવાનો છે.ડેટાબેઝ સાથે કનેક્ટ થવા માટે SqlConnection ઓબ્જેક્ટ નો ઉપયોગ કરવામાં આવે છે.તેના માટે નીચે ના માંથી કઈ કનેક્શન સ્ટ્રીંગ સાચી છે ?
(a) Data Source=Admin\SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=True
Data Source=Admin\SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=True
(b) Data Source=Admin/SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=True
Data Source=Admin/SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=True
(c) Data Source=Admin\SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=False
Data Source=Admin\SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=False
(d) All of the Above
ઉપરના બધા
Answer:

Option (a)

37.
How to create connection object in Sql Server ,which one is correct ?
Sql Server માં connection ઓબ્જેક્ટ કેવી રીતે create થાય છે, નીચે ના માંથી કયું સ્ટેટમેન્ટ સાચું છે ?
(a)
Dim objConnection As New SqlConnection("Data Source = GTU\SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=True”)
Dim objConnection As New SqlConnection(“Data Source=AAKASH\SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=True”)
(b)
Dim objConnection As New SqlConnection()
objConnection.ConnectionString = "Data Source=GTU\SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=True”
Dim objConnection As New SqlConnection()
objConnection.ConnectionString = “Data Source=AAKASH\SQLEXPRESS;Initial Catalog=Diploma;Integrated Security=True”
(c) Both A and B
A અને B બંને
(d) None of the above
ઉપરના માંથી એક પણ નહિ
Answer:

Option (c)

38.
Which properties are used to bind a DataGridView control?
DataGridView કંટ્રોલ ને bind કરવા માટે કઈ પ્રોપર્ટી નો ઉપયોગ કરવામાં આવે છે ?
(a) DataBind
(b) FetchData
(c) CollectSource
(d) DataSource
Answer:

Option (d)

39.
The data is stored in a Microsoft SQL Server database on a server named Admin and the Database name is Diploma. There is one GridView control on the form that you want to fill with table name StudentDetail. Suppose that SqlConnection object is con , SqlDataAdapter object is sda, DataTable object is dt and Name of the grid control is dgstudent . Which of the following code will fill the grid successfully from the database ?
Microsoft SQL Server પ્રકારના Admin નામ ના સર્વર પર ડેટા સ્ટોર થયેલો છે અને તે ડેટાબેઝ નું નામ Diploma છે.ફોર્મ પર એક ગ્રીડવ્યુ કંટ્રોલ આવેલો છે જેને StudentDetail નામ ના ટેબલ ની ઇન્ફોર્મેશન થી ફિલ કરવાની છે.ધારો કે SqlConnection ના ઓબ્જેક્ટ નું નામ con, SqlDataAdapter ના ઓબ્જેક્ટ નું નામ sda,DataTableન ના ઓબ્જેક્ટ નું નામ dt અને ગ્રીડ કંટ્રોલ નું નામ dgstudent છે.તો નીચે લખેલા કોડ માંથી કયો કોડ ડેટાબેઝ માંથી ગ્રીડ માં ડેટા successfully ડિસ્પ્લે કરશે ?
(a)
Dim con As SqlConnection = New SqlConnection("Data Source=ABCD\SQLEXPRESS;Initial  Catalog=Degree;Integrated Security=True")
con.Open()
Dim selectquery As String = "Select * from StudentDetail"
Dim sda As SqlDataAdapter = New SqlDataAdapter(selectquery, con)
Dim dt As DataTable = New DataTable() sda.Fill(dt)
dgStudent.DataSource = dt 
Dim con As SqlConnection = New SqlConnection("Data Source=ABCD\SQLEXPRESS;Initial  Catalog=Degree;Integrated Security=True")
con.Open()
Dim selectquery As String = "Select * from StudentDetail"
Dim sda As SqlDataAdapter = New SqlDataAdapter(selectquery, con)
Dim dt As DataTable = New DataTable() sda.Fill(dt)
dgStudent.DataSource = dt
(b)
Dim con As SqlConnection = New SqlConnection(""Data Source=Admin\SQLEXPRESS;Initial  Catalog=Diploma;Integrated Security=True")
con.Open()
Dim selectquery As String = "Select * from StudentDetail"
Dim sda As SqlDataAdapter = New SqlDataAdapter(selectquery, con)
Dim dt As DataTable = New DataTable() sda.Fill(dt)
dgStudent.DataSource = dt
Dim con As SqlConnection = New SqlConnection("Data Source=Admin\SQLEXPRESS;Initial  Catalog=Diploma;Integrated Security=True")
con.Open()
Dim selectquery As String = "Select * from StudentDetail"
Dim sda As SqlDataAdapter = New SqlDataAdapter(selectquery, con)
Dim dt As DataTable = New DataTable() sda.Fill(dt)
dgStudent.DataSource = dt
(c)
Dim con As SqlConnection = New SqlConnection("Data Source=Localhost\SQLEXPRESS;Initial  Catalog=Diploma;Integrated Security=True")
con.Open()
Dim selectquery As String = "Select * from Student_Detail"
Dim sda As SqlDataAdapter = New SqlDataAdapter(selectquery, con)
Dim dt As DataTable = New DataTable() sda.Fill(dt)
dgStudent.DataSource = dt
(d)
Dim con As SqlConnection = New SqlConnection("Data Source=Localhost\SQLEXPRESS;Initial  Catalog=Diploma;Integrated Security=True")
con.Open()
Dim selectquery As String = "Select * from Faculty_Detail"
Dim sda As SqlDataAdapter = New SqlDataAdapter(selectquery, con)
Dim dt As DataTable = New DataTable() sda.Fill(dt)
dgStudent.DataSource = dt
Answer:

Option (b)

40.
When a project is built it creates _____ and _____ file under bin directory
જયારે પ્રોજેક્ટ built થાય છે ત્યારે તે bin directory માં ______ અને _____ ફાઇલ create કરે છે
(a) .exe, .sln
(b) .dll, .sln
(c) .exe, .dll
(d) All of the Above
ઉપરના બધા
Answer:

Option (c)

Showing 31 to 30 out of 40 Questions