Architecture
Architectural patterns like MVC, MVVM, MVP, Clean Architecture, and design principles
4
Easy Questions
4
Medium Questions
3
Hard Questions
Easy Questions (4)
Medium Questions (4)
If `int? A =0;` can I make it as null on pressing the button?
View Details →Code
Flutter How MVVM Architecture will looks like ?
flutterarchitecturemvvm
What are all the design patterns in generic means ?
What is the difference between MVC, MVP, clean architecture and MVVM Architecture Pattern? and when flutter officially support mvvm architech why you choose clean architech over mvvm ?
flutterarchitecturemvcmvvmmvp
View Details →Code
Hard Questions (3)
Clean Architecture
architectureclean-architecturedesign-patterns
I will describe a scenario, and you need to explain the complete flow of how you would handle it. For example: Suppose you are building a chat screen in a mobile application. When a user types a message and presses the Send button, the device may have no internet connection or very poor connectivity at that moment. How would you design the system to handle this situation? Would you prevent the user from sending the message until a stable internet connection is available, or would you store the message locally and send it automatically once the network connection is restored? Please explain the complete flow and the approach you would take.
architectureoffline-firstsyncdatabasenetworking
What is the difference between TDD (Test-Driven Development) vs DDD (Domain-Driven Design) vs DDD (Data-Driven Development)?
tddddddomain-driven-designdata-driventesting
View Details →Code