Reference no: EM13778634
1. Determine the output displayed when the button is clicked.
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim nums() As Integer = {3, 5, 8, 10, 21}
Dim total As Integer = 0
For Each num As Integer In nums
If (num Mod 2 = 0) Then
total += 1
End If
Next
txtOutput.Text = total & " even numbers"
End Sub
2. Determine the output displayed when the button is clicked. Assume the five lines of the file Dates.txt contain the numbers 1492, 1776, 1812, 1929, and 1941 and the file is in the appropriate folder.
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim dates() As String = IO.FilereadAllLines("Dates.txt")
Dim total As Integer = 0
For Each yr As String In dates
If (CInt(yr) >= 1900) Then
Total += 1
End If
Next
txtOutput.Text = total & " 20th-century dates"
End Sub
3. Identify the errors in the following program segment.
Dim nums() As Integer = {1, 2, 3)
For Each num as Integer In nums
Num += 100
Next
MessageBox.Show(CStr(nums.Sum)
4. Determine the output displayed when the button is clicked:
Structure College
Dim name As String
Dim stat As String
Dim yearFounded As Integer
End Structure
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim school As College
school.name = "USC"
school.state = "CA"
school.yearFounded = 1880
‘Now.Year is the current year
Dim age As Integer = Now.Year - school.yearFounded
txtOutput.Text = school.name & " is " & age & "years old."
End Sub
5. Write a program using the file Baseball.txt that requests a team as input from a list and displays the players from that team.
The players should be sorted in decreasing order by the number of hits they had during the season. The Baseball.txt file contains data about the performance of major league baseball players during the 2009 regular season. Each record of the file contains four fields - name, team, atBats, and hits. Some lines of the file are as follows:
Aaron Hill, Blue Jays, 682, 195
Ichiro Suzuki, Mariners, 639, 225
Derek Jeter, Yankees, 634, 212
The output should look like the following:
6. Determine the errors in the following code.
Structure Vitamins
Dim a As Double
Dim c As Double
End Structure
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim minimum As Vitamins
minimum.c = 60
minimum.a = 5000
lstOutput.Items.Add(minimum)
Gender bias and sexism affect women professionally
: Describe how gender bias and sexism affect women professionally, regardless of race, ethnicity, or sexual orientation.
|
Arrays have been declared with the same data type
: As you know when two arrays have been declared with the same data type, one array can be assigned to the other. The assignment statement would look like this
|
Organizational development issues
: How might an individual employee's personality affect the performance of an organization? If the effect is negative, how might you change this?
|
Fox qualifies as a small business corporation
: How would your answer to part a change if Randall orginally organized Silver Fox Corporation, capitalizing it with $250,000 of cash and assuming Silver Fox qualifies as a small business corporation?
|
Identify the errors in the program segment
: Determine the output displayed when the button is clicked. Assume the five lines of the file Dates.txt contain the numbers 1492, 1776, 1812, 1929, and 1941 and the file is in the appropriate folder.
|
Motivating students
: A myriad of theories and conceptual models have been developed in an attempt to define and characterize individual motivation. For example, intrinsic and extrinsic motivations are conceptual models designed to describe motivational influences of i..
|
Determine the median monthly sales
: Determine the mean monthly sales, rounded to the nearest whole thousand - Determine the median monthly sales?
|
Create powerful and meaningful mission statements
: In order to create powerful and meaningful mission statements for learning organizations, we must first identify and evaluate organizational goals and intended/desired outcomes. Locate a mission statement for a school or educational organization u..
|
The different types of control systems
: What are some advantages and disadvantages of various control mechanisms? Finally, how does your organization use the steps of the control process?
|