| S.No | Question ID | English Question | Hindi Question | Answer | Category |
|---|---|---|---|---|---|
| 31 | 000050 | What is a trait in Laravel ? | लारवेल में trait क्या है ? | A Trait in Laravel (PHP) is a reusable piece of code that allows you to share common methods across multiple classes without using inheritance. It helps reduce code duplication and improves code reusability. A trait is a mechanism for reusing methods in multiple classes, making the code cleaner and more maintainable. | laravel |
| 32 | 000020 | What is an operating system? Name a few operating systems ? | ऑपरेटिंग सिस्टम क्या है कुछ OS के नाम बतायें ? | An Operating System (OS) is system software that manages a computer's hardware and software resources and provides an interface between the user and the computer. It also controls tasks such as running programs, managing files, memory, and devices. Examples of Operating Systems: Windows, Linux, macOS, Android, and iOS. | other |
| 33 | 000006 | What is CSS ? | CSS क्या है ? | CSS (Cascading Style Sheets) is a stylesheet language used to control the appearance and layout of web pages. It allows developers to style HTML elements by defining colors, fonts, spacing, positioning, and responsive designs. | css |
| 34 | 000005 | What is HTML ? | html क्या है ? | HTML (HyperText Markup Language) is the standard markup language used to create and structure web pages. It defines elements such as headings, paragraphs, links, images, and forms that are displayed in a web browser. | html |
| 35 | 000049 | What is middleware in Laravel, and what are its different types ? | लारवेल में मिडिलवेयर क्या है और ये कितने प्रकार के होते है ? | Middleware in Laravel is a mechanism that filters HTTP requests before they reach the application or after a response is sent. It is commonly used for tasks such as authentication, authorization, logging, CORS handling, and request validation. Global Middleware: Runs on every HTTP request. Route Middleware: Applied to specific routes or route groups. Group Middleware: A collection of middleware applied together, such as the web and api middleware groups. | laravel |
| 36 | 000051 | What is MVC ? | MVC क्या है ? | MVC (Model-View-Controller) is a software architecture pattern used to develop web applications by separating the application into three components: Model: Manages the application's data and business logic. View: Displays the user interface and presents data to the user. Controller: Handles user requests, processes input, and coordinates between the Model and View. | laravel |
| 37 | 000024 | What is ORM ? | ORM क्या है ? | ORM (Object-Relational Mapping) is a programming technique that allows developers to interact with a database using objects instead of writing raw SQL queries. It maps database tables to classes and records to objects, making database operations simpler, more secure, and easier to maintain. | laravel |
| 38 | 000007 | What is PHP ? | PHP क्या है ? | PHP (Hypertext Preprocessor) is an open-source, server-side scripting language used to create dynamic and interactive web applications. It runs on the web server and generates HTML that is sent to the user's browser. PHP is widely used for website development and powers frameworks like Laravel. | php |
| 39 | 000025 | What is Symfony in Laravel ? | लारवेल में सिम्फनी क्या है ? | A Symfony in Laravel refers to the collection of Symfony components that Laravel uses internally to provide core functionality. Although Laravel is a separate PHP framework, it is built on top of many Symfony components such as HttpFoundation, Routing, Console, and Mailer, which make Laravel more powerful, reliable, and maintainable. Symfony is a PHP framework whose reusable components are used by Laravel to handle many core features efficiently. | laravel |
| 40 | 000052 | What is the Collections Framework in Java ? | जावा में कलेक्शन फ्रेमवर्क क्या है ? | The Java Collections Framework (JCF) is a set of classes and interfaces that provides a standard way to store, manage, and manipulate groups of objects. It includes data structures such as List, Set, Queue, and Map, along with algorithms for searching, sorting, and traversing data efficiently. | java |