Question 1
Which AWS service is used for storing files and objects?
Question 2
Which statements are true?
Question 3
Which tool is most commonly used to integrate GitHub Copilot into a developer’s workflow?
Question 4
What is the main role of Microsoft Azure Active Directory?
Question 5
What is the purpose of a load balancer in a web application?
Question 6
Which of the following languages are statically typed?
Question 7
What is the main benefit of Docker containers?
Question 8
What is the main purpose of an IDE?
Question 9
Which AWS service manages relational databases?
Question 10
In a multithreaded application, what is the best way to protect a shared in memory counter from race conditions?
Question 11
In object-oriented programming, what does encapsulation achieve?
Question 12
What is the main purpose of a RESTful API?
Question 13
What is the main benefit of automated testing?
Question 14
Which of the following best describes a Monoid in functional programming?
Question 15
In object-oriented programming, what is inheritance?
Question 16
Which AWS service supports event-driven compute?
Question 17
In a microservices architecture, which pattern is most appropriate for decoupled, asynchronous communication between services?
Question 18
What is the purpose of dependency injection in software design?
Question 19
In non-strict mode, what is logged?
const obj = {
x: 1,
f() { return this.x; }
};
const g = obj.f;
console.log(g());
Question 20
Which paradigm emphasizes immutability?