Top "Object-oriented-analysis" questions

Object Oriented Analysis (OOA) is the initial approach in solving a problem - designing a conceptual model as the proposed solution based on a set of requirements.

"Hello World" in MVC Pattern

In an interview for some company, I was asked this question. What design patterns do you know...then I was …

javascript model-view-controller design-patterns object-oriented-analysis
Resources to learn solving system design interview problems

System design questions are a type of questions that tech companies tend to ask in the interviews in addition to …

object-oriented-analysis system-design
array as data member in a class javascript

I am new one in object oriented javascript and trying to define a class, that have an array as a …

javascript jquery object-oriented-analysis
objects with state and behavior in oop

I keep hearing the term object has behavior and state or just one of them. But what is the difference …

oop object-oriented-analysis
Online restaurant reservation system (data structures)

I have a task to design an online reservation system. Where a user can enter zip code/ no of people/…

java oop data-structures object-oriented-analysis
Difference between Sequence & Communication Diagram (UML)

What is the difference between sequence diagrams and communication (collaboration) diagrams in UML?

oop uml object-oriented-analysis
What is the difference between Conceptual Class Diagram and Detailed Class Diagram?

Can someone briefly explain the difference between a Conceptual Class Diagram and a Detailed Class Diagram?

uml class-diagram object-oriented-analysis
Is this class diagram correct according to this use case diagram?

I am trying to create a class diagram which shows generalisation and maybe some form of aggregation or composition from …

uml class-diagram use-case object-oriented-analysis staruml
Put method in trait or in case class?

There are two ways of defining a method for two different classes inheriting the same trait in Scala. sealed trait …

scala object-oriented-analysis
What is the exact difference between Adapter and Proxy patterns?

As I understood both Adapter and Proxy patterns make two distinct/different classes/objects compatible with each for communication. And …

oop design-patterns adapter object-oriented-analysis proxy-pattern