Exam) 100 Comprehensive Quizzes (No Answers)
Part 1: System Development
Amen Hospital wants to use surgery management system. This system will help to the Doctor
by identifying the surgery activities based on the pre-stored information and give appropriate
message immediately when the doctor misses any activity related to surgery. According to the
above case study, Answer questions number 1 and 2.
1. The software developer team must be given more emphasize which types of software
quality requirements?
A. Flexibility
B. Reliability
C. Modifiability
D. Maintainability
2. What types of software process model is using more fit with the system requirement?
A. Agile model
B. Spiral model
C. Rational Unified Process Model
D. Waterfall model
Ethiopian Airline Company is decided to use automated human resource management system.
Assume you are working in Alsam Software Development Company (ASDC). ASDC agrees
with the Ethiopian Airline Company to develop this system. The Ethiopian Airline Company
administrator says that “the implementation language must be C#’’ but the software developer
team want to implement the system by java programming language. Answer question number
3 and 4 based on the above case study.
3. What type of requirement asked by Ethiopian Airline Company Administrator?
A. Quality requirement
B. Functional requirement
C. Pseudo requirement
D. Analysis requirement
4. Assume you are project manager, what is your decision?
1
, A. Accept the software development team idea and the system will be implementing by
java.
B. Discuss with both Ethiopian airline administrator and software developer team to select
common software programming language. If does not agree, the system development
stop at early stage.
C. Decide to stop system development automatically.
D. According to software engineering rule, the software developer team idea has more
acceptance than clients. Therefore, the system will be implementing by java.
5. Which one of the following false about UML object model can be mapped to relational
database during software design phase?
A. Each class is mapped to its own table
B. Each class attribute is mapped to a column in the table
C. Each class method is mapped to a relationship in the table
D. An instance of a class represents a row in the table
6. Assume below two sentences are described non-functional requirements of Addis Ababa
University Student Information Management System (SIMS). What types of problem have
been between those two non- functional requirement statements?
“The system must work 24 hours per day, 7 days per week and 365 days per year’’ “The
system can maintain within 3 hours’’
A. Consistency
B. Completeness
C. Traceability
D. Realism
7. What is the correct HTML for creating a hyperlink?
A. <a>http://www.google.com</a>
B. <a name = “http://www.google.com”>Google.com</a>
C. <a href = “http://www.google.com”>Google</a> D. <a url =
“http://www.google.com”>Google.com</a>
8. How can you open a link in a new tab/browser window?
A. <a href=”url” target=” _blank”>
2
, B. <a href=”url” new>
C. <a href=”url” target=”new”>
D. <a href=”url”>new tab</a>
9. In html, which attribute is used to specify that an input field must be filled out?
A. formvalidate
B. required
C. validate
D. placeholder
10. What is the correct HTML for inserting an image:
A. <img alt=”MyImage”>image.gif</img>
B. <imghref=” image.gif” alt=” MyImage”>
C. <image src=” image.gif” alt=” MyImage”>
D. <imgsrc=” image.gif” alt=” MyImage”>
11. __________ is a metalanguage used to define new markup languages, and help you to
create a language crafted specifically for your application or domain.
A. PHP
B. HTML
C. XML
D. JavaScript
12. __________ are the software programs people use to consume the web?
A. Languages
B. Browsers
C. HTTP
D. Web Servers
13. How do you create a cookie in PHP?
A. setcookie()
B. createcookie
C. makecookie()
D. addcookie
14. How do you create an array in PHP? A. $cars = "Volvo", "BMW","Toyota";
3