Write a program that prompts the user to enter two characters
and display the corresponding major and year status. The first
character indicates the major. And the second character is a number
character 1, 2, 3, 4, which indicates whether a student is a
freshman, sophomore, junior, or senior. We consider only the
following majors: B (or b): Biology C (or c): Computer Science I
(or i): Information Technology and Systems M (or m): Marketing H
(or h): Healthcare Management...
23.2 PROJECT 2 : Data Visualization using LOOPS (python)
This program will display a set of authors and the number of
novels written by each author in both a table and a histogram. You
will ask the user for all of the information. Using what you
learned about incremental development, use the following approach
to create your program:
Prompt the user for the information about the table. First, ask
for the title of this data set by prompting the user...
The following table
provides the project annual budget, total number of projects, and
total number of people working on the projects for City of
Killingcovid annually:
Year
Annual
Budget
(in
millions)
Number of
Projects
Number of
People Working on the Projects
1997
9.93
2
6
1998
7.34
8
47
1999
6.82
4
134
2000
7
2
291
2001
7.31
7
279
2002
7.86
6
82
2003
8.44
4
65
2004
7.61
5
34
2005
7.8
1
14
2006
8.6
4...
JAVA
Project: Student Major and status
Problem Description: Write a program that prompts the user to
enter two characters and displays the major and status represented
in the characters. The first character indicates the major and the
second is a number character 1, 2, 3 or 4, which indicates whether
a student is a freshman, a sophomore, junior or senior. Suppose the
following characters are used to denote the majors:
M: Mathematics
C: Computer Science
I: Information Technology
Here is...