SlideShare a Scribd company logo
1 of 11
Allied American University CIS 211
MODULE 1
Get help for AlliedAmerican University CIS211 MODULE 1. We provide assignment, homework,
discussions and case studies help for all subject AlliedAmericanUniversity for Session 2015-2016
CIS 211 MODULE 1 CHECK YOUR UNDERSTANDING
Checkyour understanding
25 out of 25
1. An ADT'soperationsare knownas its______.
a. axioms
b. methods
c. variables
d. interfaces
Hint:Chapter1
SLO1: Examine software developmentanddataabstraction.
LO1B: Explainhowtoachieve abettersolution.
1
2. A(n) ______ can be usedto preciselyspecifythe behaviorof eachof the operationsof anADT.
a. exception
b. data structure
c. axiom
d. client
Hint:Chapter1
SLO1:Examine software developmentand dataabstraction.
LO1E:Explore the ADT Bag.
1
3. The insertionoperationof the ADTlistcaninsertnew items______.
a. onlyat the front of the list
b. onlyat the endof the list
c. onlyinthe middle of the list
d. intoanypositionof the list
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1D:Examine abstractdata types.
1
4. Whichof the followingistrue aboutruntime exceptions?
a. theymustbe handledlocally
b. theymustbe explicitlythrownfrom the method
c. theyare usedinsituationswhere the methodhasencounteredaseriousproblem
d. theycan oftenbe preventedbyfail-safe programming
Hint:Chapter1
SLO1: Examine software developmentanddataabstraction.
LO1B: Explainhowtoachieve abettersolution.
1
5. An ADT's______ govern(s) whatitsoperationsare andwhattheydo.
a. specifications
b. implementation
c. documentation
d. data structure
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1C:Analyze specifications.
1
6. Whichof the followingistrue abouta constructor inC++?
a. all constructorshave a returntype of void
b. a constructorcannot have parameters
c. a constructorhas the same name as the class
d. a classcan onlyhave a single constructor
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1C:Analyze specifications.
1
7. In C++, each classdefinitionshouldbe placedina(n) ______.
a. implementationfile
b. headerfile
c. namespace
d. package
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1B:Explainhowtoachieve a bettersolution.
1
8. In the followinglist:John,Kate,Fred,Mark,Jon,Adam, Drew whichelementisthe tail of the
list?
a. John
b. Mark
c. Drew
d. Adam
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1C:Analyze specifications.
1
9. A(n) ______ isan instance of a class.
a. method
b. data field
c. interface
d. object
Hint:Chapter1
SLO1: Examine software developmentanddataabstraction.
LO1A: Identifyprinciplesof object-orientedconcepts.
1
10. A functioncanindicate thatan error has occurredby ______ an exception.
a. throwing
b. catching
c. implementing
d. declaring
Hint:Chapter1
SLO1: Examine software developmentanddataabstraction.
LO1B: Explainhowtoachieve abettersolution.
1
11. Whichof the followingistrue abouta destructorinC++?
a. a class can have several destructors
b. the compilerwill generate adestructorif the programmerdoesnotprovide one
c. a programmermustprovide adestructorforeveryclass
d. a destructordestroysall instancesof aclass
Hint:Chapter1
SLO1: Examine software developmentanddataabstraction.
LO1C: Analyze specifications.
1
12. The specificationsof anADT'soperationsindicate ______.
a. whatthe operationsdo
b. howto implementthe operations
c. howto store the data inthe ADT
d. howto carry out the operations
Hint:Chapter1
SLO1: Examine software developmentanddataabstraction.
LO1D: Examine abstractdata types.
1
13. In the ADT list,whenanitemisdeletedfrompositioni of the list,______.
a. the positionof all itemsisdecreasedby1
b. the positionof eachitemthatwasat a positionsmallerthani isdecreasedby1
c. the positionof eachitemthatwas at a positiongreaterthani is decreasedby1
d. the positionof eachitemthatwasat a positionsmallerthani isincreasedby1 while the positionof
each itemthatwas at a positiongreaterthani is decreasedby1
Hint:Chapter1
SLO1: Examine software developmentanddataabstraction.
LO1D: Examine abstractdata types.
1
14. A(n) ______ allowstwomodulestocommunicate witheachother.
a. data structure
b. axiom
c. interface
d. client
Hint:Chapter1
SLO1: Examine software developmentanddataabstraction.
LO1E: Explore the ADTBag.
1
15. The itemsinthe ADT listare referencedby______.
a. name
b. value
c. positionnumber
d. positionname
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1D:Examine abstractdata types.
1
16. Whichof the followingoperationsof the ADTlistchangesthe list?
a. remove
b. isEmpty
c. size
d. get
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1E:Explore the ADT Bag.
1
17. To ______ an exceptionmeanstodeal withthe errorcondition.
a. declare
b. catch
c. implement
d. try
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1B:Explainhowtoachieve a bettersolution.
1
18. The ADT sortedlistinsertsanddeletesitemsbytheir______.
a. name
b. value
c. positionname
d. positionnumber
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1E:Explore the ADT Bag.
1
19. WhendefiningclassA sothat any of itsinstancescan invoke anyof the publiclydefined
methodsof classB, the keyword______ precedesthe name of classB.
a. public
b. global
c. static
d. final
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1B:Explainhowtoachieve a bettersolution.
1
20. A(n) ______ isa class that inheritsthe membersof anotherclass.
a. base class
b. superclass
c. abstract class
d. subclass
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1B:Explainhowtoachieve a bettersolution.
1
21. A C++ classcontainsdata membersand______.
a. clients
b. interfaces
c. methods
d. data structures
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1B:Explainhowtoachieve a bettersolution.
1
22. In the followinglist:John,Kate,Fred,Mark,Jon,Adam, Drew whichelementdoesnothave a
predecessor?
a. John
b. Mark
c. Drew
d. Kate
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1C:Analyze specifications.
1
23. A clientprogramdependssolelyonthe ______ of the ADT.
a. data members
b. structure
c. implementation
d. behavior
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1E:Explore the ADT Bag.
1
24. C++ providesamechanismforlogicallygroupingclassdefinitionsandotherdeclarationsintoa
commondeclarative regionknownasa(n) ______.
a. namespace
b. interface
c. header
d. package
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1B:Explainhowtoachieve a bettersolution.
1
25. A(n) ______ isa C++ construct that enablesaprogrammertodefine anew datatype.
a. class
b. method
c. data field
d. object
Hint:Chapter1
SLO1:Examine software developmentanddataabstraction.
LO1C:Analyze specifications.
http://www.justquestionanswer.com/viewanswer_detail/CIS-211-MODULE-1-CHECK-YOUR-
UNDERSTANDING-Check-your-unde-25930
CIS 211 MODULE 1 DISCUSSION
Q1: What are the principalsof ObjectOrientedProgramming?(Atleast100Words).
Q2: DiscussAbstraction&Informationhiding.(Atleast100 Words).
Q3: Write yourbrief bio,whichincludesyourpreviouseducational achievements;courses,whichyou
have completedatAAU;and workhistory.
http://www.justquestionanswer.com/viewanswer_detail/CIS-211-MODULE-1-DISCUSSION-Q1-What-
are-the-principals-o-25931
CIS 211 MODULE 1 HOMEWORK ASSIGNMENT
SLO1:Examine software developmentanddataabstraction
http://www.justquestionanswer.com/viewanswer_detail/CIS-211-MODULE-1-HOMEWORK-
ASSIGNMENT-SLO1-Examine-softwar-25933

More Related Content

Similar to Allied american university cis 211 module 1

Allied american university isy 101 module 3
Allied american university isy 101 module 3Allied american university isy 101 module 3
Allied american university isy 101 module 3Olivia Fournier
 
Devry CIS 247 Full Course Latest
Devry CIS 247 Full Course LatestDevry CIS 247 Full Course Latest
Devry CIS 247 Full Course LatestAtifkhilji
 
Session 3 Software Engineering UGC NET.pdf
Session 3 Software Engineering UGC NET.pdfSession 3 Software Engineering UGC NET.pdf
Session 3 Software Engineering UGC NET.pdfsangeethachandran
 
Beginner's guide to linkers
Beginner's guide to linkersBeginner's guide to linkers
Beginner's guide to linkersPinkus Chang
 
Allied american university isy 101 module 1
Allied american university isy 101 module 1Allied american university isy 101 module 1
Allied american university isy 101 module 1Olivia Fournier
 
SBI IT (Systems) Assistant Manager Question Paper
SBI IT (Systems) Assistant Manager Question PaperSBI IT (Systems) Assistant Manager Question Paper
SBI IT (Systems) Assistant Manager Question PaperHarish Rawat
 
FP 301 OOP FINAL PAPER JUNE 2013
FP 301 OOP FINAL PAPER JUNE 2013FP 301 OOP FINAL PAPER JUNE 2013
FP 301 OOP FINAL PAPER JUNE 2013Syahriha Ruslan
 
Unit 3 introduction to android
Unit 3 introduction to android Unit 3 introduction to android
Unit 3 introduction to android Swapnali Pawar
 
Mod 4 Homework - Enhanced DoublyLinkedList Doubly Linked Lists (DLLs).docx
Mod 4 Homework - Enhanced DoublyLinkedList Doubly Linked Lists (DLLs).docxMod 4 Homework - Enhanced DoublyLinkedList Doubly Linked Lists (DLLs).docx
Mod 4 Homework - Enhanced DoublyLinkedList Doubly Linked Lists (DLLs).docxLucasmHKChapmant
 
JS2 COMPUTER STUDIES FIRST TERM C.A 2
JS2 COMPUTER STUDIES FIRST TERM C.A 2JS2 COMPUTER STUDIES FIRST TERM C.A 2
JS2 COMPUTER STUDIES FIRST TERM C.A 2Ejiro Ndifereke
 
A Validation of Object-Oriented Design Metrics as Quality Indicators
A Validation of Object-Oriented Design Metrics as Quality IndicatorsA Validation of Object-Oriented Design Metrics as Quality Indicators
A Validation of Object-Oriented Design Metrics as Quality Indicatorsvie_dels
 
Object Oriented Analysis and Design one marks Q & A
Object Oriented  Analysis  and  Design one marks Q & AObject Oriented  Analysis  and  Design one marks Q & A
Object Oriented Analysis and Design one marks Q & Aeeducations ever
 
FINAL PAPER FP501 OPEN SOURCE OPERATING SYSTEM
FINAL PAPER FP501 OPEN SOURCE OPERATING SYSTEMFINAL PAPER FP501 OPEN SOURCE OPERATING SYSTEM
FINAL PAPER FP501 OPEN SOURCE OPERATING SYSTEMAmira Dolce Farhana
 
Productive Use of the Apache Spark Prompt with Sam Penrose
Productive Use of the Apache Spark Prompt with Sam PenroseProductive Use of the Apache Spark Prompt with Sam Penrose
Productive Use of the Apache Spark Prompt with Sam PenroseDatabricks
 
OOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPUR
OOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPUROOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPUR
OOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPURlochan100
 
Revision week
Revision weekRevision week
Revision weekfizahPhd
 
Good Hunting: Locating, Prioritizing, and Fixing Bugs Automatically (Keynote,...
Good Hunting: Locating, Prioritizing, and Fixing Bugs Automatically (Keynote,...Good Hunting: Locating, Prioritizing, and Fixing Bugs Automatically (Keynote,...
Good Hunting: Locating, Prioritizing, and Fixing Bugs Automatically (Keynote,...Dongsun Kim
 
Allied american university cis 211 module 6 & 7
Allied american university cis 211 module 6 & 7Allied american university cis 211 module 6 & 7
Allied american university cis 211 module 6 & 7leesa marteen
 

Similar to Allied american university cis 211 module 1 (20)

Allied american university isy 101 module 3
Allied american university isy 101 module 3Allied american university isy 101 module 3
Allied american university isy 101 module 3
 
Devry CIS 247 Full Course Latest
Devry CIS 247 Full Course LatestDevry CIS 247 Full Course Latest
Devry CIS 247 Full Course Latest
 
Session 3 Software Engineering UGC NET.pdf
Session 3 Software Engineering UGC NET.pdfSession 3 Software Engineering UGC NET.pdf
Session 3 Software Engineering UGC NET.pdf
 
Beginner's guide to linkers
Beginner's guide to linkersBeginner's guide to linkers
Beginner's guide to linkers
 
Allied american university isy 101 module 1
Allied american university isy 101 module 1Allied american university isy 101 module 1
Allied american university isy 101 module 1
 
SBI IT (Systems) Assistant Manager Question Paper
SBI IT (Systems) Assistant Manager Question PaperSBI IT (Systems) Assistant Manager Question Paper
SBI IT (Systems) Assistant Manager Question Paper
 
FP 301 OOP FINAL PAPER JUNE 2013
FP 301 OOP FINAL PAPER JUNE 2013FP 301 OOP FINAL PAPER JUNE 2013
FP 301 OOP FINAL PAPER JUNE 2013
 
Unit 3 introduction to android
Unit 3 introduction to android Unit 3 introduction to android
Unit 3 introduction to android
 
Mod 4 Homework - Enhanced DoublyLinkedList Doubly Linked Lists (DLLs).docx
Mod 4 Homework - Enhanced DoublyLinkedList Doubly Linked Lists (DLLs).docxMod 4 Homework - Enhanced DoublyLinkedList Doubly Linked Lists (DLLs).docx
Mod 4 Homework - Enhanced DoublyLinkedList Doubly Linked Lists (DLLs).docx
 
JS2 COMPUTER STUDIES FIRST TERM C.A 2
JS2 COMPUTER STUDIES FIRST TERM C.A 2JS2 COMPUTER STUDIES FIRST TERM C.A 2
JS2 COMPUTER STUDIES FIRST TERM C.A 2
 
A Validation of Object-Oriented Design Metrics as Quality Indicators
A Validation of Object-Oriented Design Metrics as Quality IndicatorsA Validation of Object-Oriented Design Metrics as Quality Indicators
A Validation of Object-Oriented Design Metrics as Quality Indicators
 
Object Oriented Analysis and Design one marks Q & A
Object Oriented  Analysis  and  Design one marks Q & AObject Oriented  Analysis  and  Design one marks Q & A
Object Oriented Analysis and Design one marks Q & A
 
IOS debugging
IOS debuggingIOS debugging
IOS debugging
 
FINAL PAPER FP501 OPEN SOURCE OPERATING SYSTEM
FINAL PAPER FP501 OPEN SOURCE OPERATING SYSTEMFINAL PAPER FP501 OPEN SOURCE OPERATING SYSTEM
FINAL PAPER FP501 OPEN SOURCE OPERATING SYSTEM
 
Productive Use of the Apache Spark Prompt with Sam Penrose
Productive Use of the Apache Spark Prompt with Sam PenroseProductive Use of the Apache Spark Prompt with Sam Penrose
Productive Use of the Apache Spark Prompt with Sam Penrose
 
OOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPUR
OOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPUROOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPUR
OOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPUR
 
Revision week
Revision weekRevision week
Revision week
 
Good Hunting: Locating, Prioritizing, and Fixing Bugs Automatically (Keynote,...
Good Hunting: Locating, Prioritizing, and Fixing Bugs Automatically (Keynote,...Good Hunting: Locating, Prioritizing, and Fixing Bugs Automatically (Keynote,...
Good Hunting: Locating, Prioritizing, and Fixing Bugs Automatically (Keynote,...
 
Allied american university cis 211 module 6 & 7
Allied american university cis 211 module 6 & 7Allied american university cis 211 module 6 & 7
Allied american university cis 211 module 6 & 7
 
Section two
Section twoSection two
Section two
 

Recently uploaded

Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...Pooja Nehwal
 

Recently uploaded (20)

Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
 

Allied american university cis 211 module 1

  • 1. Allied American University CIS 211 MODULE 1 Get help for AlliedAmerican University CIS211 MODULE 1. We provide assignment, homework, discussions and case studies help for all subject AlliedAmericanUniversity for Session 2015-2016 CIS 211 MODULE 1 CHECK YOUR UNDERSTANDING Checkyour understanding 25 out of 25 1. An ADT'soperationsare knownas its______. a. axioms b. methods c. variables d. interfaces Hint:Chapter1 SLO1: Examine software developmentanddataabstraction. LO1B: Explainhowtoachieve abettersolution. 1 2. A(n) ______ can be usedto preciselyspecifythe behaviorof eachof the operationsof anADT. a. exception b. data structure
  • 2. c. axiom d. client Hint:Chapter1 SLO1:Examine software developmentand dataabstraction. LO1E:Explore the ADT Bag. 1 3. The insertionoperationof the ADTlistcaninsertnew items______. a. onlyat the front of the list b. onlyat the endof the list c. onlyinthe middle of the list d. intoanypositionof the list Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1D:Examine abstractdata types. 1 4. Whichof the followingistrue aboutruntime exceptions? a. theymustbe handledlocally b. theymustbe explicitlythrownfrom the method c. theyare usedinsituationswhere the methodhasencounteredaseriousproblem d. theycan oftenbe preventedbyfail-safe programming Hint:Chapter1 SLO1: Examine software developmentanddataabstraction. LO1B: Explainhowtoachieve abettersolution.
  • 3. 1 5. An ADT's______ govern(s) whatitsoperationsare andwhattheydo. a. specifications b. implementation c. documentation d. data structure Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1C:Analyze specifications. 1 6. Whichof the followingistrue abouta constructor inC++? a. all constructorshave a returntype of void b. a constructorcannot have parameters c. a constructorhas the same name as the class d. a classcan onlyhave a single constructor Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1C:Analyze specifications. 1 7. In C++, each classdefinitionshouldbe placedina(n) ______. a. implementationfile b. headerfile
  • 4. c. namespace d. package Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1B:Explainhowtoachieve a bettersolution. 1 8. In the followinglist:John,Kate,Fred,Mark,Jon,Adam, Drew whichelementisthe tail of the list? a. John b. Mark c. Drew d. Adam Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1C:Analyze specifications. 1 9. A(n) ______ isan instance of a class. a. method b. data field c. interface d. object Hint:Chapter1 SLO1: Examine software developmentanddataabstraction. LO1A: Identifyprinciplesof object-orientedconcepts.
  • 5. 1 10. A functioncanindicate thatan error has occurredby ______ an exception. a. throwing b. catching c. implementing d. declaring Hint:Chapter1 SLO1: Examine software developmentanddataabstraction. LO1B: Explainhowtoachieve abettersolution. 1 11. Whichof the followingistrue abouta destructorinC++? a. a class can have several destructors b. the compilerwill generate adestructorif the programmerdoesnotprovide one c. a programmermustprovide adestructorforeveryclass d. a destructordestroysall instancesof aclass Hint:Chapter1 SLO1: Examine software developmentanddataabstraction. LO1C: Analyze specifications. 1 12. The specificationsof anADT'soperationsindicate ______. a. whatthe operationsdo b. howto implementthe operations
  • 6. c. howto store the data inthe ADT d. howto carry out the operations Hint:Chapter1 SLO1: Examine software developmentanddataabstraction. LO1D: Examine abstractdata types. 1 13. In the ADT list,whenanitemisdeletedfrompositioni of the list,______. a. the positionof all itemsisdecreasedby1 b. the positionof eachitemthatwasat a positionsmallerthani isdecreasedby1 c. the positionof eachitemthatwas at a positiongreaterthani is decreasedby1 d. the positionof eachitemthatwasat a positionsmallerthani isincreasedby1 while the positionof each itemthatwas at a positiongreaterthani is decreasedby1 Hint:Chapter1 SLO1: Examine software developmentanddataabstraction. LO1D: Examine abstractdata types. 1 14. A(n) ______ allowstwomodulestocommunicate witheachother. a. data structure b. axiom c. interface d. client Hint:Chapter1 SLO1: Examine software developmentanddataabstraction. LO1E: Explore the ADTBag.
  • 7. 1 15. The itemsinthe ADT listare referencedby______. a. name b. value c. positionnumber d. positionname Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1D:Examine abstractdata types. 1 16. Whichof the followingoperationsof the ADTlistchangesthe list? a. remove b. isEmpty c. size d. get Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1E:Explore the ADT Bag. 1 17. To ______ an exceptionmeanstodeal withthe errorcondition. a. declare b. catch c. implement d. try
  • 8. Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1B:Explainhowtoachieve a bettersolution. 1 18. The ADT sortedlistinsertsanddeletesitemsbytheir______. a. name b. value c. positionname d. positionnumber Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1E:Explore the ADT Bag. 1 19. WhendefiningclassA sothat any of itsinstancescan invoke anyof the publiclydefined methodsof classB, the keyword______ precedesthe name of classB. a. public b. global c. static d. final Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1B:Explainhowtoachieve a bettersolution. 1 20. A(n) ______ isa class that inheritsthe membersof anotherclass. a. base class b. superclass
  • 9. c. abstract class d. subclass Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1B:Explainhowtoachieve a bettersolution. 1 21. A C++ classcontainsdata membersand______. a. clients b. interfaces c. methods d. data structures Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1B:Explainhowtoachieve a bettersolution. 1 22. In the followinglist:John,Kate,Fred,Mark,Jon,Adam, Drew whichelementdoesnothave a predecessor? a. John b. Mark c. Drew d. Kate Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1C:Analyze specifications. 1 23. A clientprogramdependssolelyonthe ______ of the ADT.
  • 10. a. data members b. structure c. implementation d. behavior Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1E:Explore the ADT Bag. 1 24. C++ providesamechanismforlogicallygroupingclassdefinitionsandotherdeclarationsintoa commondeclarative regionknownasa(n) ______. a. namespace b. interface c. header d. package Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1B:Explainhowtoachieve a bettersolution. 1 25. A(n) ______ isa C++ construct that enablesaprogrammertodefine anew datatype. a. class b. method c. data field d. object Hint:Chapter1 SLO1:Examine software developmentanddataabstraction. LO1C:Analyze specifications.
  • 11. http://www.justquestionanswer.com/viewanswer_detail/CIS-211-MODULE-1-CHECK-YOUR- UNDERSTANDING-Check-your-unde-25930 CIS 211 MODULE 1 DISCUSSION Q1: What are the principalsof ObjectOrientedProgramming?(Atleast100Words). Q2: DiscussAbstraction&Informationhiding.(Atleast100 Words). Q3: Write yourbrief bio,whichincludesyourpreviouseducational achievements;courses,whichyou have completedatAAU;and workhistory. http://www.justquestionanswer.com/viewanswer_detail/CIS-211-MODULE-1-DISCUSSION-Q1-What- are-the-principals-o-25931 CIS 211 MODULE 1 HOMEWORK ASSIGNMENT SLO1:Examine software developmentanddataabstraction http://www.justquestionanswer.com/viewanswer_detail/CIS-211-MODULE-1-HOMEWORK- ASSIGNMENT-SLO1-Examine-softwar-25933