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
Exam (elaborations)

COS1512 EXAM PACK

Rating
4,5
(2)
Sold
17
Pages
105
Uploaded on
30-04-2019
Written in
2016/2017

This exam pack contains exam papers and memorandums from 2014 through to 2017. It has a total of 7 exam papers that have been compiled from UNISA model answers and tutors. Not only is this an excellent learning tool but actual questions have repeated themselves several times. This is a must have to maximize and enhance your marks.

Show more Read less

Content preview

This EXAM PACK contains the following solutions:



• COS1512 – May/ June 2014
• COS1512 – May/ June 2015
• COS1512 – Oct/ Nov 2015
• COS1512 – May/ June 2016
• COS1512 – Oct/ Nov 2016
• COS1512 – May/June 2017 P1
• COS1512 – May/June 2017 P2

, COS1512/104/2/2015
5 LAYOUT OF EXAMINATION PAPER

This section provides estimates of the marks allocated per question to different sections of the
work. You will need to know all the work which has been outlined in Tutorial Letter 101. The mark
allocation will approximately be as follows:

Question 1: +/- 4 marks: C strings
Question 2: +/- 4 marks: recursion
Question 3: +/- 5 marks: pointers
Question 4: +/- 27 marks: class definition and implementation
Question 5: +/- 10 marks: file processing
Question 6: +/- 15 marks: inheritance
Question 6: +/- 10 marks: vectors and templates

Please note that we test all the work. This outline points out the most important aspects tested in
each question.


6 PREVIOUS EXAMINATION PAPER
The examination paper which is used for this section is on myUnisa. It is the May/June 2014
examination paper. Please download the examination paper. We have only included the
memorandum for the examination.

Memorandum for May 2014 Exam




double computeBill(double price)
{
return price * 1.14;
}
double computeBill(double price, int quantity)
{
return (price * quantity) * 1.14;
}
double computeBill(double price, int quantity, double coupon)
{
double total = (price * quantity - coupon) * 1.14;
return total;
}



int main()
{
double price = 12.99;
int quantity = 10;
double coupon = 5.00;

, cout << "Amount = " << computeBill(9.99);
cout << "Amount = " << computeBill(9.99, 10);
cout << "Amount = " << computeBill(9.99, 10, 50.00);
}




Rectangle duplicate (Rectangle & rect1 , Rectangle & rect2 )
{
rect1.width = rect2.width;
rect1.height = rect2.height;
}



friend Rectangle duplicate (Rectangle & rect1, Rectangle & rect2);

duplicate (foo, bar);




3.1 SS.push_back("The number is 10"); (1)

3.2 cout << SS.size() << endl; (1)
3.3 cout << SS[2] << endl; (1)
3.4 int ii; (2)
for(ii=0 ; ii < SS.size() ; ii++)
{
cout << SS[ii] << endl;
}




4.1 if (n == 0) (1)
4.2 We are busy with recursion111 (1)




1. #include <fstream> // file i/o

2. ifstream input;

3. input.open(name);
if(!input)
{
cout << "Cannot open file " << name << " Aborting." << endl;


6

, COS1512/104/2/2015
exit (1);
}

4. while(input)

5. input.close();




The declaration int * pOne; declares pOne to be a pointer pointing to an int value. (1)
The declaration int vTwo; declares pTwo as an int value. (1)
The statement int * pThree = &vTwo; declares a pointer to an integer and initializes it with the
address of another variable of vTwo. (1)

The declaration int * q = p; declares q to be a pointer pointing to the same int to which p points.
The assignment n = *p; assigns to n the int to which p points. (2)

6.2.2 The declaration int & r = n; declares r to be a reference for the int variable n. (2)
The assignment p = &n; assigns the address of n to the pointer p.

6.3.1 123456789
6.3.2 10 1 2 3 4 5 6 7 8 9
6.3.3 0123456789




class Product
{
public:
Product();
Product(long, double, double, long);
void display();
double retailPrice();
void modify();
Product increment();
Product decrement();
private:
long id;
double price;
double markup;
long number;
};



#include <iostream>

Document information

Uploaded on
April 30, 2019
Number of pages
105
Written in
2016/2017
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

R180,00
Get access to the full document:

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

Reviews from verified buyers

Showing all 2 reviews
6 year ago

5 year ago

4,5

2 reviews

5
1
4
1
3
0
2
0
1
0
Trustworthy reviews on Stuvia

All reviews are made by real Stuvia users after verified purchases.

Get to know the seller

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.
neilgovender2020 University of South Africa (Unisa)
View profile
Follow You need to be logged in order to follow users or courses
Sold
93
Member since
6 year
Number of followers
76
Documents
11
Last sold
1 year ago

3,9

14 reviews

5
6
4
4
3
2
2
0
1
2

Trending documents

Recently viewed by you

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

Frequently asked questions