2024-06-01 11:08:26 +03:00
{
"questions" : [
2024-06-01 17:54:19 +03:00
{
"id" : 1 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is the purpose of the 'std' namespace in C++?" ,
2024-06-01 17:54:19 +03:00
"answer" : "The 'std' namespace in C++ is used to define the standard C++ library functions and objects."
} ,
{
"id" : 2 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What does the 'cout' object in C++ do?" ,
2024-06-01 17:54:19 +03:00
"answer" : "'cout' is used to output data to the standard output, typically the screen."
} ,
{
"id" : 3 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "How do you declare an integer variable in C++?" ,
2024-06-01 17:54:19 +03:00
"answer" : "You declare an integer variable in C++ using the 'int' keyword followed by the variable name, e.g., 'int myVar;'."
} ,
{
"id" : 4 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is a pointer in C++?" ,
2024-06-01 17:54:19 +03:00
"answer" : "A pointer is a variable that holds the memory address of another variable."
} ,
{
"id" : 5 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is the use of the 'new' operator in C++?" ,
2024-06-01 17:54:19 +03:00
"answer" : "The 'new' operator is used to dynamically allocate memory on the heap."
} ,
{
"id" : 6 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is a class in C++?" ,
2024-06-01 17:54:19 +03:00
"answer" : "A class in C++ is a user-defined type that contains data members and member functions to operate on the data."
} ,
{
"id" : 7 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is inheritance in C++?" ,
2024-06-01 17:54:19 +03:00
"answer" : "Inheritance is a feature in C++ where one class can inherit the properties and methods of another class."
} ,
{
"id" : 8 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "How do you define a function in C++?" ,
2024-06-01 17:54:19 +03:00
"answer" : "A function in C++ is defined by specifying the return type, function name, and parameters, followed by the function body enclosed in curly braces."
} ,
{
"id" : 9 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is a constructor in C++?" ,
2024-06-01 17:54:19 +03:00
"answer" : "A constructor is a special member function of a class that is executed whenever an object of that class is created."
} ,
{
"id" : 10 ,
2024-06-01 20:30:57 +03:00
"category" : "cpp" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is polymorphism in C++?" ,
2024-06-01 17:54:19 +03:00
"answer" : "Polymorphism in C++ allows for functions or methods to be used in different contexts, typically through inheritance and function overriding."
} ,
{
"id" : 11 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is a firewall in cybersecurity?" ,
2024-06-01 17:54:19 +03:00
"answer" : "A firewall is a network security device that monitors and filters incoming and outgoing network traffic based on an organization's previously established security policies."
} ,
{
"id" : 12 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is phishing?" ,
2024-06-01 17:54:19 +03:00
"answer" : "Phishing is a cyber attack that uses disguised email as a weapon to trick the email recipient into believing that the message is something they want or need."
} ,
{
"id" : 13 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is malware?" ,
2024-06-01 17:54:19 +03:00
"answer" : "Malware is malicious software designed to harm, exploit, or otherwise compromise the operation of a computer system."
} ,
{
"id" : 14 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is encryption?" ,
2024-06-01 17:54:19 +03:00
"answer" : "Encryption is the process of converting data into a code to prevent unauthorized access."
} ,
{
"id" : 15 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is a VPN?" ,
2024-06-01 17:54:19 +03:00
"answer" : "A VPN (Virtual Private Network) extends a private network across a public network and enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network."
} ,
{
"id" : 16 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is two-factor authentication?" ,
2024-06-01 17:54:19 +03:00
"answer" : "Two-factor authentication is a security process in which the user provides two different authentication factors to verify themselves."
} ,
{
"id" : 17 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is a DDoS attack?" ,
2024-06-01 17:54:19 +03:00
"answer" : "A DDoS (Distributed Denial of Service) attack is an attempt to make an online service unavailable by overwhelming it with traffic from multiple sources."
} ,
{
"id" : 18 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is social engineering?" ,
2024-06-01 17:54:19 +03:00
"answer" : "Social engineering is the psychological manipulation of people into performing actions or divulging confidential information."
} ,
{
"id" : 19 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is a zero-day vulnerability?" ,
2024-06-01 17:54:19 +03:00
"answer" : "A zero-day vulnerability is a software security flaw that is known to the software vendor but does not have a patch in place to fix the flaw."
} ,
{
"id" : 20 ,
2024-06-01 20:30:57 +03:00
"category" : "cybersec" ,
2024-06-01 17:54:19 +03:00
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is ransomware?" ,
2024-06-01 17:54:19 +03:00
"answer" : "Ransomware is a type of malicious software designed to block access to a computer system until a sum of money is paid."
} ,
{
"id" : 21 ,
"category" : "geography" ,
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is the capital of France?" ,
2024-06-01 17:54:19 +03:00
"answer" : "The capital of France is Paris."
} ,
{
"id" : 22 ,
"category" : "geography" ,
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "Which river is the longest in the world?" ,
2024-06-01 17:54:19 +03:00
"answer" : "The Nile River is considered the longest river in the world."
} ,
{
"id" : 23 ,
"category" : "geography" ,
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is the largest desert in the world?" ,
2024-06-01 17:54:19 +03:00
"answer" : "The Sahara Desert is the largest hot desert in the world."
} ,
{
"id" : 24 ,
"category" : "geography" ,
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "Which country has the largest population?" ,
2024-06-01 17:54:19 +03:00
"answer" : "China has the largest population in the world."
} ,
{
"id" : 25 ,
"category" : "geography" ,
"type" : "none" ,
2024-06-01 21:47:32 +03:00
"text" : "What is the smallest country in the world by area?" ,
2024-06-01 17:54:19 +03:00
"answer" : "Vatican City is the smallest country in the world by area."
}
]
2024-06-01 11:08:26 +03:00
}
2024-06-01 21:36:06 +03:00