Daily Exam Programmer 21-07-2024

Join us on Telegram


Q 1: An example of an analog communication method is
(1) laser beam
(2) microwave
(3) voice grade telephone line
(4) All
Correct Answer: All

Q 2: Alpha testing is done at
(1) User's end
(2) Developer's end
(3) User's and Developer's end
(4) Client's end
Correct Answer: Developer's end

Q 3: Changing an operational information system is
(1) Impossible
(2) Expensive ad Done Selectively
(3) Never required
(4) Usually done
Correct Answer: Expensive ad Done Selectively

Q 4: The .NET framework provides a runtime environment called
(1) RMT
(2) CLR
(3) RCT
(4) RC
Correct Answer: CLR

Q 5: MVC stands for
(1) Model view control
(2) modern view control
(3) model vast control
(4) model view coupling
Correct Answer: Model view control

Q 6: Members of a class specified as.......... are accessible only to methods of that class
(1) Protected
(2) Final
(3) Public
(4) Private
Correct Answer: Private

Q 7:

What will be the output of program?

int x=1, y=6;

while(y--) {

x++;

}

System.out.println("x="+x+"y="+y);

(1) x=6 y=0
(2) x=7 y=0
(3) x=6 y=-1
(4) Compilation error
Correct Answer: x=7 y=0

Q 8: Which of the following is illegal
(1) int *ip;
(2) string s, *sp
(3) int i; double* dp=&i
(4) int* pi=0;
Correct Answer: int i; double* dp=&i

Q 9: Which of the following is not characteristic of an object
(1) Identity
(2) Behavior
(3) Action
(4) State
Correct Answer: Action

Q 10: The SRS document is also known as............... specification
(1) Grey Box
(2) Black Box
(3) White Box
(4) None
Correct Answer: Black Box