In C# please.
Create a program that will accept inputs into 25-element one-dimensional integer
array IntArray. Your program should count the duplicate numbers appeared in the list of
accepted values. Moreover, you are also tasked to display the duplicate numbers that
appeared in the list.
In C# please.
Program 1
Create a program that will accept inputs into 20-element one-dimensional integer
array CountArray. Your program should count the odd and even numbers that appeared in the list of accepted values.
Fill in the blanks in the following statements:
3-Three media access control methods used by logical multiaccess topologies include 1-----------2- ----------------- 3---------------.
4-Data link layer rules (also called ----------) specify the media access control method that is used for a particular ------------ For example, Ethernet uses -------------.
5-The ----------layer refers to the---------------------cache to determine the Media Access Control (MAC) address that is associated with the Ethernet interface on the client’s router. The client builds an ---------------frame to transport the IPv4 packet across the local medium.
6-The server compares the ------------ MAC address in the frame to the MAC address of the -------- in the server. Because it matches, the server removes the ---------------header and pushes the packet up to the -------------- layer.
7-The server examines the frame. It checks the ----------- to determine if the frame was received intact without any ----------.
design a program analysis , pseucode and flowchart for question A bank in your town updates its customers’ accounts at the end of each month. The bank offers two types of accounts: savings and checking. Every customer must maintain a minimum balance. If a customer’s balance falls below the minimum balance, there is a service charge of $10.00 for savings accounts and $25.00 for checking accounts. If the balance at the end of the month is at least the minimum balance, the account receives interest as follows: * Savings accounts receive 4% interest. * Checking accounts with balances of up to $5,000 more than the minimum balance receive 3% interest; otherwise, the interest is 5%.
Part 1
The volume of a sphere is 4/3πr3, where π has the value of "pi" given in Section 2.1 of your textbook. Write a function called print_volume (r) that takes an argument for the radius of the sphere, and prints the volume of the sphere.
Call your print_volume function three times with different values for radius.
Include all of the following in your Learning Journal:
The code for your print_volume function.
The inputs and outputs to three calls of your print_volume.
Part 2
Write your own function that illustrates a feature that you learned in this unit. The function must take at least one argument. The function should be your own creation, not copied from any other source. Do not copy a function from your textbook or the Internet.
Include all of the following in your Learning Journal:
The code for the function that you invented.
The inputs and outputs to three calls of your invented function.
A description of what feature(s) your function illustrates.
Number of registrants Fee per person
1 through 4 R100.00
5 through 10 R 80.00
11 or more R 60.00
Complete the program below.
#include <iostream> using namespace std; int main()
{
// Question 4.1 (2)
// Declare a variable to hold the number of registrants and a
// variable to hold the amount a company owes for a seminar
Write a C++ Program that input into 1-D array of 15 values. It fill the array then draw the bars one by one of the histogram.
How to do login of username and password from file handling.
How to transfer data from Jlist of one frame to JTable of another frame using GUI.
A man walks 7 km in 2 hours and 2 km in 1 hour in the same direction.a) What is the man's average speed for the whole journey?Create a program that will automatically compute for the man’s average speed. Use function in designing the program. The formula on how to get the speed is speed = distance / time