Daily Exam Programmer (2023) 18-06-2024

Join us on Telegram


Q 1: System testing falls within the scope of
(1) White box testing
(2) Black box testing
(3) Both of them
(4) None
Correct Answer: Black box testing

Q 2: What are characteristics required for a good software requirement specification (SRS)
(1) Correctness
(2) Completeness
(3) Consistency
(4) All of the above
Correct Answer: All of the above

Q 3: How data store is represented in a data flow diagram
(1) Circle
(2) Full open rectangle
(3) Half open rectangle
(4) full open triangle
Correct Answer: Half open rectangle

Q 4: Project risk factor is considered in
(1) Spiral model
(2) Prototyping model
(3) Waterfall model
(4) Iterative enhancement model
Correct Answer: Spiral model

Q 5: Which of the following is not one of the principles of agile software development method?
(1) Following the plan
(2) Embrace change
(3) Customer involvement
(4) Incremental delivery
Correct Answer: Following the plan

Q 6: Control structures include
(1) iteration
(2) rendezvous statements
(3) exception statement
(4) All of them
Correct Answer: All of them

Q 7: Which of the following transfer execution directly to another page
(1) Server.Transfer
(2) Response.Redirect
(3) Server.Transfer & Response.Redirect
(4) none of them
Correct Answer: Server.Transfer

Q 8:

Which two are acceptable types for x?

switch(x)

{

default:

System.out.printIn("hello");

}

1. byte
2. long
3. char
4. float
 5.short
(1) 1 and 3
(2) 2 and 4
(3) 3 and 5
(4) 4 and 6
Correct Answer: 1 and 3

Q 9: The default value of a static integer variable of a class in java in,
(1) 0
(2) 1
(3) Garbage value
(4) Null
Correct Answer: 0

Q 10: Which of the following is true to declare variable for ASP?
(1) Set
(2) Dim
(3) $
(4) Var
Correct Answer: Dim