MUST BE IN C
Write a program that manages a small list of students in a university:
Student struct should contains the flowing data members (/subdata elements):
fname, lname, birthYear (ex. 1990), gpa (ex. 3.68).
Max number of characters for fname and lname is 20.
User should be prompted with a menu of options to choose from (use switch statement):
0: Exit, 1: Load data from the file, 2: Print all students' information, 3: Generate report based on GPA , 4: Add student 5: Update the file.
The above line should be printed out for the user as the menu with each option in one line. The menu should be presented to the user each time that the user wants to choose a new option.
Option 1: "students.csv" with students' information has been provided, download and place the file in your project/program directory (folder). This option needs to read the information from the file and populate an array of structures (passed to it from the main).
Opti
var startScreen = new Text("Welcome to a speed game! Click space to see the rules ", "13pt New Times Roman");
var rulesPart1 = new Text("The goal of the game is to click on every number from least to " , "11pt New Times Roman");
var rulesPart2 = new Text("greatest with your mouse. You will have the time it took to" , "11pt New Times Roman");
var rulesPart3 = new Text("complete the game at the top left corner if you decide that" , "11pt New Times Roman");
var rulesPart4 = new Text(" you want to beat your previous score, please tap" , "11pt New Times Roman");
var rulesPart5 = new Text("the F button to start the game" , "11pt New Times Roman");
var nums = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20];
function start(){
startScreen.setPosition(getWidth() / 2 - startScreen.getWidth() / 2, getHeight() / 2);
add(s
i have an assignment this Tuesday on 6 pm GMT
its is supposed to be done in pairs but I'm a foreigner in the class and don't know anybody that I can work with. please help .
P.S linked lists stacks queues trees
contact me for more info
it would take 1 hour does te time work for you
i have an assignment this Tuesday on 6 pm GMT
its is supposed to be done in pairs but I'm a foreigner in the class and don't know anybody that I can work with. please help .
P.S linked lists stacks queues trees
contact me for more info
in C++
please see the attachments to check the main instruction for this assignment.
some q/a to help it from an instructor
Operator overloading Q/A
Q: This is from the lecture but I don't really understand what's going on here:
Date d4;
//later
d4 = d1;
A: Here we can do direct assignment if we overloaded the assignment operator for the Date
Q: Assignment or copy constructor?
A:
Date d1;
Date d2 = d1;//this is a copy constructor. The same as if I said:
Date d2(d1);
//this is assignment:
Date d1, d2;
////later
d1 = d2;
Q: "But what do I add? Days? Months? Years? There is some ambiguity here. Not to overload. "
Wouldn't it do all of them?
A: If I have:
Date d;
......
d = d + 5;
Is it clear what do I add to that date d?
Q: Why is that istream and ostream?
A: in one case you enable the direct input to the Date, in other
Basically, this was done by another expert who took on way too many assignments and decided to return null on a couple of functions, effectively allowing the program to compile but not actually doing anything; thus, I ended up failing a lot of test cases.
The two functions I need fixed are public E element() and public E peek() in PriorityTree.java
I am also attaching the log text file for the test cases that were failed. Just focus on the assertion errors for element() and peek(), I'm only allowed to fix those particular methods because they're responsible for so many of the test cases.
Reference the txt file; I'm attaching all the classes (there are 3) for your reference but mainly you'll be working with PriorityTree
You're just rewriting two functions within a class so please don't charge too much
Create a program in C showing the time difference between accessing data in a sequential file and accessing data in a random-access file.
1) Use the information of minutiae (with random data) (source code and explanation in the details file).
2) Create millions of records.
3) Compute execution time using the proper instructions in C.
Create a report showing the time difference of writing millions of records, reading all the records, and accessing to 10,000 random records.
i am a first year engineering student , i have an assignment in the cs course that will be uploaded 3:00 pm sharp and should be submitted befor 3:30 pm (i am from egypt so this timing is according to egypt) so it should be solved in less than half an hour and submitted
Submission for this assignment should be in the form of
A working prototype (using Packet Tracer).
A formal report.
You are expected to make use of appropriate structure including headings, paragraphs, subsections and illustrations. All work must be supported with research and referenced using the Harvard Referencing System
Need merit in this assignment
I have to make a code for the scuba chat. I have the template for the code and I only need to make a code which control the packets on the physical layer by adding on the template.
The code has to satisty at least 2 requirements out of 4(segmentation and reassembly, medium access control, multi-hop broadcasting, reliable data transfer) to pass the assignment.
In the description, it says that I have to make a simple interface but don't think about that.