SlideShare a Scribd company logo
1 of 5
1. Which is not a step in the Problem-Solving phase?
A. Analysis and Specification
B. Translate the algorithm (the general solution) into a programming language
C. Specify the required data types and the logical sequences of steps that solve the
problem
D. Follow the steps exactly to see if the solution really does solve the problem
2. Which is not a step in the Implementation phase?
A. Testing
B. Translate the algorithm (the general solution) into a programming language
C. Specify the required data types and the logical sequences of steps that solve the
problem
D. Have the computer follow the instructions. Then manually check the results. If you
find errors, analyze the program and the algorithm to determine the source of the
errors, and then make corrections
3. Which is a step in the Maintenance phase?
A. Modify the program to meet changing requirements or to correct any errors that show
up while using it
B. Specify the required data types and the logical sequences of steps that solve the
problem
C. Translate the algorithm (the general solution) into a programming language
D. Develope a general solution for each piece called an algorithm
4. Please choose the correct order of following steps relating to the program development
S1-Document & maintain the program
S2-Define the problem
S3-Coding
S4-Outline the solution
A. S2->S1->S3->S4
B. S1->S2->S3->S4
C. S2->S4->S3->S1
D. S3->S2->S4->S1
5. Which item is not a recommendaton when writing pseudo codes?
A. Each instruction/step is written on a separate line
B. Keywords and indentation are used to signify particular control structures
C. Each set of instructions is written from top to bottom, with only one entry and one exit
D. Try to keep each instruction/step as short as possible
6. What is an example of the information-receiving operation of a computer?
A. Read (information from a file)
B. Write (information to a file)
C. Use actual mathematical symbols or the words for the symbols (+, -, *, /)
D. Giving data an initial value: Initialize, Set
7. Please select one item which is not a guide when writing pseudo code
A. Keywords are written in CAPITALS
B. Structural elements might come separately
C. Indenting is used to show structure in the algorithm
D. The names of subprograms are underlined
8. What can we do with the Circle symbol when drawing the flowchart to represent the
algorithm?
A. Use it to represent an event which occurs automatically. Such an event will trigger a
subsequent action, for example `receive telephone call’, or describe a new state of
affairs.
B. Use it to represent an event which is controlled within the process. Typically this will be a
step or action which is taken. In most flowcharts this will be the most frequently used
symbol
C. Use it to represent a decision point in the process. Typically, the statement in the symbol
will require a `yes' or `no' response and branch to different parts of the flowchart
accordingly
D. Use it to represent a point at which the flowchart connects with another process. The
name or reference for the other process should appear within the symbol
9. Please select the best variable name for an employee's last name
A. empLastName
B. lastNameOfTheEmployeeInQuestion.
C. emplastname
D. empLstNm
10. Which structure theorem is used n a computer program or algorithm
to determine which particular step or set of steps is to be executed?
A. Sequence
B. Selection
C. Repetition
D. Subprogram
11. What is incorrect function of the parameter using in communicating between modules?
A. To pass information from a calling module to a subordinate module
B. To pass information from a subordinate module to its calling module
C. To fulfil a two-way communication role
D. To store the reference data
12. In below definitions on the global data, which one is incorrect?
A. Data that can be used by all the modules in a program
B. Every module in the program can access and change data
C. Variables which are defined within the sub module
D. Lifetime of a global variable spans the execution of the whole program
13. Please choose correct definition of the module parameters
A. Reference parameters pass a copy of the value of a parameter from one module to
another
B. Value parameter pass the memory address of a parameter from one module to another
C. Formal parameters are the one that appear when a submodule is defined
D. Variables and expressions that are passed to a submodule in a particular call are called
formal parameters
14. The phrase "Two loops, one nested in the other" presents which kind of
cohesion/coupling?
A. Low Coupling
B. High Coupling
C. Low Cohesion
D. High Cohesion
15. What type of coupling when “One module refers to part of another directly”?
A. Content Coupling
B. Common Coupling
C. Control Coupling
D. Stamp Coupling
16. If it’s hard to reuse calling module without including the called one, then what type of
coupling has been used?
A. Content Coupling
B. Common Coupling
C. Control Coupling
D. Stamp Coupling
17. What type of coupling when “Both modules share the same data”?
A. Content Coupling
B. Common Coupling
C. Control Coupling
D. Stamp Coupling
18. What type of coupling when “One module controls decisions made by other module.”?
A. Content Coupling
B. Common Coupling
C. Control Coupling
D. Stamp Coupling
19. What type of coupling if “Modules pass data structures but only use part of them.”?
A. Content Coupling
B. Common Coupling
C. Control Coupling
D. Stamp Coupling
20. What type of coupling when “Modules communicate only through data which is used”?
A. Common Coupling
B. Control Coupling
C. Stamp Coupling
D. Data Coupling
21. A module “Calculator” is designed to perform math’s operations containing following
actions: (multiply numbers, print to output stream result value, search numbers in string
result). What is the characteristic of this module?
A. Low Coupling
B. High Coupling
C. Low Cohesion
D. High Cohesion
22. A module is designed with operation “init()”, that is to call and execute a series of also
“init()” of many other modules. What is the characteristic of this module?
A. Low Coupling
B. High Coupling
C. Low Cohesion
D. High Cohesion
23. “To perform exactly one action or achieve a single goal” is “Low Cohesion” or “High
Cohesion”?
A. Low Coupling
B. High Coupling
C. Low Cohesion
D. High Cohesion
24. What type of cohesion if a module whose elements perform similar activities and in
which the activities to be executed are chosen from outside the module?
A. Logical Cohesion
B. Temporal Cohesion
C. Procedural Cohesion
D. Communicational Cohesion
25. What type of cohesion if a module whose elements are functions that are related in
time?
A. Logical Cohesion
B. Temporal Cohesion
C. Sequential Cohesion
D. Functional Cohesion
26. What type of cohesion if a module whose elements are involved in different activities, but
the activities are sequential?
A. Functional Cohesion
B. Temporal Cohesion
C. Procedural Cohesion
D. Communicational Cohesion
27. What type of cohesion if a module whose elements perform different functions, but each
function references the same input information or output?
A. Communicational Cohesion
B. Sequential Cohesion
C. Functional Cohesion
D. Temporal Cohesion
28. What type of cohesion if a module whose functions are related such that output data
from one function serves as input data to the next function?
A. Communicational Cohesion
B. Functional Cohesion
C. Procedural Cohesion
D. Sequential Cohesion
29. Which pair refers to a good design?
A. Low Coupling & Low Cohesion
B. Low Coupling & High Cohesion
C. High Coupling & Low Cohesion
D. High Coupling & High Cohesion

More Related Content

What's hot

Unit 1-problem solving with algorithm
Unit 1-problem solving with algorithmUnit 1-problem solving with algorithm
Unit 1-problem solving with algorithmrajkumar1631010038
 
Program design and problem solving techniques
Program design and problem solving techniquesProgram design and problem solving techniques
Program design and problem solving techniquesDokka Srinivasu
 
Algorithm - Introduction
Algorithm - IntroductionAlgorithm - Introduction
Algorithm - IntroductionMadhu Bala
 
Python Programming | JNTUK | UNIT 1 | Lecture 5
Python Programming | JNTUK | UNIT 1 | Lecture 5Python Programming | JNTUK | UNIT 1 | Lecture 5
Python Programming | JNTUK | UNIT 1 | Lecture 5FabMinds
 
The analysis synthesis model of compilation
The analysis synthesis model of compilationThe analysis synthesis model of compilation
The analysis synthesis model of compilationHuawei Technologies
 
Algorithms and flowcharts
Algorithms and flowchartsAlgorithms and flowcharts
Algorithms and flowchartsSajib
 
Intro To C++ - Class 12 - For, do … While
Intro To C++ - Class 12 - For, do … WhileIntro To C++ - Class 12 - For, do … While
Intro To C++ - Class 12 - For, do … WhileBlue Elephant Consulting
 
Problem Solving Techniques and Introduction to C
Problem Solving Techniques and Introduction to CProblem Solving Techniques and Introduction to C
Problem Solving Techniques and Introduction to CPrabu U
 
Algorithm defination, design & Implementation
Algorithm defination, design & ImplementationAlgorithm defination, design & Implementation
Algorithm defination, design & ImplementationBilal Maqbool ツ
 
SYNTAX Directed Translation PPT || Compiler Construction
SYNTAX Directed Translation PPT || Compiler Construction SYNTAX Directed Translation PPT || Compiler Construction
SYNTAX Directed Translation PPT || Compiler Construction Zain Abid
 
Csc1100 lecture01 ch01 pt2-paradigm
Csc1100 lecture01 ch01 pt2-paradigmCsc1100 lecture01 ch01 pt2-paradigm
Csc1100 lecture01 ch01 pt2-paradigmIIUM
 
Algorithm and Programming (Introduction of Algorithms)
Algorithm and Programming (Introduction of Algorithms)Algorithm and Programming (Introduction of Algorithms)
Algorithm and Programming (Introduction of Algorithms)Adam Mukharil Bachtiar
 
Introduction to problem solving in c++
Introduction to problem solving in c++Introduction to problem solving in c++
Introduction to problem solving in c++Online
 
Chapter 6 algorithms and flow charts
Chapter 6  algorithms and flow chartsChapter 6  algorithms and flow charts
Chapter 6 algorithms and flow chartsPraveen M Jigajinni
 

What's hot (18)

Unit 1-problem solving with algorithm
Unit 1-problem solving with algorithmUnit 1-problem solving with algorithm
Unit 1-problem solving with algorithm
 
Program design and problem solving techniques
Program design and problem solving techniquesProgram design and problem solving techniques
Program design and problem solving techniques
 
Algorithm - Introduction
Algorithm - IntroductionAlgorithm - Introduction
Algorithm - Introduction
 
Python Programming | JNTUK | UNIT 1 | Lecture 5
Python Programming | JNTUK | UNIT 1 | Lecture 5Python Programming | JNTUK | UNIT 1 | Lecture 5
Python Programming | JNTUK | UNIT 1 | Lecture 5
 
The analysis synthesis model of compilation
The analysis synthesis model of compilationThe analysis synthesis model of compilation
The analysis synthesis model of compilation
 
Compiler lecture 07
Compiler lecture 07Compiler lecture 07
Compiler lecture 07
 
Algorithms and flowcharts
Algorithms and flowchartsAlgorithms and flowcharts
Algorithms and flowcharts
 
Intro To C++ - Class 12 - For, do … While
Intro To C++ - Class 12 - For, do … WhileIntro To C++ - Class 12 - For, do … While
Intro To C++ - Class 12 - For, do … While
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
Algorithm
AlgorithmAlgorithm
Algorithm
 
Problem solving and design
Problem solving and designProblem solving and design
Problem solving and design
 
Problem Solving Techniques and Introduction to C
Problem Solving Techniques and Introduction to CProblem Solving Techniques and Introduction to C
Problem Solving Techniques and Introduction to C
 
Algorithm defination, design & Implementation
Algorithm defination, design & ImplementationAlgorithm defination, design & Implementation
Algorithm defination, design & Implementation
 
SYNTAX Directed Translation PPT || Compiler Construction
SYNTAX Directed Translation PPT || Compiler Construction SYNTAX Directed Translation PPT || Compiler Construction
SYNTAX Directed Translation PPT || Compiler Construction
 
Csc1100 lecture01 ch01 pt2-paradigm
Csc1100 lecture01 ch01 pt2-paradigmCsc1100 lecture01 ch01 pt2-paradigm
Csc1100 lecture01 ch01 pt2-paradigm
 
Algorithm and Programming (Introduction of Algorithms)
Algorithm and Programming (Introduction of Algorithms)Algorithm and Programming (Introduction of Algorithms)
Algorithm and Programming (Introduction of Algorithms)
 
Introduction to problem solving in c++
Introduction to problem solving in c++Introduction to problem solving in c++
Introduction to problem solving in c++
 
Chapter 6 algorithms and flow charts
Chapter 6  algorithms and flow chartsChapter 6  algorithms and flow charts
Chapter 6 algorithms and flow charts
 

Viewers also liked (9)

week-24x
week-24xweek-24x
week-24x
 
ch14
ch14ch14
ch14
 
week-18x
week-18xweek-18x
week-18x
 
week-10x
week-10xweek-10x
week-10x
 
week-1x
week-1xweek-1x
week-1x
 
week-11x
week-11xweek-11x
week-11x
 
BrainFingerprintingpresentation
BrainFingerprintingpresentationBrainFingerprintingpresentation
BrainFingerprintingpresentation
 
ch6
ch6ch6
ch6
 
DISTRIBUTED INTERACTIVE VIRTUAL ENVIRONMENT
DISTRIBUTED INTERACTIVE VIRTUAL ENVIRONMENTDISTRIBUTED INTERACTIVE VIRTUAL ENVIRONMENT
DISTRIBUTED INTERACTIVE VIRTUAL ENVIRONMENT
 

Similar to Which is not a step in the problem

Problem Solving Techniques
Problem Solving TechniquesProblem Solving Techniques
Problem Solving TechniquesAshesh R
 
Kality CS Model_Exit_Exams_with_answer - Copy (2).doc
Kality CS Model_Exit_Exams_with_answer - Copy (2).docKality CS Model_Exit_Exams_with_answer - Copy (2).doc
Kality CS Model_Exit_Exams_with_answer - Copy (2).docAnimutGeremew3
 
Pega 7 CSA DUMPS,pega csa dumps
Pega 7 CSA DUMPS,pega csa dumps Pega 7 CSA DUMPS,pega csa dumps
Pega 7 CSA DUMPS,pega csa dumps Ashock Roy
 
Book management system
Book management systemBook management system
Book management systemSHARDA SHARAN
 
Question đúng cnu
Question đúng cnuQuestion đúng cnu
Question đúng cnuPhamHoc
 
Contact management system
Contact management systemContact management system
Contact management systemSHARDA SHARAN
 
Which of the following is not one of the rules cited in class for making e ma...
Which of the following is not one of the rules cited in class for making e ma...Which of the following is not one of the rules cited in class for making e ma...
Which of the following is not one of the rules cited in class for making e ma...josbuttlewr116
 
Technical_Interview_Questions.pdf
Technical_Interview_Questions.pdfTechnical_Interview_Questions.pdf
Technical_Interview_Questions.pdfadityashukla939020
 
Bt0066 database management system2
Bt0066 database management system2Bt0066 database management system2
Bt0066 database management system2Techglyphs
 
one of the rules cited in class for making e-mail more effective Experience T...
one of the rules cited in class for making e-mail more effective Experience T...one of the rules cited in class for making e-mail more effective Experience T...
one of the rules cited in class for making e-mail more effective Experience T...pinck3125
 
C++ Tutorial
C++ TutorialC++ Tutorial
C++ Tutorialfreema48
 
Tcs NQTExam technical questions
Tcs NQTExam technical questionsTcs NQTExam technical questions
Tcs NQTExam technical questionsAniketBhandare2
 
CS8251_QB_answers.pdf
CS8251_QB_answers.pdfCS8251_QB_answers.pdf
CS8251_QB_answers.pdfvino108206
 
Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...
Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...
Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...Akhil Mittal
 
session-1_Design_Analysis_Algorithm.pptx
session-1_Design_Analysis_Algorithm.pptxsession-1_Design_Analysis_Algorithm.pptx
session-1_Design_Analysis_Algorithm.pptxchandankumar364348
 

Similar to Which is not a step in the problem (20)

Problem Solving Techniques
Problem Solving TechniquesProblem Solving Techniques
Problem Solving Techniques
 
Kality CS Model_Exit_Exams_with_answer - Copy (2).doc
Kality CS Model_Exit_Exams_with_answer - Copy (2).docKality CS Model_Exit_Exams_with_answer - Copy (2).doc
Kality CS Model_Exit_Exams_with_answer - Copy (2).doc
 
Pega 7 CSA DUMPS,pega csa dumps
Pega 7 CSA DUMPS,pega csa dumps Pega 7 CSA DUMPS,pega csa dumps
Pega 7 CSA DUMPS,pega csa dumps
 
Book management system
Book management systemBook management system
Book management system
 
EST-MCQ.pdf
EST-MCQ.pdfEST-MCQ.pdf
EST-MCQ.pdf
 
Question đúng cnu
Question đúng cnuQuestion đúng cnu
Question đúng cnu
 
Csharp
CsharpCsharp
Csharp
 
Thi
Thi Thi
Thi
 
Contact management system
Contact management systemContact management system
Contact management system
 
Which of the following is not one of the rules cited in class for making e ma...
Which of the following is not one of the rules cited in class for making e ma...Which of the following is not one of the rules cited in class for making e ma...
Which of the following is not one of the rules cited in class for making e ma...
 
Technical_Interview_Questions.pdf
Technical_Interview_Questions.pdfTechnical_Interview_Questions.pdf
Technical_Interview_Questions.pdf
 
Bt0066 database management system2
Bt0066 database management system2Bt0066 database management system2
Bt0066 database management system2
 
one of the rules cited in class for making e-mail more effective Experience T...
one of the rules cited in class for making e-mail more effective Experience T...one of the rules cited in class for making e-mail more effective Experience T...
one of the rules cited in class for making e-mail more effective Experience T...
 
C++ Tutorial
C++ TutorialC++ Tutorial
C++ Tutorial
 
Lect 3-4 Zaheer Abbas
Lect 3-4 Zaheer AbbasLect 3-4 Zaheer Abbas
Lect 3-4 Zaheer Abbas
 
Tcs NQTExam technical questions
Tcs NQTExam technical questionsTcs NQTExam technical questions
Tcs NQTExam technical questions
 
CS8251_QB_answers.pdf
CS8251_QB_answers.pdfCS8251_QB_answers.pdf
CS8251_QB_answers.pdf
 
Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...
Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...
Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...
 
Unit 1
Unit 1Unit 1
Unit 1
 
session-1_Design_Analysis_Algorithm.pptx
session-1_Design_Analysis_Algorithm.pptxsession-1_Design_Analysis_Algorithm.pptx
session-1_Design_Analysis_Algorithm.pptx
 

Recently uploaded

GBSN - Microbiology (Unit 3)
GBSN - Microbiology (Unit 3)GBSN - Microbiology (Unit 3)
GBSN - Microbiology (Unit 3)Areesha Ahmad
 
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 60009654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000Sapana Sha
 
❤Jammu Kashmir Call Girls 8617697112 Personal Whatsapp Number 💦✅.
❤Jammu Kashmir Call Girls 8617697112 Personal Whatsapp Number 💦✅.❤Jammu Kashmir Call Girls 8617697112 Personal Whatsapp Number 💦✅.
❤Jammu Kashmir Call Girls 8617697112 Personal Whatsapp Number 💦✅.Nitya salvi
 
Pests of mustard_Identification_Management_Dr.UPR.pdf
Pests of mustard_Identification_Management_Dr.UPR.pdfPests of mustard_Identification_Management_Dr.UPR.pdf
Pests of mustard_Identification_Management_Dr.UPR.pdfPirithiRaju
 
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts ServiceJustdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Servicemonikaservice1
 
Grade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its FunctionsGrade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its FunctionsOrtegaSyrineMay
 
9999266834 Call Girls In Noida Sector 22 (Delhi) Call Girl Service
9999266834 Call Girls In Noida Sector 22 (Delhi) Call Girl Service9999266834 Call Girls In Noida Sector 22 (Delhi) Call Girl Service
9999266834 Call Girls In Noida Sector 22 (Delhi) Call Girl Servicenishacall1
 
Dubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai Young
Dubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai YoungDubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai Young
Dubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai Youngkajalvid75
 
Introduction to Viruses
Introduction to VirusesIntroduction to Viruses
Introduction to VirusesAreesha Ahmad
 
Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.Silpa
 
FAIRSpectra - Enabling the FAIRification of Analytical Science
FAIRSpectra - Enabling the FAIRification of Analytical ScienceFAIRSpectra - Enabling the FAIRification of Analytical Science
FAIRSpectra - Enabling the FAIRification of Analytical ScienceAlex Henderson
 
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....muralinath2
 
Thyroid Physiology_Dr.E. Muralinath_ Associate Professor
Thyroid Physiology_Dr.E. Muralinath_ Associate ProfessorThyroid Physiology_Dr.E. Muralinath_ Associate Professor
Thyroid Physiology_Dr.E. Muralinath_ Associate Professormuralinath2
 
chemical bonding Essentials of Physical Chemistry2.pdf
chemical bonding Essentials of Physical Chemistry2.pdfchemical bonding Essentials of Physical Chemistry2.pdf
chemical bonding Essentials of Physical Chemistry2.pdfTukamushabaBismark
 
300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptxryanrooker
 
Module for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learningModule for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learninglevieagacer
 
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedConnaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
Call Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort ServiceCall Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort Serviceshivanisharma5244
 
Factory Acceptance Test( FAT).pptx .
Factory Acceptance Test( FAT).pptx       .Factory Acceptance Test( FAT).pptx       .
Factory Acceptance Test( FAT).pptx .Poonam Aher Patil
 

Recently uploaded (20)

Site Acceptance Test .
Site Acceptance Test                    .Site Acceptance Test                    .
Site Acceptance Test .
 
GBSN - Microbiology (Unit 3)
GBSN - Microbiology (Unit 3)GBSN - Microbiology (Unit 3)
GBSN - Microbiology (Unit 3)
 
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 60009654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
9654467111 Call Girls In Raj Nagar Delhi Short 1500 Night 6000
 
❤Jammu Kashmir Call Girls 8617697112 Personal Whatsapp Number 💦✅.
❤Jammu Kashmir Call Girls 8617697112 Personal Whatsapp Number 💦✅.❤Jammu Kashmir Call Girls 8617697112 Personal Whatsapp Number 💦✅.
❤Jammu Kashmir Call Girls 8617697112 Personal Whatsapp Number 💦✅.
 
Pests of mustard_Identification_Management_Dr.UPR.pdf
Pests of mustard_Identification_Management_Dr.UPR.pdfPests of mustard_Identification_Management_Dr.UPR.pdf
Pests of mustard_Identification_Management_Dr.UPR.pdf
 
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts ServiceJustdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
Justdial Call Girls In Indirapuram, Ghaziabad, 8800357707 Escorts Service
 
Grade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its FunctionsGrade 7 - Lesson 1 - Microscope and Its Functions
Grade 7 - Lesson 1 - Microscope and Its Functions
 
9999266834 Call Girls In Noida Sector 22 (Delhi) Call Girl Service
9999266834 Call Girls In Noida Sector 22 (Delhi) Call Girl Service9999266834 Call Girls In Noida Sector 22 (Delhi) Call Girl Service
9999266834 Call Girls In Noida Sector 22 (Delhi) Call Girl Service
 
Dubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai Young
Dubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai YoungDubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai Young
Dubai Call Girls Beauty Face Teen O525547819 Call Girls Dubai Young
 
Introduction to Viruses
Introduction to VirusesIntroduction to Viruses
Introduction to Viruses
 
Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.Proteomics: types, protein profiling steps etc.
Proteomics: types, protein profiling steps etc.
 
FAIRSpectra - Enabling the FAIRification of Analytical Science
FAIRSpectra - Enabling the FAIRification of Analytical ScienceFAIRSpectra - Enabling the FAIRification of Analytical Science
FAIRSpectra - Enabling the FAIRification of Analytical Science
 
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
Human & Veterinary Respiratory Physilogy_DR.E.Muralinath_Associate Professor....
 
Thyroid Physiology_Dr.E. Muralinath_ Associate Professor
Thyroid Physiology_Dr.E. Muralinath_ Associate ProfessorThyroid Physiology_Dr.E. Muralinath_ Associate Professor
Thyroid Physiology_Dr.E. Muralinath_ Associate Professor
 
chemical bonding Essentials of Physical Chemistry2.pdf
chemical bonding Essentials of Physical Chemistry2.pdfchemical bonding Essentials of Physical Chemistry2.pdf
chemical bonding Essentials of Physical Chemistry2.pdf
 
300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx300003-World Science Day For Peace And Development.pptx
300003-World Science Day For Peace And Development.pptx
 
Module for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learningModule for Grade 9 for Asynchronous/Distance learning
Module for Grade 9 for Asynchronous/Distance learning
 
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verifiedConnaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
Connaught Place, Delhi Call girls :8448380779 Model Escorts | 100% verified
 
Call Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort ServiceCall Girls Ahmedabad +917728919243 call me Independent Escort Service
Call Girls Ahmedabad +917728919243 call me Independent Escort Service
 
Factory Acceptance Test( FAT).pptx .
Factory Acceptance Test( FAT).pptx       .Factory Acceptance Test( FAT).pptx       .
Factory Acceptance Test( FAT).pptx .
 

Which is not a step in the problem

  • 1. 1. Which is not a step in the Problem-Solving phase? A. Analysis and Specification B. Translate the algorithm (the general solution) into a programming language C. Specify the required data types and the logical sequences of steps that solve the problem D. Follow the steps exactly to see if the solution really does solve the problem 2. Which is not a step in the Implementation phase? A. Testing B. Translate the algorithm (the general solution) into a programming language C. Specify the required data types and the logical sequences of steps that solve the problem D. Have the computer follow the instructions. Then manually check the results. If you find errors, analyze the program and the algorithm to determine the source of the errors, and then make corrections 3. Which is a step in the Maintenance phase? A. Modify the program to meet changing requirements or to correct any errors that show up while using it B. Specify the required data types and the logical sequences of steps that solve the problem C. Translate the algorithm (the general solution) into a programming language D. Develope a general solution for each piece called an algorithm 4. Please choose the correct order of following steps relating to the program development S1-Document & maintain the program S2-Define the problem S3-Coding S4-Outline the solution A. S2->S1->S3->S4 B. S1->S2->S3->S4 C. S2->S4->S3->S1 D. S3->S2->S4->S1 5. Which item is not a recommendaton when writing pseudo codes? A. Each instruction/step is written on a separate line B. Keywords and indentation are used to signify particular control structures C. Each set of instructions is written from top to bottom, with only one entry and one exit D. Try to keep each instruction/step as short as possible 6. What is an example of the information-receiving operation of a computer? A. Read (information from a file) B. Write (information to a file) C. Use actual mathematical symbols or the words for the symbols (+, -, *, /) D. Giving data an initial value: Initialize, Set
  • 2. 7. Please select one item which is not a guide when writing pseudo code A. Keywords are written in CAPITALS B. Structural elements might come separately C. Indenting is used to show structure in the algorithm D. The names of subprograms are underlined 8. What can we do with the Circle symbol when drawing the flowchart to represent the algorithm? A. Use it to represent an event which occurs automatically. Such an event will trigger a subsequent action, for example `receive telephone call’, or describe a new state of affairs. B. Use it to represent an event which is controlled within the process. Typically this will be a step or action which is taken. In most flowcharts this will be the most frequently used symbol C. Use it to represent a decision point in the process. Typically, the statement in the symbol will require a `yes' or `no' response and branch to different parts of the flowchart accordingly D. Use it to represent a point at which the flowchart connects with another process. The name or reference for the other process should appear within the symbol 9. Please select the best variable name for an employee's last name A. empLastName B. lastNameOfTheEmployeeInQuestion. C. emplastname D. empLstNm 10. Which structure theorem is used n a computer program or algorithm to determine which particular step or set of steps is to be executed? A. Sequence B. Selection C. Repetition D. Subprogram 11. What is incorrect function of the parameter using in communicating between modules? A. To pass information from a calling module to a subordinate module B. To pass information from a subordinate module to its calling module C. To fulfil a two-way communication role D. To store the reference data 12. In below definitions on the global data, which one is incorrect? A. Data that can be used by all the modules in a program B. Every module in the program can access and change data C. Variables which are defined within the sub module D. Lifetime of a global variable spans the execution of the whole program 13. Please choose correct definition of the module parameters A. Reference parameters pass a copy of the value of a parameter from one module to another B. Value parameter pass the memory address of a parameter from one module to another
  • 3. C. Formal parameters are the one that appear when a submodule is defined D. Variables and expressions that are passed to a submodule in a particular call are called formal parameters 14. The phrase "Two loops, one nested in the other" presents which kind of cohesion/coupling? A. Low Coupling B. High Coupling C. Low Cohesion D. High Cohesion 15. What type of coupling when “One module refers to part of another directly”? A. Content Coupling B. Common Coupling C. Control Coupling D. Stamp Coupling 16. If it’s hard to reuse calling module without including the called one, then what type of coupling has been used? A. Content Coupling B. Common Coupling C. Control Coupling D. Stamp Coupling 17. What type of coupling when “Both modules share the same data”? A. Content Coupling B. Common Coupling C. Control Coupling D. Stamp Coupling 18. What type of coupling when “One module controls decisions made by other module.”? A. Content Coupling B. Common Coupling C. Control Coupling D. Stamp Coupling 19. What type of coupling if “Modules pass data structures but only use part of them.”? A. Content Coupling B. Common Coupling C. Control Coupling D. Stamp Coupling 20. What type of coupling when “Modules communicate only through data which is used”? A. Common Coupling B. Control Coupling C. Stamp Coupling D. Data Coupling 21. A module “Calculator” is designed to perform math’s operations containing following actions: (multiply numbers, print to output stream result value, search numbers in string result). What is the characteristic of this module? A. Low Coupling B. High Coupling C. Low Cohesion D. High Cohesion
  • 4. 22. A module is designed with operation “init()”, that is to call and execute a series of also “init()” of many other modules. What is the characteristic of this module? A. Low Coupling B. High Coupling C. Low Cohesion D. High Cohesion 23. “To perform exactly one action or achieve a single goal” is “Low Cohesion” or “High Cohesion”? A. Low Coupling B. High Coupling C. Low Cohesion D. High Cohesion 24. What type of cohesion if a module whose elements perform similar activities and in which the activities to be executed are chosen from outside the module? A. Logical Cohesion B. Temporal Cohesion C. Procedural Cohesion D. Communicational Cohesion 25. What type of cohesion if a module whose elements are functions that are related in time? A. Logical Cohesion B. Temporal Cohesion C. Sequential Cohesion D. Functional Cohesion 26. What type of cohesion if a module whose elements are involved in different activities, but the activities are sequential? A. Functional Cohesion B. Temporal Cohesion C. Procedural Cohesion D. Communicational Cohesion 27. What type of cohesion if a module whose elements perform different functions, but each function references the same input information or output? A. Communicational Cohesion B. Sequential Cohesion C. Functional Cohesion D. Temporal Cohesion 28. What type of cohesion if a module whose functions are related such that output data from one function serves as input data to the next function? A. Communicational Cohesion B. Functional Cohesion C. Procedural Cohesion D. Sequential Cohesion 29. Which pair refers to a good design? A. Low Coupling & Low Cohesion B. Low Coupling & High Cohesion C. High Coupling & Low Cohesion
  • 5. D. High Coupling & High Cohesion