Posted: March 3rd, 2022
ASSIGNMENT QUESTION
PURPOSE
The purpose of this assignment is to develop data structures using C language to solve a given problem and demonstrate the implementation of appropriate data structure features with suitable test data and output.
PART I / BAHAGIAN I
REQUIREMENT
Question 1
You are required to write a C program that will input the number of students and reserve the memory space dynamically. You need to store the student’s name, ID and Culmulative Grade Point Average (CGPA) together as one unit. In order to do this, you must use a structure data type.
Next, you must declare ptr as a pointer of struct student * type (that can point to the location of struct student type) as shown below:
struct student *ptr;
Then, use a linked list data structure to store the student information in nodes and link them. You can use the operator - to access the data in the structure through ptr.
Finally, your program should count and display the average cgpa entered for the n students. The linked list must be sorted by students’ name in ascending order before it is displayed to the user. The sample output is shown below:
The assessment will be done based on the following criteria:
i. A proper writing of C codes: structure, efficiency and modular.
ii. The readability, consistency, naming and user interface
iii. Robustness and testing
iv. Complete documentation and correct submission.
Note: You MUST write C programming codes for this assignment. Codes written in C++ will not be accepted.
You are required to submit:
1. Documentation file (*.doc/*.docx) that contains introduction, description of problem, program listing and its comments and print screen of the program output.
2. Source file (*.c)
(50 marks)
Who Writes College Essays, Research Papers, and Dissertations For Students?
We handpick every writer with care, ensuring they bring the perfect mix of academic qualifications and writing skills for top-notch results in essays, research papers, and dissertation help. Each one has a university degree, more than a third with Masters certification; they’ve tackled tough tests and training to excel in thesis writing and research paper assignments at any time. They’ll team up with you diligently, keeping things easy and stress-free as they relate to being immediate students. That’s what makes us the best assignment help website for "help me write my essay, research paper, or dissertation" for college coursework. Trust our team—professional research essay writers and editors—to deliver your dissertation or thesis writing within your grading criteria and deadline.
ATTACHMENT
ASSIGNMENT RUBRICS
CBDS2103 DATA STRUCTURE/ JAN 2022
*QN CLO Criteria
Weight Excellent Good Fair Poor Unsatisfactory Max Marks
4 3 2 1 0
1 2 Declaration of structure, pointer and linked list structure
Structure, Efficiency and Modular:
• Codes are clear, logical, control structure used correctly.
• Most appropriate programming structures (selection, repetition, files) are used
• Functions are modular and increases programming clarity 2.5 Met the requirements of the criteria.
Mostly met the requirements of the criteria but it can be improved further.
Basic/ minimally met the requirements of the criteria.
Poorly met the requirements of the criteria.
Did not meet criteria at all OR wrong answer was given.
10
1 2 Linked list manipulation: Insert and Traverse List
Structure, Efficiency and Modular:
• Codes are clear, logical, control structure used correctly.
• Most appropriate programming structures (selection, repetition, files) are used
• Functions are modular and increases programming clarity 2.5 Met the requirements of the criteria.
Mostly met the requirements of the criteria but it can be improved further.
Basic/ minimally met the requirements of the criteria.
Poorly met the requirements of the criteria.
Did not meet criteria at all OR wrong answer was given.
10
1 2 Sorting the linked list in ascending order of student name
Structure, Efficiency and Modular:
• Codes are clear, logical, control structure used correctly.
• Most appropriate programming structures (selection, repetition, files) are used
• Functions are modular and increases programming clarity 2.5 Met the requirements of the criteria.
Mostly met the requirements of the criteria but it can be improved further.
Basic/ minimally met the requirements of the criteria.
Poorly met the requirements of the criteria.
Did not meet criteria at all OR wrong answer was given.
10
1 2 Readability, consistency, naming and user interface:
• Coding style, easy to read and maintain.
• Consistent and proper naming.
• Screen based instruction and final output are clear, correct and attractive. 2.5 Met the requirements of the criteria.
Mostly met the requirements of the criteria but it can be improved further. Basic/ minimally met the requirements of the criteria. Poorly met the requirements of the criteria.
Did not meet criteria at all OR wrong answer was given. 10
1 2 Robustness and Testing
• Ability of the program to be compiled and executed
• The program can handle erroneous or unexpected input
• Complete without being redundant, all test cases are considered
• Determination process based on the input. Correct technique must be chosen and shown in this part
• Displaying all output as required 1.25 Met the requirements of the criteria. Mostly met the requirements of the criteria but it can be improved further. Basic/ minimally met the requirements of the criteria. Poorly met the requirements of the criteria. Did not meet criteria at all OR wrong answer was given. 5
1 2 Complete documentation and correct submission:
• Cover page of assignment
• Introduction, description of problem
• Copy of codes
• Several screenshots with various input and output
• Submission of C source file in extension .c 1.25 Met the requirements of the criteria. Mostly met the requirements of the criteria but it can be improved further. Basic/ minimally met the requirements of the criteria. Poorly met the requirements of the criteria. Did not meet criteria at all OR wrong answer was given. 5
Total 12.5 50
*QN = Question Number
-----------
PURPOSE OF ASSIGNMENT QUESTION
The goal of this assignment is to create data structures in C to address a specific problem, as well as to demonstrate the implementation of relevant data structure features using appropriate test data and output.
Do You Offer Thesis Writing and Dissertation Help In Any Citation Style?
No matter what citation style you need for your research paper or dissertation, our skilled writers have you covered! We provide thesis writing and dissertation help in formats like APA, AMA, MLA, Turabian, Harvard, IEEE, and more. We’re dedicated to customizing your order to the exact guidelines of your chosen style, ensuring it fits your unique academic needs—whether it’s a dissertation, research paper, or essay for a specific course. We’ve got the flexibility to make it work for you!
BAHAGIAN I PART I
REQUIREMENT
Can I Change Instructions for Dissertation Help or Thesis Writing After Ordering?
You can absolutely reach out to your academic writer using our simple, user-friendly chat feature. It’s there so you can add details, clarify instructions, or tweak adjustments for editing your research paper or dissertation according to your grading rubric—even after you’ve submitted "help me with thesis writing or dissertation help" and they’ve started working on your project.
Question No. 1
You must create a C program that takes the number of students and dynamically reserves memory space. You must save the student's name, ID, and cumulative grade point average (CGPA) as a single unit. You must utilize a structural data type to accomplish this.
Then, as shown below, declare ptr as a pointer of struct student * type (that can point to the location of struct student type):
*ptr; struct student
Then, employ a