Web Development Definition

Web Development Definition Web development refers to building, creating, and an maintaining websites. It includes aspects such as web design, web publishing, web programming, and database management. While the terms “web developer” and “web designer” are often used synonymously, they do not mean the same thing. Technically, a web designer only designs website interfaces using HTML and CSS. A web developer may […]

Class Definition

Class Definition A class is used in object-oriented programming to describe one or more objects. It serves as a template for creating, or instantiating, specific objects within a program. While each object is created from a single class, one class can be used to instantiate multiple objects. Several programming languages support classes, including Java, C++, Objective C, and PHP 5 and later. […]

Drop Down Menu Definition

Drop Down Menu Definition A drop down menu is horizontal list of options that each contain a vertical menu. When you roll over or click one of the primary options in a drop down menu, a list of choices will “drop down” below the main menu. The most common type of drop down menu is […]

Servlet Definition

Servlet Definition A servlet is a Java program that runs on a Web server. It is similar to an applet, but is processed on the server rather than a client’s machine. Servlets are often run when the user clicks a link, submits a form, or performs another type of action on a website. Both servlets and JSP pages contain Java code that is […]

jQuery Definition

jQuery Definition jQuery is a JavaScript library that allows web developers to add extra functionality to their websites. It is open source and provided for free under the MIT license. In recent years, jQuery has become the most popular JavaScript library used in web development. To implement jQuery, a web developer simply needs to reference the jQuery JavaScript file within […]

Python Definition

Python Definition Python is a high-level programming language designed to be easy to read and simple to implement. It is open source, which means it is free to use, even for commercial applications. Python can run on Mac, Windows, and Unix systems and has also been ported to Java and .NET virtual machines. Python is considered a scripting […]

OOP Definition

OOP Definition Stands for “Object-Oriented Programming.” OOP (not Oops!) refers to a programming methodology based on objects, instead of just functions and procedures. These objects are organized into classes, which allow individual objects to be grouped together. Most modern programming languages including Java, C/C++, and PHP, are object-oriented languages, and many older programming languages now have object-oriented versions. […]

High-Level Language Definition

High-Level Language Definition A high-level language is a programming language designed to simplify computer programming. It is “high-level” since it is several steps removed from the actual code run on a computer’s processor. High-level source code contains easy-to-read syntax that is later converted into a low-level language, which can be recognized and run by a specific CPU. Most common programming languages are considered […]

JSP Definition

JSP Definition Stands for “Java Server Page.” This standard was developed by Sun Microsystems as an alternative to Microsoft’s active server page (ASP) technology. JSP pages are similar to ASP pages in that they are compiled on the server, rather than in a user’s Web browser. After all, they don’t call them “server pages” for […]

Responsive Web Design

Responsive Web Design Responsive web design (or “RWD”) is a type of web design that provides a customized viewing experience for different browser platforms. A website created with RWD will display a different interface depending on what device is used to access the site. For example, a responsive website may appear one way on a laptop, another way on a tablet, and […]