Question: Visual programming (choose the correct answer) 19 According to the following figure for Student table 1 ID dbo.Student: Tabl...CTDATABASE 1.MDF) x Form1.Designer.cs Column Name Data
Visual programming (choose the correct answer)


19 According to the following figure for Student table 1 ID dbo.Student: Tabl...CT\DATABASE 1.MDF) x Form1.Designer.cs Column Name Data Type Allow Nulls int Name nchar(10) Tel nchar(10) Address nchar(10) DO Then The following C# code will add a new record to the Student table SqlCommand command = new SqlCommand(); command.Connection = conn; command.CommandText = "insert into Student values (55, 'Ali', '979797979', 'Amman')"; Command.ExecuteNonQuery(); O True O False 20 1 Assume you have a method Sort. Grades that receives array of grades to be sorted. If you need to invoke this method from outside the class, then which one the following represents the declaration of this method? private void Sort_Grades (int[] grades) public void Sort_Grades (int gl, int g2, int g3) public void Sort_Grades() public void Sort_Grades (int[]grades)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
