Question 1
What is the purpose of a VPN?
Question 2
Which of the following is a NoSQL database?
Question 3
In which of the following scenarios is a NoSQL database most appropriate?
Question 4
What is the result of the following Java program?
import java.util.*;
public class Main {
public static void main(String[] args) {
Set set = new HashSet();
set.add(""A"");
set.add(""B"");
set.add(""A"");
System.out.println(set.size());
}
}
Question 5
What HTTP status code is returned when a resource is successfully created via a POST request?
Question 6
In Git, what command is used to create a new branch?
Question 7
What is the primary benefit of using immutability in functional programming?
Question 8
Which of the following issues can arise in multi-threaded programs when two threads access shared resources without proper synchronization?
Question 9
Which of the following methods is recommended when deploying a multi-container group that includes only containers?
Question 10
Which of the following algorithms is NOT suitable for leader election in a distributed system?
Question 11
What is the default port number for HTTPS?
Question 12
Which SQL query is used to retrieve all data from the 'users' table?
Question 13
What is the purpose of the .gitignore file in a Git repository?
Question 14
In languages like C++, which type of memory allocation requires explicit deallocation by the programmer?
Question 15
Which statement is true about the async keyword in C#?
Question 16
Which tool is commonly used for Continuous Integration/Continuous Deployment (CI/CD) in DevOps?
Question 17
Which approach is the most efficient way to iterate over a large dataset in Python?
Question 18
Which of the components of the Microsoft 365 platform is used to deliver data external to Azure into Microsoft Graph services and applications?
Question 19
Which of the following tools is used for testing API requests?
Question 20
In Kubernetes, what is the role of a ‘DaemonSet’?