Design of Computer Final Revision
Design of Computer Final Revision
*Choose*
1)...............is once you understand the problem and have
selected the overall approach you start to design and program
the software.
(software design , software development , software evaluation ,
software validation)
2)................is where software is modified and changed for
market requirements.
(software process, software evaluation, software validation,
software
specifications)
3)...............is the process of defining software methods,
functions and objects.
(software process, software design , software specification,
object modelling )
4)...............is where software is checked to ensure it meet
customer satisfaction.
(software design , software validation , software development,
software process)
5)............focus on the data elements that are needed and
operations to be
performed on this data elements.
(software design , object oriented modelling , sequence
diagram, case diagram)
6).............it illustrates the objects that participate in a use case
and the messages
that pass between them over time for one use case.
(case diagram , software process , sequence diagram , object
oriented modelling)
7)...............in the object-oriented approach, we model the
world in objects, object is an entity that has a well-defined role
in the application domain and has state, behaviour and identity.
( software evaluation, case diagram , sequence diagram ,
unified modeling language )
28)int main(){
x[5]={23,44,21,56,78};
cout<<x[2];
}
a)23 b)44 c)21 d)56
29)int main(){
x[5]={23,44,21,56,78};
cout<<x[5];
}
a)23 b)44 c)78 d)no correct answer
30)int main(){
x[5]={23,44,21,56,78};
cout<<x[4];
}
a)23 b)44 c)78 d)56
====================================================
*true / false*
1. The programmer begins the programming
process by analyzing the problem and developing a general
solution called an algorithm. ()
Guide Answer
*Choose*
1)software development
2)software evaluation
3)software design
4)software validation
5)object oriented modeling
6)sequence diagram
7)case diagram
8)Algorithmic problem solving
9)A and B
10)Algorithmic
11)flowchart
12)three
13)six
14)six
15)5
16)8
17)50
18)1++
19)1- -
20)//
21)float
22)char
23)string
24)bool
25)&&
26)||
27)break
28)21
29)no correct answer
30)78
*True or False*
1)T
2)T
3)F *are not programs*
4)T
5)T
6)F *from top to bottom and from left to right*
7)T
8)T
9)F *are all the same*
10)T
11)F *C language*
12)T
13)F *identifier*
14)F *variables*
15)F *character*
16)F *true or false*
17)T
18)T
19)F *output*
20)T
21)F *arithmetic*
22)F *%*
23)F *increase*
24)T
25)F *||*
26)T
27)F *if-else-if*
28)T
29)T
30)T
31)F *must be*
32)F *multidimensional array*
*Assay*
1) write a program to display the grade of student that
user will enter, if you know that ‘A’ is from 100-85 ,‘B’ is
from 84-75 ,‘C’ is from 74-65 , ‘D’ is from 64-50, ‘F’ is
from 49-0 , else print ‘error’
2) write a program to sum numbers from 1 to 100
3) write a program to make the (sum , subtract, multiply,
divide )on two numbers the user add them.
THANK YOU