Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4,6 TrustPilot
logo-home
Document preview thumbnail
Preview 2 out of 7 pages
Exam (elaborations)

COS1512 Assignment 3 |COMPLETE ANSWERS| Semester 2 2025 - DUE 4 August 2025

Document preview thumbnail
Preview 2 out of 7 pages

COS1512 Assignment 3 |COMPLETE ANSWERS| Semester 2 2025 - DUE 4 August 2025; 100% TRUSTED Complete, trusted solutions and explanations.

Content preview

, COS1512 Assignment 3
Semester 2 2025
DUE 4 August 2025
Use this document as a guide and for references to answer your assignment

Question 1

Write a program that asks a user to enter the size of a dynamic array that stores exam marks obtained
by students. Create the dynamic array and a loop that allows the user to enter an exam mark into each
array element. Loop through the array, find the average mark for the exam and output it. Delete the
memory allocated to your dynamic array before exiting your program.

✅Program Objective

 Ask the user to enter the size of a dynamic array for exam marks.
 Use a loop to populate the array.
 Calculate and output the average mark.
 Free the dynamically allocated memory before exiting.



�C++ Program:

#include <iostream>
using namespace std;

int main() {
int size;
cout << "Enter the number of students: ";
cin >> size;

// Allocate memory dynamically
float* marks = new float[size];

// Input exam marks
for (int i = 0; i < size; ++i) {
cout << "Enter mark for student " << i + 1 << ": ";
cin >> marks[i];
}

// Calculate average

Connected book
 image
Publisher: 2018 ISBN: 9781788834162 Edition: Unknown

Document information

Uploaded on
August 4, 2025
Number of pages
7
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
R45,63

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
SparkHubIdeas
4,0
(5)
Sold
61
Followers
0
Items
240
Last sold
3 days ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can immediately select a different document that better matches what you need.

Pay how you prefer, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card or EFT and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions