1.
[syn: most valuable player, MVP]
The Collaborative International Dictionary of English v.0.48:
MVP \MVP\ n. (acron.)
most valuable player; the player judged to be the most
important to the sport, also the name of the award given to
that player. [abbreviation]
[WordNet 1.5]
WordNet (r) 3.0 (2006):
MVP
n 1: the player judged to be the most important to the sport
[syn: most valuable player, MVP]
V.E.R.A. -- Virtual Entity of Relevant Acronyms (February 2016):
MVP
Most Valuable Professional [bonus program] (MS)
The Free On-line Dictionary of Computing (30 December 2018):
Model-View-Presenter
MVP
(MVP) A user interface architectural pattern
where functions are separated between the model, view and
presenter.
The model defines the data to be displayed or otherwise acted upon
in the user interface.
The view displays data from the model and routes user commands
(events) to the presenter to act upon that data.
The presenter retrieves data from the model and displays it in the
view.
The implementation of MVP can vary as to how much presentation
logic is handled by the presenter and the view. In a web
application most presentation logic is usually in the view which
runs in the web browser.
MVP is one of the MV* variations of the MVC pattern.
(2014-11-27)