Online Exam Quiz

questionQuestion  1 to 30

In MVC, who is responsible for rendering the UI?

  • Model
  • View
  • Controller
  • Database
Mark for review

What principle does MVC promote to enhance application maintainability?

  • Tight coupling
  • Single responsibility
  • Open-closed principle
  • High cohesion
Mark for review

What does the Controller send to the View in MVC?

  • Data
  • Commands
  • Events
  • Models
Mark for review

What kind of data does the View in MVC usually handle?

  • Raw database records
  • Processed data ready for display
  • Configuration data
  • User input only
Mark for review

In which layer are user interfaces developed in MVC?

  • Model
  • View
  • Controller
  • Business Logic
Mark for review

Which of the following best describes the MVC architecture?

  • Modular design
  • Linear workflow
  • Layered structure
  • Event-driven architecture
Mark for review

How does the View communicate with the Model in MVC?

  • Directly accesses the Model
  • Through the Controller
  • Using a Service
  • Via AJAX
Mark for review

What does MVC stand for?

  • Model View Controller
  • Model View Command
  • Module View Controller
  • Model Version Controller
Mark for review

In MVC, where is the user input processed?

  • Model
  • View
  • Controller
  • Database
Mark for review

What does the Controller update in MVC?

  • Model
  • View
  • Database
  • Session
Mark for review

In MVC, where is the business logic implemented?

  • Model
  • View
  • Controller
  • Service
Mark for review

What type of pattern is typically used in the Controller of an MVC framework?

  • Factory
  • Adapter
  • Command
  • Singleton
Mark for review

What does MVC architecture improve in an application?

  • Complexity
  • Scalability
  • Tight coupling
  • Hardcoding
Mark for review

Which of the following is a key benefit of MVC?

  • Increased complexity
  • Tight coupling
  • Loose coupling
  • No separation of concerns
Mark for review

In MVC, what does the Model notify the View about?

  • User inputs
  • Changes in data
  • Session states
  • HTTP responses
Mark for review

What type of design pattern is MVC considered?

  • Creational
  • Structural
  • Behavioral
  • Architectural
Mark for review

What is the role of the Controller in MVC?

  • Updates the View
  • Handles user input
  • Manages database
  • Handles exceptions
Mark for review

Which of the following is not an advantage of MVC?

  • Separation of concerns
  • Easy to test
  • Increased complexity
  • Better organization
Mark for review

Which component handles user-generated events in MVC?

  • Model
  • View
  • Controller
  • Database
Mark for review

Which layer in MVC handles data validation?

  • Model
  • View
  • Controller
  • Database
Mark for review

Which of the following is a correct statement in struts-config.xml?

  • <message-resources parameter="com.example.resources.ApplicationResources" />
  • <messageResources parameter="com.example.resources.ApplicationResources" />
  • <resource-bundle parameter="com.example.resources.ApplicationResources" />
  • <resources parameter="com.example.resources.ApplicationResources" />
Mark for review

Which layer in MVC handles user input?

  • Model
  • View
  • Controller
  • Service
Mark for review

What is the role of the View in MVC?

  • Handles user input
  • Displays data
  • Manages business logic
  • Manages application state
Mark for review

How do MVC frameworks usually handle user sessions?

  • In the View
  • In the Model
  • In the Controller
  • In the Database
Mark for review

Which of the following is a benefit of using MVC?

  • Reduces code duplication
  • Makes the code less readable
  • Increases the application's complexity
  • Limits scalability
Mark for review

How does the View access data from the Model?

  • Direct method calls
  • Through the Controller
  • Data binding
  • AJAX requests
Mark for review

In the context of MVC, what does "separation of concerns" mean?

  • Combining business logic and UI
  • Separating business logic, user interface, and input control
  • Merging data access with business logic
  • Integrating all components together
Mark for review

How does the Controller interact with the Model?

  • By directly modifying data
  • By updating the user interface
  • By sending commands to the Model
  • By handling events
Mark for review

In MVC, how are changes in the Model reflected in the View?

  • Direct access
  • Events and data binding
  • AJAX calls
  • Direct updates
Mark for review

What is the role of the Model in MVC?

  • Manages data and business logic
  • Manages user interface
  • Manages requests
  • Manages session state
Mark for review

blinkerOnline

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • Answered
  • Not Answered
  • Marked for Review