| S.No | Question ID | English Question | Hindi Question | Answer | Category |
|---|---|---|---|---|---|
| 41 | 000030 | What is the default port for MySQL ? | mysql का डिफ़ॉल्ट पोर्ट क्या है ? | The default port for MySQL is 3306. It is the standard TCP port that MySQL uses to accept client connections unless it has been changed in the server configuration. | mysql |
| 42 | 000022 | What is the difference between a static and a dynamic website ? | स्टैटिक और डायनामिक वेबसाइट में क्या अंतर है ? | A static website displays the same content to every visitor. Its pages are pre-built using HTML and CSS, and content changes only when a developer manually updates the files.A dynamic website generates content in real time based on user interactions or data stored in a database. It uses server-side languages such as PHP, Python, or Node.js, making it interactive and easy to update. | php |
| 43 | 000033 | What is the difference between compilation and execution ? | कंपाइलेशन और रन में क्या अंतर है ? | Compilation is the process of converting the entire source code into machine code before the program runs. It checks for syntax errors and creates an executable file. Execution is the process of running the compiled program (or interpreted code) to perform the required tasks and produce output. | other |
| 44 | 000046 | What is the difference between MySQL and MongoDB ? | MySQL और MongoDB में क्या अंतर है ? | MySQL is a relational database management system (RDBMS) that stores data in tables with rows and columns and uses SQL for querying. It is best suited for structured data and applications requiring complex relationships. MongoDB is a NoSQL document database that stores data in JSON-like documents (BSON). It offers a flexible schema, making it ideal for handling unstructured or rapidly changing data. | mysql |
| 45 | 000048 | What is the difference between `let`, `var`, and `const` in JavaScript ? | जावास्क्रिप्ट में let , var और const में क्या अंतर है ? | var is Function-scoped, can be redeclared and updated, and is hoisted with undefined. let is Block-scoped, can be updated but cannot be redeclared in the same scope. while const is Block-scoped, cannot be redeclared or reassigned after initialization, making it suitable for constant values. | javascript |
| 46 | 000021 | What is the Windows OS? | विंडोज os क्या है ? | Windows OS (Operating System) is a system software developed by Microsoft that manages computer hardware and software resources. It provides a graphical user interface (GUI), allowing users to run applications, manage files, and interact with the computer easily. | other |
| 47 | 000039 | What is time complexity ? | टाइम कम्प्लेक्सिटी क्या है ? | Time complexity is the amount of time an algorithm takes to run as the size of the input grows. It helps measure the efficiency of an algorithm and is commonly represented using Big O notation (O). | dsa |
| 48 | 000023 | Why was C++ needed ? | C ++ की जरूरत क्यों पड़ी ? | C++ was needed to overcome the limitations of the C language by introducing Object-Oriented Programming (OOP) features such as classes, objects, inheritance, and polymorphism. It made it easier to develop large, complex, and reusable software while maintaining the efficiency and speed of C. | cpp |
| 49 | 000031 | Write a program that takes a string as input and prints it such that the first character is uppercase, the second is lowercase, the third is uppercase, the fourth is lowercase, and so on, until all characters have been printed ? | एक प्रोग्राम बनाये जिसमे स्ट्रिंग इनपुट देने पर उसका पहला अक्षर कैपिटल और दूसरा अक्षर स्माल और तीसरा अक्षर कैपिटल और चौथा अक्षर स्माल और आगे भी ऐसा ही चलता रहे जब तक सारे अक्षर प्रिंट न हो जाए ? | This program takes a string as input and prints it by alternating the letter case of each character. Characters at even positions (0, 2, 4, ...) are converted to uppercase, while characters at odd positions (1, 3, 5, ...) are converted to lowercase. This pattern continues until the entire string has been processed. | dsa |