Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Starting Out With Visual Basic
Quiz 4: Making Decisions
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
Which of the following code segments assigns the string "Great Year" to the Text property of a label named lblMessage when the value in the variable decSales is either greater than 50,000 or equal to 50,000?
Question 2
Multiple Choice
What value will be assigned to intIndex when the following statements execute? Dim strTarget As String = "asdsakfljfdgasldfjdl" Dim intIndex = strTarget.IndexOf"as", 1, 10)
Question 3
Multiple Choice
Which statement assigns the string strAddress to label lblAddress while removing only trailing spaces?
Question 4
Multiple Choice
Which function accepts a string as its argument and returns True if the string contains only numeric digits?
Question 5
Multiple Choice
Because only one radio button in a group can be selected at any given time, they are said to be ____.
Question 6
Multiple Choice
Suppose you want to determine whether a variable, decPayAmount, is between 1200 and 1400, inclusively. If it is, you want to set lblMessage text to "Pay amount is in the range". Which of the following code segments will accomplish this?