Rewrite the VB.NET code below, so that it is modularised by calling a generic module named printBlankLines, which is passed a parameter representing the number of blank lines to print.
Private Sub Button1_Click(…) Handles Button1.Click
txtOutput.Text = "Line 1 of Output"
txtOutput.Text = txtOutput.Text&vbNewline
txtOutput.Text = txtOutput.Text&vbNewline
txtOutput.Text = txtOutput.Text& "Line 2 of Output"
txtOutput.Text = txtOutput.Text&vbNewline
txtOutput.Text = txtOutput.Text&vbNewline
txtOutput.Text = txtOutput.Text&vbNewline
txtOutput.Text = txtOutput.Text&vbNewline
txtOutput.Text = txtOutput.Text&vbNewline
txtOutput.Text = txtOutput.Text& "Line 3 of Output"
End Sub
ii) Write the generic module printBlankLines in VB.NET code
iii) Draw a structure chart showing parameters indicated as dataflows.[2+5+3= 10 marks]
Write a program to find prime number between range of start number and end number.
Input
Start Number = 1
End Number = 20
Output:
Prime numbers from 1 to 20 are
1 2 3 5 7 11 13 17 19
Enter two positive integers and calculate and print out the sum of the products of each pair of digitsoccupying the same position in the two numbers.
Example:
If first number is 45 and second number is 534, then output will be 32.
(0*5 + 4*3 + 5*4 = 32)
If first number is 3445 and second number is 4534, then output will be 64
(3*4 + 4*5 + 4*3 + 5*4 = 64
Suppose the sequential file ALE.TXT contains the information shown in Table 1.1. Write a program to
use the file to produce the Table 1.2 in which the baseball teams are in descending order by the
percentage of games won. Note : A batting average can be displayed in standard form with
FormatNumber(ave, 3, vbFalse).
Suppose the sequential file ALE.TXT contains the information shown in Table 1.1. Write a program to use the file to produce the Table 1.2 in which the baseball teams are in descending order by the percentage of games won. Note : A batting average can be displayed in standard form with FormatNumber(ave, 3, vbFalse).
Suppose the sequential file ALE.TXT contains the information shown in Table 1.1. Write a program to use the file to produce the Table 1.2 in which the baseball teams are in descending order by the percentage of games won. Note : A batting average can be displayed in standard form with FormatNumber(ave, 3, vbFalse).
I need help writing a code on visual basic for "running on a particular treadmill you burn 3.9 calories per minute. create an application that uses a loop to display the number of calories burned after 10, 15, 20, 25, and 30 minutes."
Which of the following is a basic guide to action that sets the boundaries within which data management activities take place?
a.Data policy
b.Data security
c.Data access control
d.Data management