Let a linked list consists of n number of nodes, where each node consists of a unique
number, a priority number (in between 1 to 5), and pointer to next node. Design the
algorithm/develop pseudocode to divide the nodes into different linked list where
each linked consists of nodes having same priority.
Create a program in python that will accept a name of a student and subject final grades. Number of subjects will be 5, name of subjects are English, Math, Filipino, MAPEH and Science.
The program must print the name of the student, the results per subject and the average of the 5 subjects. The final grades are all integers but the average is not.
Sample Run:
Name of Student: Ramoncito Dealca
English Exam Result: 89
Math Exam Result: 97
Filipino Exam Result: 88
Science Exam Result: 98
MAPEH Exam Result: 86
Student Name Ramoncito Dealca
Score in English: 89
Score in Math: 97
Score in Filipino: 88
Score in Science: 98
Score in MAPEH: 86
Average: 91.60
Make a program which accepts a 3 digit number from user and check & confirms whether it is
an Armstrong number or not. Proper message should be displayed as the result.
Interface should be attractive and Numbers should be between 100 - 999.
Armstrong number of 3 digits, the sum of cubes of each digit is equal to the number itself.
Create a console application for a club to record their member information. For each member to need to store the member’s name and merit points. All new members starts with 0 merit points. Implement class Member which has private attributes for Name and Points. You need to create at a constructor method and the class also needs to have the following methods: public string getName() //Returns the name of the member public int getPoints() //Returns the points of the member public void setPoints(int P) //Sets the points of the member In the application class (main method in the program.cs file), do the following: Create two instances of Member, for John and Susan Assign merit points to each of them Use an if statement to display the name of the member with the highest points.
Create a windows application for a library which will request the user to input the number of books checked out and the number of days they are overdue. Your program should then calculate and displays the library fine, which is 20 cents per book per day for the first seven days a book is overdue, then 50 cents per book per day for each additional day.
Note: when submitting your solution to this task, you will also need to include an image of your form (interface) design.
Write a code to find out the sum of the sequence 2 -4 6 -8 10 -12.... while the last value will be determined from input. Use a loop to solve the problem.
Our users do not want to have to re-enter the price levels each time the app starts.
Therefor, we need to save the price levels to a file on disk – called levelsFile - and populate the levelsList with the file’s items when the app starts.