100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
COP 3014 Final Exam Question and answers rated A+ 2024 £10.85   Add to cart

Exam (elaborations)

COP 3014 Final Exam Question and answers rated A+ 2024

 3 views  0 purchase
  • Module
  • COP
  • Institution
  • COP

COP 3014 Final Exam Question and answers rated A+ 2024 COP 3014 Final Exam What operator returns the memory address of the variable? - correct answer address operator (&) char = 1 byte int = 4 bytes doubles = 8 bytes int x = 25; cout << &x << end; //outputs 0x8f05 How ...

[Show more]

Preview 2 out of 9  pages

  • September 6, 2024
  • 9
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
  • COP
  • COP
avatar-seller
COP 3014 Final Exam
What operator returns the memory address of the variable? - correct answer
✔address operator (&)


char = 1 byte
int = 4 bytes
doubles = 8 bytes


int x = 25;
cout << &x << end; //outputs 0x8f05


How are array names used as pointers? - correct answer ✔array names are
pointers, to the first element in the array


What are local and global variables? - correct answer ✔Global variables are
defined outside of the main


local variables are defined in functions


What statement causes a function to end? - correct answer ✔return 0;


What does a pointer store? - correct answer ✔memory addresses


What is the difference in statements:
cout << ptr << endl;
cout << *ptr << endl; - correct answer ✔ptr prints address

, *ptr prints value (dereferenced)


How do ++ and -- affect pointers? - correct answer ✔add or subtract bytes


char = 1 byte
int = 4 bytes
doubles = 8 bytes


What operations can be used on pointers? - correct answer ✔arithmetic
operations


How do you dynamically allocate memory? - correct answer ✔use the new
function


How do you declare pointers and allocate memory to them? - correct answer
✔int *iptr = nullptr;
iptr = new int; //requests computer to allocate enough memory for a new int
variable.


iptr contains the address of the newly allocated memory


use *iptr to assign values to dynamically allocated space


What is the null termination character for character strings? - correct answer
✔\0

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller flyhigher329. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for £10.85. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

73243 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy revision notes and other study material for 14 years now

Start selling
£10.85
  • (0)
  Add to cart