Daily Exam Programmer 22-09-2024

Join us on Telegram


Q 1: ................ is suitable for business that require comparable upstream and downstream data rates
(1) VDSL
(2) ADSL
(3) SDSL
(4) Both 1 and 2
Correct Answer: SDSL

Q 2: .......... is a second-generation cellular phone system used in Europe
(1) GSM
(2) D-AMPS
(3) IS-95
(4) None of the above
Correct Answer: GSM

Q 3: A(N).................. is the interface between a user and an ATM Switch
(1) UNI
(2) NNI
(3) NNN
(4) None of the above
Correct Answer: UNI

Q 4: A key concept of quality control is that all work products
(1) are delivered on time and under budget
(2) have complete documentation
(3) have measurable specification for process outputs
(4) are thoroughly tested before delivery to the customer
Correct Answer: have measurable specification for process outputs

Q 5: Which of following is the central component of any CASE tool?
(1) CASE concentrator
(2) CASE origin
(3) CASE repository
(4) None of the above
Correct Answer: CASE repository

Q 6: The warnier diagram enables analyst
(1) To represent information heirarchy in a compact manner
(2) To estimate the total cost involved
(3) To further identify requirement
(4) None of the above
Correct Answer: To represent information heirarchy in a compact manner

Q 7: A signal processor software is expected to operate for 91.25 days after repair, and the mean software repair time is expected to be 5 minutes. Then the availability of the software is:
(1) 96.9862%
(2) 97.9862%
(3) 98.9962%
(4) 99.9962%
Correct Answer: 99.9962%

Q 8: What DataType is return in IsPostback property?
(1) bit
(2) Boolean
(3) int
(4) string
Correct Answer: Boolean

Q 9: Which of the following can be used to debug .NET application?
(1) Visual Studio .NET
(2) Runtime Debugger
(3) Systems.Diagnostics classes
(4) All of the above
Correct Answer: All of the above

Q 10:

Consider the following Java program:

public class MyClass {

private int myValue = 5;

public void printMyValue() {

System.out.println(myValue);

}

public void setMyValue(int myValue) {

System.out.println(myValue);

this.my Vlaue = myValue;

}

}

public static void main(String[] args) {

MyClass myClass1 = new MyClass();

myClass1.setMyValue(10);

myClass1.printMyValue();

}

Which of the following will the output be?

(1) 5 - 10
(2) 10 - 10
(3) 10 - 5
(4) 5 - 5
Correct Answer: 10 - 10