University SE TheoryQuestions
University SE TheoryQuestions
Question Bank
register a course if i) he/she does not meet the prerequisites ii) the students
registered in the course exceed the capacity of the classroom, iii) the course
has a time conflict with other courses in the same term
29.List evolutionary models and explain spiral in detail.
30.Develop the SRS for Hospital Management System.
31.Hospital management system is a process of implementing all the activities
of the hospital in a computerized automated way to fasten the performance.
32.This system is to maintain the patient details, lab reports and to calculate the
bill of the patient.You can also manually edit any patient details and issue
bill receipt to patient within few seconds. SRS for the Hospital management
System should include the following:
a. Product perspective
b. Scope and objective
c. Functional requirements
d. Nonfunctional requirements
33.A distance learning institute decides to use e-learning software to ease its
regular functioning of the program. Through this e-learning tool students can
register to various courses, appear for online exams, download study
material, upload assignment s online, view lecture videos etc. the faculty can
upload study materials, conduct exams, teach one or many courses. The
institute can check student and faculty information, collect fees, pay salary,
display results and so on. Create an SRS for the institute that includes
following
a) Product perspective
b) Scope and objective
c) Functional requirements
d) Nonfunctional requirements.
34.A customer visits the online shopping portal. He may buy items or hust visit
the page and logout. The customer can select a segment, then a category and
brand to get different products in the desired brand.
35.The customer can select product for purchasing. The process can be repeated
for more items. Once the customer finishes the selecting product/s. the cart
can be viewed. If the customer wants to edit the final cart it can be done. For
completing the process of purchase and payment the customer has to login
the portal. If the customer is visiting for the first time, he should do the
registration process first, else he can directly login to continue. Final cart is
submitted for payment and the delivery address is confirmed by the
customer. Confirmation is given to the customer through shipment Id and
product list.SRS for this should include
a. Product perspective
b. Scope and objective
c. Functional requirements
Department Of Computer Engineering
d. Nonfunctional requirements
36. Develop the SRS for the following scenario
A school has one or more department. Department offers one or more
subjects. A particular subject will be offered by only one department.
Department has instructors and instructors can work for one or more
departments. Students can enroll in up to 5 subjects in a school. Instructor
can teach upto 3 subjects. The same subject can be taught by the different
instructors. Students can be enrolled in more than one school.
37.SRS for the school should be include following:
a. Product perspective
b. Scope and objective
c. Functional requirements
d. Nonfunctional requirements
38.Prepares srs FOR THE course management system.
39.Explain the functional requirements.
40.Prepare SRS for Railway reservation system.Explain design principles
41.Write short note on User interface design.
42.Illustrate design issues.
43.Explain the LOC
44.Explain the FP estimation techniques in detail.
45.Explain the COCOMO model.
46.Explain DFD in detail with an example.
47.Explain different types of coupling in detail.
48.Explain different types of cohesion in detail.
49. Explain design concept Abstraction and Modularity
50.What are different Architectural styles?
51. Find Cyclomatic Complexity of following code
1) int x,y,power; float z;
2) input(x,y)
3) if(y<0)
4) power=-y;
5) else
6) power= y;
7) z=1;
8) while(power!=0)
9) { z=z*x;
10) Power=power-1
11) }
12) If(y<0)
13) Z=1/z
14) Output(z)
15) End
Department Of Computer Engineering