Random
Source Code

procedural programming

Procedural programming is a computer programming model built around the idea programs are sequences of instructions to be executed. They focus heavily on splitting up programs into named sets of instructions called procedures, analogous to functions.
This is different from object-oriented programming.

Some examples of procedural programming languages are: C, BASIC

by QuinnBitz March 21, 2023


oop

Quick way of saying oops, often apologetic and in a quick reaction on something.

oop, sorry about that.

by QuinnBitz March 21, 2023


object-oriented programming

Object-oriented programming (OOP)is a computer programming model. Unlike procedural programming, object-oriented programming uses objects to organize code. This is done with objects, classes, methods and attributes.
This approach to programming is well-suited for programs that are large, complex and actively updated or maintained.

some examples of object-oriented programming languages are: Java, C#, C++

by QuinnBitz March 21, 2023