Complete the following: Dim salary As ........, age As..... O a. Integer, Double O b. Integer, String Oc. Double, Intege
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Complete the following: Dim salary As ........, age As..... O a. Integer, Double O b. Integer, String Oc. Double, Intege
Which of the following statement is free of error? O a. txtAge = age.Text O b. lblCountry.Text = Country O c. lblName = name
What does the following code do? private sub btn1_click (sender As Object, e As EventArgs) Handles btn1.click btn1.backColor = Color.Red End Sub O a. Changes the font color of btn1 to red when the button is clicked O b. Changes the background color of btn1 to red when the button is clicked Oc. Changes the background color of btn1 to red when the button is moved
The following condition is evaluated to: "Artificial Intelligence".Substring (11,4) < "inte" O a. True O b. Oc. False
What is the value of the counter x after the end of the loop? Dim xas Integer = 100 Do While x<=10 X+=1 Loop O a 10 O b. 1 O c. 100
What is the event in the following event procedure ? private sub btn1_click (sender As Object, e As EventArgs) Handles btn1.click btn1.backColor = Color.Red End Sub O a sub obbtn1.click Ocbtn1_Click