| S.No | Question ID | English Question | Hindi Question | Answer | Category |
|---|---|---|---|---|---|
| 1 | 000040 | Apply filters to the data in Laravel ? | लारवेल में डाटा पर फ़िल्टर अप्लाई करो ? | In Laravel, filters are applied to data using the Eloquent Query Builder methods such as where(), orWhere(), whereIn(), orderBy(), and paginate(). These methods allow developers to retrieve only the records that match specific conditions, making data retrieval efficient and organized. Filters can also be applied based on user input, request parameters, or model scopes to customize the query results. | laravel |
| 2 | 000015 | Build a CRUD application in CodeIgniter ? | कोडिगनिटेर में क्रूड एप्लीकेशन बनाए ? | Create a database table. Create a Model to handle database operations (Create, Read, Update, Delete). Create a Controller to process user requests and interact with the model. Create Views for listing, adding, editing, and deleting records. Define routes for CRUD operations. Use CodeIgniter's Query Builder or Model methods to perform database actions. Test all CRUD functionalities and add form validation for data integrity. | codeigniter |
| 3 | 000018 | Build CRM software in Codeigniter ? | कोडिगनिटेर में CRM सॉफ्टवेयर बनाओ ? | CRM (Customer Relationship Management) software in CodeIgniter is developed using the MVC (Model View Controller) architecture to manage customer data, leads, sales, and communication efficiently. CodeIgniter provides a lightweight and secure framework with features like routing, database management, form validation, session handling, and authentication, making CRM development faster and more organized. The CRM typically includes modules such as customer management, lead tracking, user roles, reporting, and dashboard analytics. | codeigniter |
| 4 | 000044 | Can a C program run without including a header file ? | क्या c प्रोग्राम बिना हैडर फाइल इंक्लूड किये चल सकता है ? | Yes, a C program can run without including a header file, provided it does not use any library functions or macros that require declarations from header files. For example, a simple program with only the main() function can compile and run without any #include statements (depending on the compiler). However, header files are generally included to access standard library functions like printf(), scanf(), and others. | c |
| 5 | 000008 | Can PHP run without a server ? | क्या PHP बिना सर्वर के चल सकती है ? | Yes, PHP can run without a web server. It can be executed directly from the command line using the PHP CLI (Command Line Interface), which is useful for scripts, automation, cron jobs, and Artisan commands in Laravel. However, to serve web pages to users, a web server such as Apache, Nginx, or PHP's built-in development server is typically required. | php |
| 6 | 000026 | Create a Crud Application in Laravel ? | लारवेल में एक क्रूड एप्लीकेशन बनाओ ? | A CRUD Application in Laravel is a web application that performs the four basic database operations as Create: Add new records to the database, Read: Display existing records, Update: Modify existing records, Delete: Remove records from the database. In Laravel, a CRUD application is typically built using Routes, Controllers, Models (Eloquent ORM), Migrations, Blade Views, and a MySQL database. Laravel simplifies CRUD development by following the MVC (Model-View-Controller) architecture, making the application organized, secure, and easy to maintain. | laravel |
| 7 | 000014 | Create a program to send emails ? | मेल भेजने का प्रोग्राम बनाए ? | Create a program to send emails in Core PHP. It should collect recipient details, subject, and message, then use PHP's mail() function or an SMTP library such as PHPMailer to send emails securely. Include proper validation, error handling, and success/failure notifications. | php |
| 8 | 000016 | Create a Simple Static Website in WordPress ? | वर्डप्रेस में एक सिंपल स्टैटिक वेबसाइट बनाओ | A simple static website in WordPress is a website with fixed content that does not change frequently. To create one, first install WordPress and choose a suitable theme. Create the required pages such as Home, About, Services, and Contact using the WordPress Page editor. Set the Home page as the static front page from Settings Reading. Add a navigation menu, customize the site's appearance, and publish the pages. A static WordPress website is easy to manage and is ideal for business, portfolio, or informational websites. | wordpress |
| 9 | 000027 | Create an Authentication Website in Laravel ? | लारवेल में ऑथेंटिकेशन वेबसाइट बनाओ ? | Laravel provides a built in authentication system that helps developers implement secure user login and registration. An authentication website allows users to register, log in, log out, and access protected pages. Steps To create authentication in Laravel as 1. Create a new Laravel project, 2. Install an authentication package such as Laravel Breeze or Laravel UI, 3. Configure the database and run migrations, 4. Install authentication scaffolding, 5. Register users and log in using the generated forms, 6. Protect routes using the auth middleware. | laravel |
| 10 | 000009 | Define class and object ? | class और object को परिभाषित कीजिए ? | A class is a blueprint or template that defines the properties (variables) and behaviors (methods) of an object. An object is an instance of a class that contains actual data and can perform the actions defined by the class. | php |