Question: Questions are related to Visual C# , please answer all of them in order to get rating. Thank you Assume that strName1 and strName2 are
Questions are related to Visual C# , please answer all of them in order to get rating. Thank you
- Assume that strName1 and strName2 are variables of type string and lblResult is a label. Write instructions to do each of the following.
- Remove all leading and trailing blanks from strName1.
- If strName1 and strName2 are equal, assign the word equal to lblResult.
- If strName1 and strName2 are equal (ignoring differences in upper and lower case), assign the word equal when ignoring case to lblResult.
- If strName1 is less than strName2, assign the words less than to lblResult.
- If strName1 is greater than strName2, assign the words greater than to lblResult.
- Assume that dblAmount is a variable of type double and txtAmount is a text box. Write instructions that will use a TryParse to convert the contents of txtAmount into a double and store it into dblAmount. If this cannot be done display a message box saying Invalid data, select the contents of txtAmount, set the focus to txtAmount, and exit the current event-procedure.
- Want are radio buttons? What are check boxes? How are they different?
- What is the CheckChanged event for a check box?
- Write a set if if statements which will look at a character variable named letterGrade and assign a value to pointValue as follows:
- A is worth 4
- B is worth 3
- C is worth 2
- D is worth 1
- All others are worth 0
- Rewrite problem 9 to use a switch statement.
- What is a listBox control? Explain each of the following properties:
- .Items collection
- .Items(n) for some integer n
- .Items.Count
- .SelectedIndex
- .SelectedItem
- .Sorted
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
