Question 1
Which of the following is an example of a high-level programming language?
Question 2
In object-oriented programming, what does encapsulation achieve?
Question 3
Which of the following best describes a “framework” in software development?
Question 4
Which Microsoft technology is commonly used for building web applications?
Question 5
Which testing approach best helps developers detect regressions quickly while allowing safe refactoring?
Question 6
Which cloud model offers the most control to the developer?
Question 7
What is the purpose of REST APIs?
Question 8
Which statements about the .NET GC are true?
Question 9
In functional programming, functions can have side effects that modify global state.
Question 10
In non-strict mode, what is logged?
const obj = {
x: 1,
f() { return this.x; }
};
const g = obj.f;
console.log(g());
Question 11
What is the purpose of a load balancer in a web application?
Question 12
In Java, which keyword prevents a method from being overridden?
Question 13
Which AWS service provides managed container orchestration using Kubernetes?
Question 14
What problems can occur when using synchronous blocking calls in web applications?
Question 15
Which statements are true?
Question 16
Which of the following is NOT a characteristic of Agile methodology?
Question 17
Which statements about record types are true?
Question 18
Which Azure service provides serverless event driven compute for building applications without provisioning servers?
Question 19
Which version control system is most commonly used with GitHub and Azure DevOps?
Question 20
Which service is best fit for running short lived functions in response to S3 events without managing servers on AWS?