| S.No | Question ID | English Question | Hindi Question | Answer | Category |
|---|---|---|---|---|---|
| 21 | 000032 | Tell me the command to create a migration in Laravel ? | लारवेल में माइग्रेशन बनाने की कमांड बताए ? | php artisan make:migration create_users_table | laravel |
| 22 | 000028 | Upload multiple images at once in Laravel ? | लारवेल में एक साथ बहुत सारी इमेज अपलोड करो ? | In Laravel, multiple images can be uploaded by using an HTML file input with the multiple attribute and naming the field as an array (e.g., images[]). On the server side, Laravel processes the uploaded files using $request->file('images'), validates them, loops through each image, stores them using the store() or move() method, and saves their file paths in the database if required. This approach allows users to upload several images in a single request efficiently. | laravel |
| 23 | 000017 | What is a CMS ? | cms क्या है ? | A Content Management System (CMS) is software that allows users to create, manage, edit, and publish website content without needing advanced programming knowledge. Popular CMS platforms include WordPress, Joomla, and Drupal. | wordpress |
| 24 | 000047 | What is a component ? | कॉम्पोनेन्ट क्या है ? | A component is a reusable and independent part of an application that contains its own structure, logic, and behavior. It helps organize code, improves maintainability, and can be used multiple times throughout an application. | other |
| 25 | 000010 | What is a data center ? | डेटा सेंटर क्या है ? | A data center is a facility that houses servers, storage systems, and networking equipment used to store, process, and manage digital data and applications. It provides the infrastructure needed to run websites, cloud services, databases, and business systems. | php |
| 26 | 000038 | What is a DBMS ? | DBMS क्या है ? | DBMS (Database Management System) is software that is used to create, store, organize, retrieve, and manage data in a database. It allows users and applications to access and manipulate data efficiently while ensuring security, consistency, and integrity. Example as MySQL, Oracle, SQL Server, PostgreSQL. | mysql |
| 27 | 000019 | What is a domain, and what are the different types of domains ? | डोमेन क्या है और डोमेन कितने प्रकार के होते है ? | A domain is the unique name of a website that people use to access it on the internet. It acts as a human-readable address instead of using an IP address. there are different types of domain as .com, .org, .net, .edu, .gov, .mil, .int, .info, .biz, .name, .pro, .io, .ai, .co, .in, .us, .uk, .au, .ru etc | php |
| 28 | 000013 | What is a firewall ? | फ़ायरवॉल क्या है ? | A firewall is a network security system that monitors and controls incoming and outgoing traffic based on predefined security rules. It helps protect computers and networks from unauthorized access and cyber threats. | php |
| 29 | 000011 | What is a server ? | सर्वर क्या है ? | A server is a computer or software that provides services, data, or resources to other computers (called clients) over a network. For example, a web server delivers web pages to users when they visit a website. | php |
| 30 | 000053 | What is a ternary operator ? | Ternary ऑपरेटर क्या है ? | A ternary operator is a shorthand way of writing an if else statement. It checks a condition and returns one value if the condition is true, and another value if the condition is false. | other |