SlideShare una empresa de Scribd logo
1 de 3
HELPIDO.COM
CLICK HERE TO GET THE SOLUTION !!!!!!!!



COMP/220 iLab 5 of 7 - C++ Course

iLab 5 of 7: Pointers and Pointer Operations

iLAB OVERVIEW

Scenario and Summary

This lab will explore the use of pointers in several ways. Pointers will be used to dynamically allocate
memory for new class objects on demand from the user, and they will be used to access class-
member functions. Pointer arithmetic will be used to access and sort class objects according to
criteria explained in the lab.

Pointers are, essentially, address variables, or variables that hold as their value the address of other
variables. In terms of memory management, they are very powerful devices, and they more closely
and efficiently use the actual internal hardware registers of the microprocessor that the program
operates on.

Pointers also have the requirement that the pointer type must be of the same data type as the
variable, or the data that it points to or holds the address of. The power of pointers also hints at the
potential complexity of their use, which is why this lab is focused almost entirely on several different
aspects and uses of pointers. The lab also introduces pointer arrays and pointers to pointers.

The Resistor class created in the Week 2 lab will be used as the class that the pointer operations will
be used upon. The lab also requires the use of accessor functions and static data members, which
may need to be added to the Resistor class definition and implementation.

Deliverables

1.         Submit a single Notepad file containing the source code for all the files of the lab to the
Dropbox for Week 5. Your source code should use proper indentation and be error free. Be sure that
your last name and the lab number are part of the file name: for example, YourLastName_Lab5.txt.



Each program should include a comment section that includes, at a minimum, your name, the lab
and exercise number, and a description of what the program accomplishes.

2.       Submit a lab report (a Word document) containing the following information to the
Dropbox for Week 5.

o         Include your name and the lab or lab-exercise number.

o          Specification: Include a brief description of what the program accomplishes, including its
input, key processes, and output.
o          Test Plan: Include a brief description of the method you used to confirm that your
program worked properly. If necessary, include a clearly labeled table with test cases, predicted
results, and actual results.

o         Summary and Conclusions: Write a statement summarizing your predicted and actual
output, and identify and explain any differences. For conclusions, write at least one nontrivial
paragraph that explains, in detail, either a significant problem you had and how you solved it or, if
you had no significant problems, something you learned by doing the exercise.

o         A UML diagram: This should show all classes, class members, access specifiers, data
types, and function arguments, along with any and all class-to-class relationships.

o         Answers to Lab Questions: Answer any and all lab questions included in the lab steps.

Each lab exercise should have a separate section in the lab-report document.

Your lab grade will be based upon

1.        the formatting of your source code;

2.        the use of meaningful identifiers;

3.        the extent of internal documentation;

4.        the degree to which an exercises’ specifications are met; and

5.        the completeness of your lab report.



iLAB STEPS

STEP 1: Create a Multifile Project



Create a new multifile project using the Resistor class developed in Week 1, and include a new
main() test function.

STEP 2: Modify the Resistor-Class Definition

1.        Add a static data member of the class Resistor to keep track of the number of Resistor
objects that are dynamically created. This will also be used to limit the number of objects that are
dynamically created to the maximum array size of the pointer array in the test function main().

2.         In the Resistor constructor, use a random-number generator to randomly assign a
nominal resistance value to the object between 1,000 and 10,000 ohms. The resistance values are
not required to be standard resistance values.

STEP 3: Create the Test Function Main() and the Support Function

1.        Create an array of pointers of type Resistor.

2.         Use elements of the pointer array to allow the user to dynamically allocate memory and to
instantiate objects of the Resistor class.
3.      Use the indirect member-selection operator (pointer) in the test routine to access function
members of the Resistor class.

4.        Write a new, nonclass function called in function main() to sort the pointers to the
Resistor objects in order from lowest nominal resistance value to highest, passing a pointer to the
Resistor-object pointer as the only passed data argument.

5.         Display the sorted Resistor objects according to the nominal resistance value, from lowest
to highest.

6.         Within the sorting function, use pointer arithmetic to access the individual Resistor
objects.

7.         Function main() should also ensure that there are no memory leaks when the program
ends.


CLICK HERE TO GET THE SOLUTION !!!!!!!!

Más contenido relacionado

Destacado

April 15 Newsletter Final
April 15 Newsletter FinalApril 15 Newsletter Final
April 15 Newsletter Final
Trevor Pickup
 
Nikky_Reference Letter
Nikky_Reference LetterNikky_Reference Letter
Nikky_Reference Letter
Nikky Starrett
 
Appreciation letter
Appreciation letterAppreciation letter
Appreciation letter
Adil Pervaiz
 

Destacado (7)

Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7
 
April 15 Newsletter Final
April 15 Newsletter FinalApril 15 Newsletter Final
April 15 Newsletter Final
 
Nikky_Reference Letter
Nikky_Reference LetterNikky_Reference Letter
Nikky_Reference Letter
 
Особливості дієтотерапії функціональних колік та діарей у дітей раннього віку
Особливості дієтотерапії функціональних колік та діарей  у дітей раннього вікуОсобливості дієтотерапії функціональних колік та діарей  у дітей раннього віку
Особливості дієтотерапії функціональних колік та діарей у дітей раннього віку
 
Appreciation letter
Appreciation letterAppreciation letter
Appreciation letter
 
Tweets truman
Tweets trumanTweets truman
Tweets truman
 
Ναρκωτικα
Ναρκωτικα Ναρκωτικα
Ναρκωτικα
 

Más de helpido6

Prg 421 week 4
Prg 421 week 4Prg 421 week 4
Prg 421 week 4
helpido6
 
Prg 421 week 2
Prg 421 week 2Prg 421 week 2
Prg 421 week 2
helpido6
 
Prg 421 week 1
Prg 421 week 1Prg 421 week 1
Prg 421 week 1
helpido6
 
CIS/355 ilab 6 of 6
CIS/355 ilab 6 of 6CIS/355 ilab 6 of 6
CIS/355 ilab 6 of 6
helpido6
 

Más de helpido6 (7)

Prg 421 week 4
Prg 421 week 4Prg 421 week 4
Prg 421 week 4
 
Prg 421 week 2
Prg 421 week 2Prg 421 week 2
Prg 421 week 2
 
Prg 421 week 1
Prg 421 week 1Prg 421 week 1
Prg 421 week 1
 
CIS/355 ilab 4 of 6
CIS/355 ilab 4 of 6CIS/355 ilab 4 of 6
CIS/355 ilab 4 of 6
 
Cis 355 i lab 3 of 6
Cis 355 i lab 3 of 6Cis 355 i lab 3 of 6
Cis 355 i lab 3 of 6
 
Cis 355 i lab 1 of 6
Cis 355 i lab 1 of 6Cis 355 i lab 1 of 6
Cis 355 i lab 1 of 6
 
CIS/355 ilab 6 of 6
CIS/355 ilab 6 of 6CIS/355 ilab 6 of 6
CIS/355 ilab 6 of 6
 

Último

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Último (20)

Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 

Comp 220 ilab 5 of 7

  • 1. HELPIDO.COM CLICK HERE TO GET THE SOLUTION !!!!!!!! COMP/220 iLab 5 of 7 - C++ Course iLab 5 of 7: Pointers and Pointer Operations iLAB OVERVIEW Scenario and Summary This lab will explore the use of pointers in several ways. Pointers will be used to dynamically allocate memory for new class objects on demand from the user, and they will be used to access class- member functions. Pointer arithmetic will be used to access and sort class objects according to criteria explained in the lab. Pointers are, essentially, address variables, or variables that hold as their value the address of other variables. In terms of memory management, they are very powerful devices, and they more closely and efficiently use the actual internal hardware registers of the microprocessor that the program operates on. Pointers also have the requirement that the pointer type must be of the same data type as the variable, or the data that it points to or holds the address of. The power of pointers also hints at the potential complexity of their use, which is why this lab is focused almost entirely on several different aspects and uses of pointers. The lab also introduces pointer arrays and pointers to pointers. The Resistor class created in the Week 2 lab will be used as the class that the pointer operations will be used upon. The lab also requires the use of accessor functions and static data members, which may need to be added to the Resistor class definition and implementation. Deliverables 1. Submit a single Notepad file containing the source code for all the files of the lab to the Dropbox for Week 5. Your source code should use proper indentation and be error free. Be sure that your last name and the lab number are part of the file name: for example, YourLastName_Lab5.txt. Each program should include a comment section that includes, at a minimum, your name, the lab and exercise number, and a description of what the program accomplishes. 2. Submit a lab report (a Word document) containing the following information to the Dropbox for Week 5. o Include your name and the lab or lab-exercise number. o Specification: Include a brief description of what the program accomplishes, including its input, key processes, and output.
  • 2. o Test Plan: Include a brief description of the method you used to confirm that your program worked properly. If necessary, include a clearly labeled table with test cases, predicted results, and actual results. o Summary and Conclusions: Write a statement summarizing your predicted and actual output, and identify and explain any differences. For conclusions, write at least one nontrivial paragraph that explains, in detail, either a significant problem you had and how you solved it or, if you had no significant problems, something you learned by doing the exercise. o A UML diagram: This should show all classes, class members, access specifiers, data types, and function arguments, along with any and all class-to-class relationships. o Answers to Lab Questions: Answer any and all lab questions included in the lab steps. Each lab exercise should have a separate section in the lab-report document. Your lab grade will be based upon 1. the formatting of your source code; 2. the use of meaningful identifiers; 3. the extent of internal documentation; 4. the degree to which an exercises’ specifications are met; and 5. the completeness of your lab report. iLAB STEPS STEP 1: Create a Multifile Project Create a new multifile project using the Resistor class developed in Week 1, and include a new main() test function. STEP 2: Modify the Resistor-Class Definition 1. Add a static data member of the class Resistor to keep track of the number of Resistor objects that are dynamically created. This will also be used to limit the number of objects that are dynamically created to the maximum array size of the pointer array in the test function main(). 2. In the Resistor constructor, use a random-number generator to randomly assign a nominal resistance value to the object between 1,000 and 10,000 ohms. The resistance values are not required to be standard resistance values. STEP 3: Create the Test Function Main() and the Support Function 1. Create an array of pointers of type Resistor. 2. Use elements of the pointer array to allow the user to dynamically allocate memory and to instantiate objects of the Resistor class.
  • 3. 3. Use the indirect member-selection operator (pointer) in the test routine to access function members of the Resistor class. 4. Write a new, nonclass function called in function main() to sort the pointers to the Resistor objects in order from lowest nominal resistance value to highest, passing a pointer to the Resistor-object pointer as the only passed data argument. 5. Display the sorted Resistor objects according to the nominal resistance value, from lowest to highest. 6. Within the sorting function, use pointer arithmetic to access the individual Resistor objects. 7. Function main() should also ensure that there are no memory leaks when the program ends. CLICK HERE TO GET THE SOLUTION !!!!!!!!