New 2
New 2
location ?
A] Contiguous
B] Random
C] Both Contiguous and Random
D] None of the options
21] Which one of the following tags is used to display a web page
within a web page ?
A] link
B] image
C] iframe
D] mark
PRIMER DUMP
1. If you are asked to do a modular software design, which combination of coupling and
cohesions
should you use for designing the software?
a. High cohesion and high coupling
b. High cohesion and low coupling
c. Low cohesion and high coupling
d. Low cohesion and low coupling
3. What kind of controlled structure is used when we don’t know the exact number of
times a
code needs to be executed?
a. switch
b. while
c. for
d. if-else
6. Which two phases of feature driven development are repeated until no more feature
exist?
a. Develop an overall model
b. Plan by feature
c. Design by feature
d. Build a feature list
e. Build by feature
a. b and c
b. c and e
c. b and e
d. d and b
9. Arrow symbols in the flowchart is used to show the sequence of steps and the
relationship
among them. State true and false
a. True
b. False
14. Predict the output of the following statement. Select substr(“Yellow is A colour”,1,5)
from
dual;
a. Yellow
b. Yel
c. Yello
d. elow
17. Agile methodology does not accepts change of requirements at any stage
a. True
b. False
19. Which of the given options are true with respect to arrays?
a. Array size is fixed
b. The element of an array can be accessed using index.
c. Array element can be sorted by decreasing order
d. Negative values cannot be placed in an array.
20. Name the type of join used to include rows that do not have matching values
a. Cartesian product
b. inner join
c. non equi-join
d. outer join
27. Raghav has developed an application to automate the billing process of the Aarvee
Departmental Store. When the product is in operation, the client found that the place of
the phone
number, it prints the Customer ID. So he approaches Raghav to fix the issue. What type of
Maintenance does the above scenario depict?
a. Corrective
b. Adaptive
c. Predictive
d. Preventive
28. Consider the scenario: You have written a code to display a menu on the screen and
some
operation are preformed based on the given user input. Which control structure would
you use, so
that the menu is guaranteed to show/display at least once on the screen, before
performing the
operation.
a. for loop
b. While loop
c. Do-While loop
d. Case
29. Predict the output for the given pseudo code snippet. SET count = 1
While count less than or equal to 5
Print “Hello, world”
Count = count + 1
END WHILE
a. Prints” Hello, world” 5 times
b. Prints “Hello, world” 6 times
c. loop goes on infinitely
d. Prints “Hello, world” 4 times
30. Pinky and Raju are working on an insurance project. They are not aware of SVN. So
they created
a common project on the server. Both retrieved the project from the server. They made
relevant
changes to the life. First Raju saved the changes to the server. Next Pinky saved her
project identify
which of the given statements are true.
a. Both their changes get updated on the server.
b. Pinky’s changes alone are stored and when Raju tries the upload, the server notifies the
differences.
c. Both Pinky and Raju’s changes get rolled back.
d. Pinky’s project over writes the changes done by Raju.
31. Statement: For a logically cohesive module, there are some activities to be
implemented. These
activities are preferred from inside the module itself.
Is the above given Statement true? If not, choose the correct option to make it true.
a. The activities are selected from outside the module.
b. The activities are selected in a random manner.
c. The activities are selected in a sorted manner.
d. The given statement is true.
32. does the special group or group 0 is included while coupling groups using the
groupCount in
java.
a. True
b. False