Trusted answers to developer questions

What are the basic fundamental concepts of programming?

Free System Design Interview Course

Many candidates are rejected or down-leveled due to poor performance in their System Design Interview. Stand out in System Design Interviews and get hired in 2024 with this popular free course.

The fundamental concepts of programming form the foundation upon which all software development is built. These concepts are universal across programming languages and frameworks.

Irrespective of the programming language we choose to learn, the basic concepts of programming are similar across languages. Some of these concepts include:

  • Variable declaration

  • Basic syntax

  • Data types and structures

  • Flow control structures

  • Iteration (Loops)

  • Functional programming

  • Debugging

We will use python to see examples for each concept.

Variable declaration

Variables are containers for storing data values, a memory location for a data type. Variables are created using a declaration or keyword that varies across languages.

Variable names are usually alphanumeric, that is, they contain a-z and 0-9. They can also include special characters like underscore or the dollar sign.

Variables can hold values of any data type supported by the programming language. This value may change during program execution.

x = 5
message = "Hello, world!"

Basic syntax

Every programming language has its syntax, and we must learn the fundamental syntax of the language you are learning.

Syntax refers to the set of rules that define the structure of a language. It is almost impossible to read or understand a programming language without its syntax.

For example, let us see the the syntax to print a simple Hello, world!

# This is a comment
print("Hello, world!")

Data types and structures

Data types refer to the classification of data. The most common data types include:

  • String

  • Boolean (true or false)

  • Numbers, which includes integers (whole numbers from 1) and floating-point numbers (decimal-base)

  • Characters (includes single alphabets or numbers)

  • Arrays (a collection of data, usually of the same data type)

# Integer
num = 5
# Floating-point number
num1 = 3.14
# String
name = "John"
# List
fruits = ["Mango", "Banana", "Strawberry"]
# Tuple
coordinates = (10, 40)
# Dictionary
person = {"name": "Keith", "age": 25}

A Data Structure is a collection of data values. These structures include operations that can be applied to that data.Data structures are important in computer programming for organizing, managing, and storing data quickly and efficiently.

Some common types of data structures include:

  • Stacks

  • Heaps

  • Trees

  • Linked lists

  • Queues

  • Arrays

  • Tables

  • Graphs

Flow control structures

Flow Control Structures are the fundamental components of computer programs. They are commands that allow a program to “decide” to take one direction or another.

There are three basic types of control structures: sequential, selection, and iteration.

Sequential

The most basic control flow is sequential control flow. It involves the execution of code statements one after the other. A real-world example is following a cooking recipe.

Flow chart for sequential control structure

Selection (conditionals)

The basic premise of selection flow control is, the computer decides what action to perform based on the result of a test or condition equalling true or false.

Flow chart for selection control structure

Let's see a coding example:

x = 5
if x < 5:
print("x is less than 5")
else:
print("x greater than or equal to 5")

Iteration (Loops)

A loop is a programming structure that allows a statement or block of code to be run repeatedlyiterate until a specified condition is no longer true (will return Boolean, true or false). It is one of the most powerful and fundamental programming concepts.

Flow chart for iteration control structure

Let's see a coding example:

for i in range(10):
print("Iteration", i+1)

Functional programming

Functions are containers that take in a set of inputs and return an output. It is not required for a function to return a value. Pure functions will always give the same result for the same set of inputs.

Functional Programming is a straightforward method of building software that involves using pure functions. This method eliminates the occurrence of data mutation or side effects.

Let's see an example:

# Define a list of numbers
numbers = [2,5,6,8,9]
# Define a function to calculate cube of a number
def cube(x):
return x * x * x
# Initialize an empty list to store squared numbers
cube_of_numbers = []
# Use a loop to apply the cube function to each element in the numbers list
for num in numbers:
cube_of_numbers.append(cube(num))
# Print the squared numbers
print(cube_of_numbers)

Object-oriented programming

Object-Oriented Programming (OOP) is a programming concept that revolves around ‘objects’ and ‘methods’.

There are four principles of OOP:

  • Inheritance
  • Polymorphism
  • Abstraction
  • Encapsulation

Debugging

Debugging is a crucial skill. It involves detecting and removing existing and potential errors, defects, or ‘loopholes’ in one’s code.

IDEs and coding environments

IDE stands for Integrated Development Environment – they are applications programmers use to write code and organize text groups. It increases a programmer’s efficiency and productivity, and has added features like code completion, code compilation, debugging, syntax highlighting, etc.

Some common examples of IDE’s are:

  • Visual Studio code
  • IntelliJ IDEA
  • NetBeans
  • Eclipse

Always remember to write clean, readable codes.

RELATED TAGS

data structures
oop
programming
Did you find this helpful?