File of Student Grades C#

Create a program that stores student grades in a text file. The file should contain the name, ID number, class taken and grade of every student. Allow the user to load a grade file and display its contents in a read-only TextBox. The entries should be displayed in the following format:

LastName, FirstName:     ID#     Class     Grade

Sample data:

Jones, Bob: 1 “Introduction to Computer Science” “A-“

Johnson, Sarah: 2 “Data Structures” “B+”

Smith, Sam: 3 “Data Structures” ‘C”

CSn 190 midterm help

so what I need help with is that it’s a 20+ page paper about how to create a virus and I need a 5 min present to do with it. I have an example of how it should be done if you need more explaining.

ITSD322U2DB

 

Assignment Description

In your own words, answer this unit’s discussion questions in a main post (recommended minimum 350 words), and respond to at least two peers’ postings (recommended minimum 100 words).

After you have reviewed the Assignment Details below, click the Discussion Board link under the My Work heading above to open the Discussion Board and make your post.

Code comments are a way to annotate computer code with helpful information aimed at future developers. Not all experts agree on how it should be used, or indeed if it should be used at all. Some employers require its use, but others are less enthusiastic, and some actively discourage it.

For this discussion, consider these ideas as well as your own reading and experiences. Then address one of the following questions in your post:

  1. “// Don’t change this line; it hurts!” Is this a useful code comment? Why or why not?
  2. If you worked with other software developers, would you appreciate comments in their code? How do you think they would benefit from comments in your code?
  3. If you managed a team of software developers, would you require them to use code comments? If so, to what degree would you have rules and procedures to follow, if any?
  4. In The Elements of Programming Style, a well-known computing study from the late 1970s, Kernighan and Plauger advocated a number of guidelines, called “lessons”, which they felt should guide software development, such as “Write clearly — don’t be too clever”, and “Avoid too many temporary variables”. One lesson was “Don’t document bad code — rewrite it”. Consider the meaning of this lesson in the context of code commenting. What does it mean to you?
  5. In recent years documentation generators have come along that can search for code comments, add them to an index, and annotate them with additional tips and cross-referencing. How might such a system be helpful or a hindrance?

SS 3

  • What are the core competencies of two competing companies and how are they similar / different?
  • What steps could each company take to improve and strengthen their core competencies to increase their current market share?

Nanotechnology in Communication

Technical Report on the title named Nanotechnology in Communication.

Note:-

Must be in APA format; please do the in-text citations.

The draft is already done. Now, please do the final report where you should be adding 5 more pages supporting and favoring the current paper attached to this question. 

It should be 10 pages long excluding the outline and reference pages.

Take Home: Excel Chapter 3 Grader Project

StepInstructionsPoint Value1Start Excel. Download and open the file named Exp19_Excel_Ch03_CapAssessment_Movies.xlsx. Grader has automatically added your last name to the beginning of the filename.
02You want to create a pie chart to show the percentage each category contributes to the monthly movie downloads.

Select the ranges A5:A10 and F5:F10. Create a pie chart and move it to a chart sheet named April Pie Chart.
63The chart needs a descriptive title that is easy to read.

Type April 2021 Downloads by Genre as the chart title, apply bold, 18 pt font size, and Black, Text 1 font color.
54Percentage and category data labels will provide identification information for the pie chart.

Add category and percentage data labels in the Inside End position. Remove value data labels and the legend. Apply 14 pt font size and Black, Text 1 font color.
55You want to focus on the comedy movies by exploding it and changing its fill color.

Explode the Comedy slice by 7% and apply Dark Red fill color.

46A best practice is to include Alt Text for accessibility compliance.

Add Alt Text: The pie chart shows percentage of downloads by genre for April 2021. (including the period)
27Next you want to create a combo chart to depict the monthly totals and percentages by category.

Display the Data sheet, select the ranges A4:A10 and F4:G10, and then create a Clustered Column – Line on Secondary Axis combo chart.
48You want to position the chart below the data source.

Cut the chart and paste it in cell A13. Change the height to 3.5″and the width to 6″.
59Change the combo chart title to April 2021 Downloads. Apply Black, Text 1 font color to the chart title.
310Axis titles will help distinguish the number and percentage of downloads.

Add a primary value axis title and type Number of Downloads. Add a secondary value axis title and type Percentage of Monthly Downloads. Apply Black, Text 1 font color to both value axis titles.
611Now that you added an axis title for each vertical axis, you can remove the legend and format the secondary value axis to display whole percentages.

Remove the legend for the combo chart. Display 0 decimal places for the secondary value axis.

112You want to add some color to the plot area for the combo chart.

Apply Light Gradient – Accent 1 gradient fill color for the plot area.
513A best practice is to include Alt Text for accessibility compliance.

Add Alt Text: The combo chart shows the number and percentage of downloads by genre for April 2021. (including the period).
214To provide a visual summary of the weekly totals for each genre, you will insert sparklines. 

Select the range B5:E11. Insert Line Sparklines in the range H5:H11. Apply Black, Sparkline Style Dark #4
1015Displaying the markers helps identify the specific points on the sparklines. You will also change the high point to a different color to stand out.

Show the high point and markers for the sparklines. Change the high point marker color to Red.
516Your last major task is to create a bar chart for weekly downloads.

Select the range A4:E10. Create a stacked bar chart. Move the chart to new chart sheet. Type Weekly Downloads for the sheet name. Apply Style 8 chart style.
1417Add a chart title above the bar chart and type April 2021Weekly Downloads by Genre.
418Increasing the font size will make the chart elements easier to read.

Apply 11 pt font size to the category axis, value axis, and the legend for the bar chart.
619Because the largest value is less than 9,000, you can reduce the maximum bound in the chart. In addition, you want to display the category labels in the same order that they are in the worksheet.

Change the maximum bounds for the value axis to 9000 and set the Major Units to 500 for the bar chart. Use the Axis Options to format the category axis so that the category labels are in reverse order in the bar chart.
520Although the bar chart displays major gridlines, minor gridlines could improve the appearance.

Add primary minor vertical gridlines to the bar chart.
021A best practice is to include Alt Text for accessibility compliance for the bar chart.

Add Alt Text: The stacked bar chart shows downloads by each week for each genre. (including the period).
422Insert a footer with Exploring Series on the left, the sheet name code in the center, and the file name code on the right on all the sheets. Change to Normal view.
423Save and close Exp19_Excel_Ch03_CapAssessment_Movies.xlsx. Exit Excel. Submit the file as directed.
0

Write an assembly program

  

Write an assembly program that will read in a person’s name and then print it in lastname, firstname [middle name] order. The notation [middle name] means zero or more middle names. For example, using an input of: John James Smith.

You will print Smith, John James You will need to write a procedure that will read in characters until the enter key is pressed. Store the characters in an array of characters defined in your data segment. As you read the characters you will need to count the number of characters entered by the user, this may also be stored in a data segment variable. The maximum length of a name will be 80 characters.You will then need to start at the right end of the name and search backwards for a blank. At this point you can now print out the last name a comma and go back to the beginning of the array and print the rest of the name.Make sure to properly test your program before submitting it. You should test single names such as Rihanna, no name (hit enter key immediately), names with no middle name, and also multiple middle names.

Cryptography – DES

Evaluate the history of the Data Encryption Standard (DES) and then how it has transformed cryptography with the advancement of triple DES. 

500 words 

You must use at least one scholarly resource 

APA format needed.

BI – IOT

1. Compare the IoT with the regular Internet.

2. Discuss the potential impact of autonomous vehicles on our lives.

3. Why must a truly smart home have a bot?

4. Why is the IoT considered a disruptive technology?

5. AT&T is active in smart city projects. Investigate their activities (solutions). Write a summary.

Write above five questions in APA format, In-Text citations, 5 Active most recent References, 3+ pages.