SlideShare a Scribd company logo
QUESTION 1
A business system is a(n)
A.
collection of operations organized in response to a requirements statement.
B.
combination of people, equipment, and procedures that work together to perform a specific
function.
C.
detailed plan for the solution to a well-defined problem.
D.
a series of processes that involve one or more computers.
QUESTION 2
The acronym SDLC stands for
A.
system development life cycle
B.
system design life cycle
C.
screen design for large computers
D.
symbolic defined logic code
2 points
QUESTION 3
A graphical representation of the programs within a system and their relationships is called a(n)
A.
program flowchart
B.
system flowchart
C.
control structure
D.
memory
2 points
QUESTION 4
English-language statements that describe the processing steps of a program are known as
A.
program flowcharts
B.
class diagrams
C.
programming logic
D.
pseudcode
2 points
QUESTION 5
The use of pseudocode is often a convenient replacement for system flowcharting.
True
False
2 points
QUESTION 6
Graphical user interfaces make it easier for users to interact with computers.
True
False
2 points
QUESTION 7
An infinite loop is an error condition.
True
False
2 points
QUESTION 8
Which program flowcharting symbol can be used to indicate the beginning and the end of an
algorithm?
A.
process
B.
general input/output
C.
terminal interrupt
D.
sequence
2 points
QUESTION 9
A data item whose value may change during processing is a(n)
A.
defined value
B.
constant
C.
input
D.
variable
2 points
QUESTION 10
What is the value of the following expression: (9+6*(8-13))/3?
A.
25
B.
-25
C.
7
D.
-7
2 points
QUESTION 11
An algorithm can produce an answer in an infinite number of steps.
True
False
2 points
QUESTION 12
A diamond shape symbol on a program flowchart represents a decision to be made.
True
False
2 points
QUESTION 13
The decision point in an IFTHENELSE statement is called an unconditional branch.
True
False
2 points
QUESTION 14
(90+80+95)/3=AVERAGE is a valid assignment statement, assuming AVERAGE has been
defined and assigned a value
True
False
2 points
QUESTION 15
Choose a class/object example from the list below.
A.
program/data member
B.
girl/Beverly
C.
Ford/automobile
D.
car/engine
2 points
QUESTION 16
A special kind of method that performs initialization is a(n)
A.
definer
B.
override
C.
constructor
D.
character
2 points
QUESTION 17
In a class definition, operations are specified in
A.
properties.
B.
records.
C.
attributes.
D.
methods.
2 points
QUESTION 18
A data member that is private
A.
cannot be referred to by methods that are public.
B.
cannot be referred to from anywhere outside the class in which it is declared.
C.
is usable only by a constructor method.
D.
must be defined before data members that are public are defined.
2 points
QUESTION 19
Packaging data methods and members into a single well-defined programming unit is known as
A.
overriding
B.
data hiding
C.
encapsulation
D.
classification
2 points
QUESTION 20
If a method is defined wisely, users of the method don’t have to know how the method is
implemented.
True
False
2 points
QUESTION 21
Use of parameters is not supported for constructor methods.
True
False
2 points
QUESTION 22
A class represents a template from which any number of objects can be created.
True
False
2 points
QUESTION 23
Inheritance is
A.
a mechanism that uses generalization/specialization relationships.
B.
a mechanism for relating classes and objects.
C.
a relationship that establishes levels in a class hierarchy.
D.
a mechanism to share identifications and descriptions.
2 points
QUESTION 24
A base class may also be called a(n)
A.
superclass.
B.
subclass.
C.
derived class.
D.
existent class.
2 points
QUESTION 25
How is generalization/specialization represented on a UML class diagram?
A.
a solid line.
B.
an unfilled arrow.
C.
a filled diamond.
D.
a dashed line.
2 points
QUESTION 26
A polymorphic method
A.
has multiple implementations within the same class definition.
B.
is uniquely identified by the data types of its arguments.
C.
can be used in a subclass if it’s not used in a base class.
D.
has the same name as another method within the same class hierarchy.
2 points
QUESTION 27
Another name for a subclass is a(n)
A.
described class.
B.
inherited class.
C.
derived class.
D.
parent class.
2 points
QUESTION 28
Inheritance takes advantage of an existing generalization/specialization relationship.
True
False
2 points
QUESTION 29
A subclass can contain a new design of an inherited method.
True
False
2 points
QUESTION 30
When two constructors are given in a class, they execute in sequence during processing.
True
False
2 points
QUESTION 31
A single driver program may instantiate two or more instances of the same class.
True
False
2 points
QUESTION 32
Polymorphism is used extensively in commercial programming.
True
False
2 points
QUESTION 33
Choose a class/object example from the list below.
A.
program/data member
B.
girl/Beverly
C.
Ford/automobile
D.
car/engine
2 points
QUESTION 34
A special kind of method that performs initialization is a(n)
A.
definer
B.
override
C.
constructor
D.
character
2 points
QUESTION 35
In a class definition, operations are specified in
A.
properties.
B.
records.
C.
attributes.
D.
methods.
2 points
QUESTION 36
A data member that is private
A.
cannot be referred to by methods that are public.
B.
cannot be referred to from anywhere outside the class in which it is declared.
C.
is usable only by a constructor method.
D.
must be defined before data members that are public are defined.
2 points
QUESTION 37
Packaging data methods and members into a single well-defined programming unit is known as
A.
overriding
B.
data hiding
C.
encapsulation
D.
classification
2 points
QUESTION 38
If a method is defined wisely, users of the method don’t have to know how the method is
implemented.
True
False
2 points
QUESTION 39
Use of parameters is not supported for constructor methods.
True
False
2 points
QUESTION 40
Overloading can occur between two or more classes but cannot occur within a single class.
True
False
2 points
QUESTION 41
A single method cannot be both public and private at the same time.
True
False
2 points
QUESTION 42
A class represents a template from which any number of objects can be created.
True
False
2 points
QUESTION 43
Inheritance is
A.
a mechanism that uses generalization/specialization relationships.
B.
a mechanism for relating classes and objects.
C.
a relationship that establishes levels in a class hierarchy.
D.
a mechanism to share identifications and descriptions.
2 points
QUESTION 44
A base class may also be called a(n)
A.
superclass.
B.
subclass.
C.
derived class.
D.
existent class.
2 points
QUESTION 45
How is generalization/specialization represented on a UML class diagram?
A.
a solid line.
B.
an unfilled arrow.
C.
a filled diamond.
D.
a dashed line.
2 points
QUESTION 46
Another name for a subclass is a(n)
A.
described class.
B.
inherited class.
C.
derived class.
D.
parent class.
2 points
QUESTION 47
Inheritance takes advantage of an existing generalization/specialization relationship.
True
False
2 points
QUESTION 48
A subclass can contain a new design of an inherited method.
True
False
2 points
QUESTION 49
When two constructors are given in a class, they execute in sequence during processing.
True
False
2 points
QUESTION 50
A single driver program may instantiate two or more instances of the same class.
True
False
A.
collection of operations organized in response to a requirements statement.
B.
combination of people, equipment, and procedures that work together to perform a specific
function.
C.
detailed plan for the solution to a well-defined problem.
D.
a series of processes that involve one or more computers.
Solution
1. b. combination of people, equipment, and procedures that work together to perform a specific
function.
2. a. system development life cycle
3. b. system flowchart
4. d. pseudcode
5. true
6. true
7. false
8. d. sequence
9. d. variable
10. d.-7
11. false
12. true
13. false
14. false
15.a.
16.c. constructors
17. d. methods
18. b.cannot be referred to from anywhere outside the class in which it is declared.
19. c. encapsulation
20. false
21. false
22. true
23. a mechanism that uses generalization/specialization relationships.
24. super class
25. solid line
26. has the same name as another method within the same class hierarchy.
27. derived class
28. true
29.false
30. false
31. false
32. false
33. a. program/data member
34. c. constructor
35. methods
36. d. must be defined before data members that are public are defined.
37. c. encapsulation
38. false
39. false
40. true
41. false
42. true
43. a. a mechanism that uses generalization/specialization relationships.
44. a. super class
45. a. solid line
46. c. derived class
47. True
48. True
49. false( No, only the constructor that fits the arguments you passed will execute.)
50. True

More Related Content

Similar to QUESTION 1A business system is a(n)A.collection of operations .pdf

C++ questions
C++ questionsC++ questions
C++ questions
anujchouksey
 
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
Harish Rawat
 
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
lochan100
 
SS2 DATA PROCESSING EXAMINATION (FIRST TERM)
SS2 DATA PROCESSING EXAMINATION (FIRST TERM)SS2 DATA PROCESSING EXAMINATION (FIRST TERM)
SS2 DATA PROCESSING EXAMINATION (FIRST TERM)
Ejiro Ndifereke
 
1 Question Information refinement means taking the system requi.docx
1 Question Information refinement means taking the system requi.docx1 Question Information refinement means taking the system requi.docx
1 Question Information refinement means taking the system requi.docx
mercysuttle
 
Section two
Section twoSection two
Section two
Latera Garbi
 
Ooad quiz
Ooad quizOoad quiz
ExitExam Tutorial gfgfgfdfdfdfdf (1).pptx
ExitExam Tutorial gfgfgfdfdfdfdf (1).pptxExitExam Tutorial gfgfgfdfdfdfdf (1).pptx
ExitExam Tutorial gfgfgfdfdfdfdf (1).pptx
meharikiros2
 
Allied american university cis 211 module 3
Allied american university cis 211 module 3Allied american university cis 211 module 3
Allied american university cis 211 module 3
leesa marteen
 
Std 12 computer chapter 8 classes and objects in java important MCQs
Std 12 computer chapter 8 classes and objects in java important MCQsStd 12 computer chapter 8 classes and objects in java important MCQs
Std 12 computer chapter 8 classes and objects in java important MCQs
Nuzhat Memon
 
SS3 DATA PROCESSING EXAMINATION (FIRST TERM)
SS3 DATA PROCESSING EXAMINATION (FIRST TERM)SS3 DATA PROCESSING EXAMINATION (FIRST TERM)
SS3 DATA PROCESSING EXAMINATION (FIRST TERM)
Ejiro Ndifereke
 
CIS 2303 LO3 Process Modeling
CIS 2303 LO3 Process ModelingCIS 2303 LO3 Process Modeling
CIS 2303 LO3 Process Modeling
Ahmad Ammari
 
GSP 125 Enhance teaching/tutorialrank.com
 GSP 125 Enhance teaching/tutorialrank.com GSP 125 Enhance teaching/tutorialrank.com
GSP 125 Enhance teaching/tutorialrank.com
jonhson300
 
GSP 125 Effective Communication/tutorialrank.com
 GSP 125 Effective Communication/tutorialrank.com GSP 125 Effective Communication/tutorialrank.com
GSP 125 Effective Communication/tutorialrank.com
jonhson282
 
300+ top database management system questions and answers 2020
300+ top database management system questions and answers 2020300+ top database management system questions and answers 2020
300+ top database management system questions and answers 2020
tadeseguchi
 
41319760 info-sys (1)
41319760 info-sys (1)41319760 info-sys (1)
41319760 info-sys (1)
Alla Grygorian
 
GSP 125 Entire Course NEW
GSP 125 Entire Course NEWGSP 125 Entire Course NEW
GSP 125 Entire Course NEW
shyamuopten
 
PEGA CSSA Dumps | PEGA 7.1 CSSA Dumps
PEGA CSSA  Dumps | PEGA 7.1 CSSA Dumps PEGA CSSA  Dumps | PEGA 7.1 CSSA Dumps
PEGA CSSA Dumps | PEGA 7.1 CSSA Dumps
Ashock Roy
 
Cssa 7.2 Training And Dump
Cssa 7.2 Training And Dump Cssa 7.2 Training And Dump
Cssa 7.2 Training And Dump
Santhoo Vardan
 
Part - 2 Cpp programming Solved MCQ
Part - 2  Cpp programming Solved MCQ Part - 2  Cpp programming Solved MCQ
Part - 2 Cpp programming Solved MCQ
Knowledge Center Computer
 

Similar to QUESTION 1A business system is a(n)A.collection of operations .pdf (20)

C++ questions
C++ questionsC++ questions
C++ questions
 
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
 
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
 
SS2 DATA PROCESSING EXAMINATION (FIRST TERM)
SS2 DATA PROCESSING EXAMINATION (FIRST TERM)SS2 DATA PROCESSING EXAMINATION (FIRST TERM)
SS2 DATA PROCESSING EXAMINATION (FIRST TERM)
 
1 Question Information refinement means taking the system requi.docx
1 Question Information refinement means taking the system requi.docx1 Question Information refinement means taking the system requi.docx
1 Question Information refinement means taking the system requi.docx
 
Section two
Section twoSection two
Section two
 
Ooad quiz
Ooad quizOoad quiz
Ooad quiz
 
ExitExam Tutorial gfgfgfdfdfdfdf (1).pptx
ExitExam Tutorial gfgfgfdfdfdfdf (1).pptxExitExam Tutorial gfgfgfdfdfdfdf (1).pptx
ExitExam Tutorial gfgfgfdfdfdfdf (1).pptx
 
Allied american university cis 211 module 3
Allied american university cis 211 module 3Allied american university cis 211 module 3
Allied american university cis 211 module 3
 
Std 12 computer chapter 8 classes and objects in java important MCQs
Std 12 computer chapter 8 classes and objects in java important MCQsStd 12 computer chapter 8 classes and objects in java important MCQs
Std 12 computer chapter 8 classes and objects in java important MCQs
 
SS3 DATA PROCESSING EXAMINATION (FIRST TERM)
SS3 DATA PROCESSING EXAMINATION (FIRST TERM)SS3 DATA PROCESSING EXAMINATION (FIRST TERM)
SS3 DATA PROCESSING EXAMINATION (FIRST TERM)
 
CIS 2303 LO3 Process Modeling
CIS 2303 LO3 Process ModelingCIS 2303 LO3 Process Modeling
CIS 2303 LO3 Process Modeling
 
GSP 125 Enhance teaching/tutorialrank.com
 GSP 125 Enhance teaching/tutorialrank.com GSP 125 Enhance teaching/tutorialrank.com
GSP 125 Enhance teaching/tutorialrank.com
 
GSP 125 Effective Communication/tutorialrank.com
 GSP 125 Effective Communication/tutorialrank.com GSP 125 Effective Communication/tutorialrank.com
GSP 125 Effective Communication/tutorialrank.com
 
300+ top database management system questions and answers 2020
300+ top database management system questions and answers 2020300+ top database management system questions and answers 2020
300+ top database management system questions and answers 2020
 
41319760 info-sys (1)
41319760 info-sys (1)41319760 info-sys (1)
41319760 info-sys (1)
 
GSP 125 Entire Course NEW
GSP 125 Entire Course NEWGSP 125 Entire Course NEW
GSP 125 Entire Course NEW
 
PEGA CSSA Dumps | PEGA 7.1 CSSA Dumps
PEGA CSSA  Dumps | PEGA 7.1 CSSA Dumps PEGA CSSA  Dumps | PEGA 7.1 CSSA Dumps
PEGA CSSA Dumps | PEGA 7.1 CSSA Dumps
 
Cssa 7.2 Training And Dump
Cssa 7.2 Training And Dump Cssa 7.2 Training And Dump
Cssa 7.2 Training And Dump
 
Part - 2 Cpp programming Solved MCQ
Part - 2  Cpp programming Solved MCQ Part - 2  Cpp programming Solved MCQ
Part - 2 Cpp programming Solved MCQ
 

More from feelinggifts

Chapter 22. Problem 3BCP0 Bookmark Show all steps ON Problem Eminent.pdf
Chapter 22. Problem 3BCP0 Bookmark Show all steps ON Problem Eminent.pdfChapter 22. Problem 3BCP0 Bookmark Show all steps ON Problem Eminent.pdf
Chapter 22. Problem 3BCP0 Bookmark Show all steps ON Problem Eminent.pdf
feelinggifts
 
D Question 11 1 pts A fundamental feature of money that BitCoin fulfi.pdf
D Question 11 1 pts A fundamental feature of money that BitCoin fulfi.pdfD Question 11 1 pts A fundamental feature of money that BitCoin fulfi.pdf
D Question 11 1 pts A fundamental feature of money that BitCoin fulfi.pdf
feelinggifts
 
connect instructions I helg dule 7 Connect seve & Exit ..pdf
connect instructions I helg dule 7 Connect seve & Exit ..pdfconnect instructions I helg dule 7 Connect seve & Exit ..pdf
connect instructions I helg dule 7 Connect seve & Exit ..pdf
feelinggifts
 
COMPUTER ETHICSDiscuss the local and global impact of malware and .pdf
COMPUTER ETHICSDiscuss the local and global impact of malware and .pdfCOMPUTER ETHICSDiscuss the local and global impact of malware and .pdf
COMPUTER ETHICSDiscuss the local and global impact of malware and .pdf
feelinggifts
 
You’re helping a group of ethnographers analyze some oral history da.pdf
You’re helping a group of ethnographers analyze some oral history da.pdfYou’re helping a group of ethnographers analyze some oral history da.pdf
You’re helping a group of ethnographers analyze some oral history da.pdf
feelinggifts
 
A man with type B blood type claims to be biological father of a typ.pdf
A man with type B blood type claims to be biological father of a typ.pdfA man with type B blood type claims to be biological father of a typ.pdf
A man with type B blood type claims to be biological father of a typ.pdf
feelinggifts
 
why should filtrate be used to transfer the residue when the desired.pdf
why should filtrate be used to transfer the residue when the desired.pdfwhy should filtrate be used to transfer the residue when the desired.pdf
why should filtrate be used to transfer the residue when the desired.pdf
feelinggifts
 
Winch of the following is NOT one of the reasons an IO Exception is t.pdf
Winch of the following is NOT one of the reasons an IO Exception is t.pdfWinch of the following is NOT one of the reasons an IO Exception is t.pdf
Winch of the following is NOT one of the reasons an IO Exception is t.pdf
feelinggifts
 
Why is attending to the full scope of drivers critical in implementi.pdf
Why is attending to the full scope of drivers critical in implementi.pdfWhy is attending to the full scope of drivers critical in implementi.pdf
Why is attending to the full scope of drivers critical in implementi.pdf
feelinggifts
 
Which of the following is not a function of interest groups A. to i.pdf
Which of the following is not a function of interest groups A. to i.pdfWhich of the following is not a function of interest groups A. to i.pdf
Which of the following is not a function of interest groups A. to i.pdf
feelinggifts
 
When explaining civil law one would say that it is concemed with disp.pdf
When explaining civil law one would say that it is concemed with disp.pdfWhen explaining civil law one would say that it is concemed with disp.pdf
When explaining civil law one would say that it is concemed with disp.pdf
feelinggifts
 
What is the difference between a short and long branchSolution.pdf
What is the difference between a short and long branchSolution.pdfWhat is the difference between a short and long branchSolution.pdf
What is the difference between a short and long branchSolution.pdf
feelinggifts
 
What is the maximum file size in a FAT32 systemSolutionFirst .pdf
What is the maximum file size in a FAT32 systemSolutionFirst .pdfWhat is the maximum file size in a FAT32 systemSolutionFirst .pdf
What is the maximum file size in a FAT32 systemSolutionFirst .pdf
feelinggifts
 
View transaction list Journal entry worksheet The company paid $510 c.pdf
View transaction list Journal entry worksheet The company paid $510 c.pdfView transaction list Journal entry worksheet The company paid $510 c.pdf
View transaction list Journal entry worksheet The company paid $510 c.pdf
feelinggifts
 
The numeric data types in C++ can be broken into two general categori.pdf
The numeric data types in C++ can be broken into two general categori.pdfThe numeric data types in C++ can be broken into two general categori.pdf
The numeric data types in C++ can be broken into two general categori.pdf
feelinggifts
 
The capillaries at the alveoli Form a respiratory membrane Are spe.pdf
The capillaries at the alveoli  Form a respiratory membrane  Are spe.pdfThe capillaries at the alveoli  Form a respiratory membrane  Are spe.pdf
The capillaries at the alveoli Form a respiratory membrane Are spe.pdf
feelinggifts
 
Select the word or phrase which best matches the description of it..pdf
Select the word or phrase which best matches the description of it..pdfSelect the word or phrase which best matches the description of it..pdf
Select the word or phrase which best matches the description of it..pdf
feelinggifts
 
Robin Hood has hired you as his new Strategic Consultant to help him.pdf
Robin Hood has hired you as his new Strategic Consultant to help him.pdfRobin Hood has hired you as his new Strategic Consultant to help him.pdf
Robin Hood has hired you as his new Strategic Consultant to help him.pdf
feelinggifts
 
Research indicates that online news seekers tend to access topics of.pdf
Research indicates that online news seekers tend to access topics of.pdfResearch indicates that online news seekers tend to access topics of.pdf
Research indicates that online news seekers tend to access topics of.pdf
feelinggifts
 
Read Case Study Room 406 and answer the following questions in 2.pdf
Read Case Study Room 406 and answer the following questions in 2.pdfRead Case Study Room 406 and answer the following questions in 2.pdf
Read Case Study Room 406 and answer the following questions in 2.pdf
feelinggifts
 

More from feelinggifts (20)

Chapter 22. Problem 3BCP0 Bookmark Show all steps ON Problem Eminent.pdf
Chapter 22. Problem 3BCP0 Bookmark Show all steps ON Problem Eminent.pdfChapter 22. Problem 3BCP0 Bookmark Show all steps ON Problem Eminent.pdf
Chapter 22. Problem 3BCP0 Bookmark Show all steps ON Problem Eminent.pdf
 
D Question 11 1 pts A fundamental feature of money that BitCoin fulfi.pdf
D Question 11 1 pts A fundamental feature of money that BitCoin fulfi.pdfD Question 11 1 pts A fundamental feature of money that BitCoin fulfi.pdf
D Question 11 1 pts A fundamental feature of money that BitCoin fulfi.pdf
 
connect instructions I helg dule 7 Connect seve & Exit ..pdf
connect instructions I helg dule 7 Connect seve & Exit ..pdfconnect instructions I helg dule 7 Connect seve & Exit ..pdf
connect instructions I helg dule 7 Connect seve & Exit ..pdf
 
COMPUTER ETHICSDiscuss the local and global impact of malware and .pdf
COMPUTER ETHICSDiscuss the local and global impact of malware and .pdfCOMPUTER ETHICSDiscuss the local and global impact of malware and .pdf
COMPUTER ETHICSDiscuss the local and global impact of malware and .pdf
 
You’re helping a group of ethnographers analyze some oral history da.pdf
You’re helping a group of ethnographers analyze some oral history da.pdfYou’re helping a group of ethnographers analyze some oral history da.pdf
You’re helping a group of ethnographers analyze some oral history da.pdf
 
A man with type B blood type claims to be biological father of a typ.pdf
A man with type B blood type claims to be biological father of a typ.pdfA man with type B blood type claims to be biological father of a typ.pdf
A man with type B blood type claims to be biological father of a typ.pdf
 
why should filtrate be used to transfer the residue when the desired.pdf
why should filtrate be used to transfer the residue when the desired.pdfwhy should filtrate be used to transfer the residue when the desired.pdf
why should filtrate be used to transfer the residue when the desired.pdf
 
Winch of the following is NOT one of the reasons an IO Exception is t.pdf
Winch of the following is NOT one of the reasons an IO Exception is t.pdfWinch of the following is NOT one of the reasons an IO Exception is t.pdf
Winch of the following is NOT one of the reasons an IO Exception is t.pdf
 
Why is attending to the full scope of drivers critical in implementi.pdf
Why is attending to the full scope of drivers critical in implementi.pdfWhy is attending to the full scope of drivers critical in implementi.pdf
Why is attending to the full scope of drivers critical in implementi.pdf
 
Which of the following is not a function of interest groups A. to i.pdf
Which of the following is not a function of interest groups A. to i.pdfWhich of the following is not a function of interest groups A. to i.pdf
Which of the following is not a function of interest groups A. to i.pdf
 
When explaining civil law one would say that it is concemed with disp.pdf
When explaining civil law one would say that it is concemed with disp.pdfWhen explaining civil law one would say that it is concemed with disp.pdf
When explaining civil law one would say that it is concemed with disp.pdf
 
What is the difference between a short and long branchSolution.pdf
What is the difference between a short and long branchSolution.pdfWhat is the difference between a short and long branchSolution.pdf
What is the difference between a short and long branchSolution.pdf
 
What is the maximum file size in a FAT32 systemSolutionFirst .pdf
What is the maximum file size in a FAT32 systemSolutionFirst .pdfWhat is the maximum file size in a FAT32 systemSolutionFirst .pdf
What is the maximum file size in a FAT32 systemSolutionFirst .pdf
 
View transaction list Journal entry worksheet The company paid $510 c.pdf
View transaction list Journal entry worksheet The company paid $510 c.pdfView transaction list Journal entry worksheet The company paid $510 c.pdf
View transaction list Journal entry worksheet The company paid $510 c.pdf
 
The numeric data types in C++ can be broken into two general categori.pdf
The numeric data types in C++ can be broken into two general categori.pdfThe numeric data types in C++ can be broken into two general categori.pdf
The numeric data types in C++ can be broken into two general categori.pdf
 
The capillaries at the alveoli Form a respiratory membrane Are spe.pdf
The capillaries at the alveoli  Form a respiratory membrane  Are spe.pdfThe capillaries at the alveoli  Form a respiratory membrane  Are spe.pdf
The capillaries at the alveoli Form a respiratory membrane Are spe.pdf
 
Select the word or phrase which best matches the description of it..pdf
Select the word or phrase which best matches the description of it..pdfSelect the word or phrase which best matches the description of it..pdf
Select the word or phrase which best matches the description of it..pdf
 
Robin Hood has hired you as his new Strategic Consultant to help him.pdf
Robin Hood has hired you as his new Strategic Consultant to help him.pdfRobin Hood has hired you as his new Strategic Consultant to help him.pdf
Robin Hood has hired you as his new Strategic Consultant to help him.pdf
 
Research indicates that online news seekers tend to access topics of.pdf
Research indicates that online news seekers tend to access topics of.pdfResearch indicates that online news seekers tend to access topics of.pdf
Research indicates that online news seekers tend to access topics of.pdf
 
Read Case Study Room 406 and answer the following questions in 2.pdf
Read Case Study Room 406 and answer the following questions in 2.pdfRead Case Study Room 406 and answer the following questions in 2.pdf
Read Case Study Room 406 and answer the following questions in 2.pdf
 

Recently uploaded

Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
NgcHiNguyn25
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
Celine George
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
sayalidalavi006
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
Celine George
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
paigestewart1632
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 

Recently uploaded (20)

Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 

QUESTION 1A business system is a(n)A.collection of operations .pdf

  • 1. QUESTION 1 A business system is a(n) A. collection of operations organized in response to a requirements statement. B. combination of people, equipment, and procedures that work together to perform a specific function. C. detailed plan for the solution to a well-defined problem. D. a series of processes that involve one or more computers. QUESTION 2 The acronym SDLC stands for A. system development life cycle B. system design life cycle C. screen design for large computers D. symbolic defined logic code 2 points QUESTION 3 A graphical representation of the programs within a system and their relationships is called a(n) A. program flowchart B. system flowchart C. control structure D. memory 2 points QUESTION 4 English-language statements that describe the processing steps of a program are known as
  • 2. A. program flowcharts B. class diagrams C. programming logic D. pseudcode 2 points QUESTION 5 The use of pseudocode is often a convenient replacement for system flowcharting. True False 2 points QUESTION 6 Graphical user interfaces make it easier for users to interact with computers. True False 2 points QUESTION 7 An infinite loop is an error condition. True False 2 points QUESTION 8 Which program flowcharting symbol can be used to indicate the beginning and the end of an algorithm? A. process B. general input/output C. terminal interrupt D. sequence 2 points
  • 3. QUESTION 9 A data item whose value may change during processing is a(n) A. defined value B. constant C. input D. variable 2 points QUESTION 10 What is the value of the following expression: (9+6*(8-13))/3? A. 25 B. -25 C. 7 D. -7 2 points QUESTION 11 An algorithm can produce an answer in an infinite number of steps. True False 2 points QUESTION 12 A diamond shape symbol on a program flowchart represents a decision to be made. True False 2 points QUESTION 13 The decision point in an IFTHENELSE statement is called an unconditional branch. True False
  • 4. 2 points QUESTION 14 (90+80+95)/3=AVERAGE is a valid assignment statement, assuming AVERAGE has been defined and assigned a value True False 2 points QUESTION 15 Choose a class/object example from the list below. A. program/data member B. girl/Beverly C. Ford/automobile D. car/engine 2 points QUESTION 16 A special kind of method that performs initialization is a(n) A. definer B. override C. constructor D. character 2 points QUESTION 17 In a class definition, operations are specified in A. properties. B. records. C.
  • 5. attributes. D. methods. 2 points QUESTION 18 A data member that is private A. cannot be referred to by methods that are public. B. cannot be referred to from anywhere outside the class in which it is declared. C. is usable only by a constructor method. D. must be defined before data members that are public are defined. 2 points QUESTION 19 Packaging data methods and members into a single well-defined programming unit is known as A. overriding B. data hiding C. encapsulation D. classification 2 points QUESTION 20 If a method is defined wisely, users of the method don’t have to know how the method is implemented. True False 2 points QUESTION 21 Use of parameters is not supported for constructor methods. True False
  • 6. 2 points QUESTION 22 A class represents a template from which any number of objects can be created. True False 2 points QUESTION 23 Inheritance is A. a mechanism that uses generalization/specialization relationships. B. a mechanism for relating classes and objects. C. a relationship that establishes levels in a class hierarchy. D. a mechanism to share identifications and descriptions. 2 points QUESTION 24 A base class may also be called a(n) A. superclass. B. subclass. C. derived class. D. existent class. 2 points QUESTION 25 How is generalization/specialization represented on a UML class diagram? A. a solid line. B. an unfilled arrow. C. a filled diamond.
  • 7. D. a dashed line. 2 points QUESTION 26 A polymorphic method A. has multiple implementations within the same class definition. B. is uniquely identified by the data types of its arguments. C. can be used in a subclass if it’s not used in a base class. D. has the same name as another method within the same class hierarchy. 2 points QUESTION 27 Another name for a subclass is a(n) A. described class. B. inherited class. C. derived class. D. parent class. 2 points QUESTION 28 Inheritance takes advantage of an existing generalization/specialization relationship. True False 2 points QUESTION 29 A subclass can contain a new design of an inherited method. True False 2 points QUESTION 30
  • 8. When two constructors are given in a class, they execute in sequence during processing. True False 2 points QUESTION 31 A single driver program may instantiate two or more instances of the same class. True False 2 points QUESTION 32 Polymorphism is used extensively in commercial programming. True False 2 points QUESTION 33 Choose a class/object example from the list below. A. program/data member B. girl/Beverly C. Ford/automobile D. car/engine 2 points QUESTION 34 A special kind of method that performs initialization is a(n) A. definer B. override C. constructor D. character 2 points
  • 9. QUESTION 35 In a class definition, operations are specified in A. properties. B. records. C. attributes. D. methods. 2 points QUESTION 36 A data member that is private A. cannot be referred to by methods that are public. B. cannot be referred to from anywhere outside the class in which it is declared. C. is usable only by a constructor method. D. must be defined before data members that are public are defined. 2 points QUESTION 37 Packaging data methods and members into a single well-defined programming unit is known as A. overriding B. data hiding C. encapsulation D. classification 2 points QUESTION 38 If a method is defined wisely, users of the method don’t have to know how the method is implemented.
  • 10. True False 2 points QUESTION 39 Use of parameters is not supported for constructor methods. True False 2 points QUESTION 40 Overloading can occur between two or more classes but cannot occur within a single class. True False 2 points QUESTION 41 A single method cannot be both public and private at the same time. True False 2 points QUESTION 42 A class represents a template from which any number of objects can be created. True False 2 points QUESTION 43 Inheritance is A. a mechanism that uses generalization/specialization relationships. B. a mechanism for relating classes and objects. C. a relationship that establishes levels in a class hierarchy. D. a mechanism to share identifications and descriptions. 2 points QUESTION 44 A base class may also be called a(n)
  • 11. A. superclass. B. subclass. C. derived class. D. existent class. 2 points QUESTION 45 How is generalization/specialization represented on a UML class diagram? A. a solid line. B. an unfilled arrow. C. a filled diamond. D. a dashed line. 2 points QUESTION 46 Another name for a subclass is a(n) A. described class. B. inherited class. C. derived class. D. parent class. 2 points QUESTION 47 Inheritance takes advantage of an existing generalization/specialization relationship. True False 2 points
  • 12. QUESTION 48 A subclass can contain a new design of an inherited method. True False 2 points QUESTION 49 When two constructors are given in a class, they execute in sequence during processing. True False 2 points QUESTION 50 A single driver program may instantiate two or more instances of the same class. True False A. collection of operations organized in response to a requirements statement. B. combination of people, equipment, and procedures that work together to perform a specific function. C. detailed plan for the solution to a well-defined problem. D. a series of processes that involve one or more computers. Solution 1. b. combination of people, equipment, and procedures that work together to perform a specific function. 2. a. system development life cycle 3. b. system flowchart 4. d. pseudcode 5. true 6. true 7. false 8. d. sequence 9. d. variable
  • 13. 10. d.-7 11. false 12. true 13. false 14. false 15.a. 16.c. constructors 17. d. methods 18. b.cannot be referred to from anywhere outside the class in which it is declared. 19. c. encapsulation 20. false 21. false 22. true 23. a mechanism that uses generalization/specialization relationships. 24. super class 25. solid line 26. has the same name as another method within the same class hierarchy. 27. derived class 28. true 29.false 30. false 31. false 32. false 33. a. program/data member 34. c. constructor 35. methods 36. d. must be defined before data members that are public are defined. 37. c. encapsulation 38. false 39. false 40. true 41. false 42. true 43. a. a mechanism that uses generalization/specialization relationships. 44. a. super class 45. a. solid line
  • 14. 46. c. derived class 47. True 48. True 49. false( No, only the constructor that fits the arguments you passed will execute.) 50. True