DEV Community

Anže Kopitar
Anže Kopitar

Posted on

Acronyms you should know when going to a job interview.


Designed by Freepik

In past job interviews, way before getting a dev job I have had a few embarrassing experiences not knowing what a specific acronym from the world of web development means and what it does.

We often find ourselves using some technology for a long time and just skipping or forgetting the basic information of that technology even after extensive use. Being able to name an acronym and explain it in a few sentences can tip the scale in your favor (if the other parts of the interview were not a disaster).

I will skip the basic acronyms that we all know (WWW, HTML, CSS, HTTP) and write a list of acronyms that as a web developer you should know when going to a job interview.

The “should” in the last sentence is of course very relative and/or different from person to person and depends on the type of the job that you are after and the knowledge that you have (knowing an acronym does not help much if you don't know anything else about the thing).

So, this list is based on my experience with attending a number of job interviews for a web developer position (front-end & back-end).

(sorted A-Z)

API - application programming interface

A set of subroutine definitions, protocols, and tools for building application software.
Read more...


AJAX - Asynchronous JavaScript And XML

a set of Web development techniques using many Web technologies on the client side to create asynchronous Web applications. With Ajax, Web applications can send and retrieve data from a server asynchronously (in the background) without interfering with the display and behavior of the existing page.  In practice, modern implementations commonly utilize JSON instead of XML due to the advantages of JSON being native to JavaScript.
Read more...


ARIA - Accessible Rich Internet Applications

Web standards published by the World Wide Web Consortium (W3C). The ARIA specification defines different front-end methodologies that make web content accessible for disabled people who access the web with assistive technologies (AT), such as screen  readers.
Read more...


BOM - Browser Object Model

A browser-specific convention referring to all the objects exposed by the web browser. Unlike the Document Object Model, there is no standard for implementation and no strict definition, so browser vendors are free to implement the BOM in any way they wish.
Read more...


CDN - Content Delivery Network

A network of distributed servers that store duplicate copies of our web content.
CDNs allow us to deliver content to each user from a server that is closer to their location or less overloaded. This way we can achieve better performance and reduce server downtime.
Read more...


CORS - Cross-Origin Resource Sharing

A mechanism that allows restricted resources (e.g. fonts) on a web page to be requested from another domain outside the domain from which the first resource was served.
 It allows for more freedom and functionality than purely same-origin requests, but is more secure than simply allowing all cross-origin requests.
Read more...


CRUD - Create, Read, Update, Delete

A term used in database management, it contains the four basic functions of a persistent database.
In SQL, the four related commands are: INSERT (for Create), SELECT (for Read), UPDATE (for Update), and DELETE (for Delete).
CRUD functions describe the typical data life cycle on dynamic websites.
Read more...


CTA - Call-To-Action

A marketing term frequently used in web design.
A CTA is a message directed to users or prospective customers to take an immediate action. In web design, CTAs are usually dressed up links that aim to entice users to click a button, banner, advertisement, etc.
Read more...


DOM - Document Object Model

An API for HTML and XML documents, used by browsers to render these documents. The DOM specifies the logical structure of a document, and represents it as a node tree in which nodes are objects that represent different parts of the document.
Read more...


DRY - Dont Repat Yourself

A principle of software development aimed at reducing repetition of software patterns, replacing them with abstractions; and several copies of the same data, using data normalization to avoid redundancy.
Read more...


ECMASscript - European Computer Manufacturers Association Script (ES)

A scripting language specification on which the syntax of JavaScript – along with JScript and ActionScript – is based.
Read more...


IDE - Integrated Development Environment

A software application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of a source code editor, build automation tools, and a debugger.
Read more...


IIFE -  Immediately-Invoked Function Expression

A JavaScript programming language idiom which produces a lexical scope using JavaScript's function scoping. Immediately-invoked function expressions can be used to avoid variable hoisting from within blocks, protect against polluting the global environment and simultaneously allow public access to methods while retaining privacy for variables defined within the function. This concept has been referred to as a self-executing anonymous function, but Ben Alman introduced the term IIFE as a more semantically accurate term for the idiom, shortly after its discussion arose on comp.lang.javascript.
Read more...


JSON - Javascript Object Notation

An open-standard file format that uses human-readable text to transmit data objects consisting of attribute–value pairs and array data types (or any other serializable value).JSON is a language-independent data format. It was derived from JavaScript, but as of 2017 many programming languages include code to generate and parse JSON-format data. The official Internet media type for JSON is application/json. JSON filenames use the extension .json.
Read more...


LAMP - Linux, Apache, MySQL, PHP/Python/Perl

A popular web stack for creating dynamic websites.
The LAMP stack consists of Linux as operating system, Apache as web server, MySQL as database management software, and PHPPerl or Python as scripting language. Its Windows variant is called WAMP, while its OS X variant is MAMP.
Read more...


MEAN - MongoDB, Express.js, Angular, Node.js

A JavaScript-only web stack for creating dynamic websites and web applications. The MEAN stack consists of the MongoDB NoSQL database, the Express.js web application framework, the Angular.js frontend framework, and the NodeJavaScript runtime, and it runs on any operating system.
Read more...


MIME - Multipurpose Internet Mail Extensions

An Internet standard that extends the format of email to support:

  • Text in character sets other than ASCII
  • Non-text attachments: audio, video, images, application programs etc.
  • Message bodies with multiple parts
  • Header information in non-ASCII character sets

Read more...


MVC - Model View Controller

Commonly used for developing software that divides an application into three interconnected parts. This is done to separate internal representations of information from the ways information is presented to and accepted from the user. The MVC design pattern decouples these major components allowing for efficient code reuse and parallel development.
Read more...


ORM - Object-Relational Mapping

A technique that lets you query and manipulate data from a database using an object-oriented paradigm. When talking about ORM, most people are referring to a library that implements the Object-Relational Mapping technique, hence the phrase "an ORM".
An ORM library is a completely ordinary library written in your language of choice that encapsulates the code needed to manipulate the data. In that way you interact directly with an object in the same language you're using.
Read more...


PHP - (recursive acronym for PHP: Hypertext Preprocessor)

A widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.
Read more...


REST - Representational State Transfer

An architectural style that defines a set of constraints and properties based on HTTP. Web Services that conform to the REST architectural style, or RESTful web services, provide interoperability between computer systems on the Internet.
Read more...


Sass - Syntactically Awesome Style Sheets

A preprocessor scripting language that is interpreted or compiled into Cascading Style Sheets (CSS).
Read more...


SDK - Software Development Kit

A software development kit (SDK or devkit) is typically a set of software development tools that allows the creation of applications for a certain software package, software framework, hardware platform, computer system, video game console, operating system, or similar development platform.
Read more...


SMACSS - Scalable and Modular Architecture for Cascading Style Sheets

CSS writing methodology that allows us to modularize CSS code, and make it more readable and maintainable.
SMACSS defines 5 types of style rules (base, layout, module, state, theme), and identifies them with different selector prefixes.
Read more...


SOAP - Simple Object Access Protocol

A messaging protocol specification for exchanging structured information in the implementation of web services in computer networks.
SOAP allows processes running on disparate operating systems (such as Windows and Linux) to communicate using Extensible Markup Language (XML). Since Web protocols like HTTP are installed and running on all operating systems, SOAP allows clients to invoke web services and receive responses independent of language and platforms.
Read more...


SSH - Secure Shell

A cryptographic network protocol for operating network services securely over an unsecured network. The best known example application is for remote login to computer systems by users.
Read more...


TLS - Transport Layer Security

TLSand its predecessor, Secure Sockets Layer (SSL), which is now prohibited from use by the Internet Engineering Task Force (IETF) – are cryptographic protocols that provide communications security over a computer network. The TLS protocol aims primarily to provide privacy and data integrity between two communicating computer applications.
Read more...


UX - User Experience

User Experience refers to a person's emotions and attitudes about using a particular product, system or service. It includes the practical, experiential, affective, meaningful and valuable aspects of human–computer interactionand product ownership. Additionally, it includes a person’s perceptions of system aspects such as utility, ease of use and efficiency. User experience may be considered subjective in nature to the degree that it is about individual perception and thought with respect to the system. User experience is dynamic as it is constantly modified over time due to changing usage circumstances and changes to individual systems as well as the wider usage context in which they can be found. In the end user experience is about how the user interacts with and experiences the product.
Read more...


XML - Extensible Markup Language

A  markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. The design goals of XML emphasize simplicity, generality, and usability across the Internet. It is a textual data format with strong support via Unicode for different human languages. Although the design of XML focuses on documents, the language is widely used for the representation of arbitrary data structures such as those used in web services.
Read more...


XSS - Cross-site scripting

A type of computer security vulnerability typically found in web applications. XSS enables attackers to inject client-side scripts into web pages viewed by other users. A cross-site scripting vulnerability may be used by attackers to bypass access controls such as the same-origin policy.
Read more...


Thirty (30) acronyms conclude this list. It could have been longer. Maybe it should have been shorter. That is completely up to each individuals wishes and goals.

I was aiming for a full-stack web developer job, using PHP and its frameworks, Javascript and its frameworks and so on...

So if your goals are in that area or you just want to extend your knowledge a bit, this information here should be helpful.

And because I think some additional knowledge is always good no matter what – here is a quick list of some more interesting acronyms.


  • SCM – Source Control Managment
  • FTU – First Time Use
  • AMP - Accelerated Mobile Pages
  • SHA - Secure Hash Algorithm
  • DDD - Domain-Driven Design
  • JSX – Javascript XML
  • B2B - Business to Business
  • B2C - Business to Customer
  • B2G - Bussines to Goverment
  • DBMS - Database Management System
  • DNS - Domain Name System

Do you think something is missing on this list? Do you think something should not be on this list? Let me know.

Additional sources:
https://www.spellitout.xyz/
https://www.hongkiat.com/blog/web-dev-acronyms/

Top comments (6)

Collapse
 
ben profile image
Ben Halpern

We definitely take for granted how non-obvious most of this list is. Acronyms are sometimes silly but you kind of have to know it all to play the game.

Collapse
 
msoedov profile image
Alex Miasoiedov

Most of these words from a b***t bingo game. Please don't learn and try to avoid to use those

Collapse
 
r0bnet profile image
rob

Try to avoid them and don't try to ignore them would be my advice.

Collapse
 
5456qwe profile image
1214586

thanks!

Collapse
 
redaaa99 profile image
Reda Meskali

acronyms are not only for javascript,The web got a lot more.

Collapse
 
fmertins profile image
Fernando Mertins

Hi there! I'm afraid there is a typo at "DRY - Dont RepEat Yourself", tks :-)