EASY
LIC Assistant Mains
IMPORTANT
Earn 100

Which of the following is a desirable property of a module?

50% studentsanswered this correctly

Important Questions on Software Engineering

MEDIUM
LIC Assistant Mains
IMPORTANT
Which of the following is a tool in design phase?
EASY
LIC Assistant Mains
IMPORTANT
Let M be a node that represents an if-then-else node in a Program Graph. Let the number of paths from its if part of the end node is y, and from the else part to the end node is z. If the number of paths from the start node to the node M is  x, then the total number of paths through M is:
MEDIUM
LIC Assistant Mains
IMPORTANT
If X is a case statement in a Program Graph with n cases instead of an if-then-else statement in the previous question with each case leading to only one path to end node, the total number of paths through X is :
EASY
LIC Assistant Mains
IMPORTANT

Which of the following types of maintenance takes the maximum chunk of the total maintenance effort in a typical life cycle of a software product?

EASY
LIC Assistant Mains
IMPORTANT

Which of the following comments about the object-oriented design of software, is not true?

EASY
LIC Assistant Mains
IMPORTANT
Software engineering primarily aims at developing _____.
 
MEDIUM
LIC Assistant Mains
IMPORTANT
The program volume of a source code that has 10 operators including 6 unique operators, and 6 operands including 2 unique operands is:
 
MEDIUM
LIC Assistant Mains
IMPORTANT

Consider the following code for finding the factorial of a given positive integer.
IFACT = 1

DO 100 I = 2, N, 2

100 IFACT = IFACT * I * (I - 1)

For which values of N, the above FORTRAN code doesn't work?