Programming Languages

117 articles in this topic

PHP Learning Roadmap: Core Syntax to a Tested Laravel App

Follow a practical 12-week path from typed PHP and Composer to safe database access, feature tests and a Laravel rebuild, using one application throughout.

Updated 4 Sep 20265 min readProgramming Languages Survey

C++ Compiler Warnings and Sanitizers: Catch Bugs Early

Build a practical C++ safety net with strict warnings and sanitizer runs. Three small programs show how to find, explain and fix defects before they spread.

Updated 4 Sep 20266 min readC++

Memory Management in C: Stack, Heap, malloc, calloc, realloc and free with a Worked Example

Learn how C object lifetimes, allocation functions, ownership, bounds, and cleanup fit together through a complete resizable-array example.

Updated 4 Sep 20266 min readC

Inner Classes in Java: Types, Scope Rules and Four Runnable Examples

Learn when Java nested types need an outer object, what they can capture, and how scope resolution works through four runnable programs and one short trace.

Updated 3 Sep 20266 min readJava

Python Loop Patterns and Idioms: A Practical Tutorial

Move beyond manual counters and fragile flags. Learn the Python loop idioms that make iteration, filtering, aggregation, pairing, and search easier to read.

Updated 3 Sep 20265 min readPython

Best Programming Language for Placements: Test Python, Java or C++ in 4 Weeks

Choose a placement coding language with evidence. This four-week trial checks employer support, timed results, explanation skill and debugging comfort before you commit.

Updated 2 Sep 20266 min readProgramming Languages Survey

C++ Arrays vs std::array vs std::span: Choose the Right Interface

Run the same five integers through raw-array, std::array and std::span interfaces, then choose from their ownership, size and lifetime contracts.

Updated 2 Sep 20266 min readC++

Dynamic Memory Allocation in C: malloc, calloc, realloc and free with a Worked Example

A runnable marks example shows how C requests, initializes, grows and releases runtime storage, with checked byte counts, ownership and safe realloc handling.

Updated 2 Sep 20265 min readC

JavaScript Strings Tutorial: Methods, Template Literals, and Runnable Examples

Learn strings from their delimiters and zero-based indexes through searching, cleaning, and coercion. Each example is runnable, including a complete input-to-key transformation.

Updated 2 Sep 20265 min readJava

Functions in Python: Parameters, Return Values, Scope and Examples

Build, call and debug Python functions through traced examples. Learn how arguments, local scope and return values work, then test yourself with short exercises.

Updated 2 Sep 20265 min readPython

JavaScript Prototypes and Inheritance: Tutorial with Runnable Examples

Understand how JavaScript finds inherited properties, shares methods, and implements constructor and class inheritance. Trace the chains, fix common mistakes, and test yourself.

Updated 1 Sep 20265 min readProgramming Languages Survey

C++ Classes and Objects MCQs: 11 Solved Questions on Members, Pointers and Inheritance

Work through 11 C++ classes and objects MCQs, then use the fresh explanations and fixed examples to repair mistakes in access, lifetime and inheritance rules.

Updated 1 Sep 20268 min readC++