The manager of the company has informed his assistant to enter the age of all the workers working in production department. Among all he has to find the employee with minimum age employee. Help the manager to find the minimum age employee by storing the all age of all employeesin 1D array. Use functions to solve this task.
how to use the arraylist to record the module details in student class?
write a program to implement reversal of a string using stack data structure in list of numbers
4.The system verify the username and password. If wrong username,
please show the error message: Wrong username, please check and the re-enter your username. If wrong password,
please show the error message: Wrong password, please check and re-enter your password.
Display message to ask the user input
User name and password validation
Display the error message.
use of loop so user could re-enter the username/password when wrong input
If successful login, display the summary of the student
Correct format
Full set of details included as shown in the example
display of modules details
calculation of average mark, average attendance, grade conversion and correct display of remark message
write methods to make a bloom filter and and and look up elements in the bloom filter
3.
1 student who passes all modules exam and attendance,
1 student who passes all modules exam but fails some attendance,
1 student who fails some module exam but pass all modules attendance,
1 student who fails some modules in both exam and attendance
use array to record the 4 student profiles
2.
In the main , ask the user for the inputs: student ID, student name, password, study mode, the name of programme the student has registered, the current level of the programme, number of modules they have enrolled in the current term, the module codes and names, attendance of each module and exam mark of each module for each student profile.
Display message to ask user inputs
use of Scanner for all inputs:
output format display:
student Name: Florence Cheng
Student id:10010005
Study mode: Part time
programme:
higher diploma in Computer Technology
Cerrent Level: Year 1
Number of modules take by the term : 4
Code Attendance Exam Mark Grade
cs101 100% 80 HD
cs102 69% 71 D
Average Mark:
Average attendance:
Final Grage:
Remark: you need to retake some modules.
1.Create a Student Class to store the profile data including: student ID, student name, password, study mode.......
Create a Student class
Variables to store in profile data
Use array list to record the module details (module code, module name, mark, and attendance)
setter for each variable in the Student class with data validation
getter for each variable in the Student class
constructor for the Student class
1. Provide a function which takes two lists and shuffles them. This shuffling should go in an alternating way. First node from first list, second node front second list, third node front first list, 4th node front second list……. So on. If length of list 1 is greater than size of list 2, start again from the first node and follow the same procedure.
Using a do-while loop, re-implement the calculator program that we implemented in class. But, instead of using switch cases to detect the operand, you should use vector<char> to store operands(e.i ‘+’, ‘-’ etc) and process it when the user enters an expression to be evaluated. Your program should be able to process the following inputs: 5+5, 12*13, 12/6, etc.