Coding & Skills

147 articles in this topic

Algorithms Header in C++: Sort, Search and Transform with Runnable Examples

Learn the iterator-range model behind C++ standard algorithms through complete programs for sorting, searching, transforming and erase-remove.

Updated 16 Aug 20267 min readC++

Multi-Layer Perceptron and Backpropagation MCQs: Solved with Full Working

Work through perceptron outputs, sigmoid derivatives, an MLP forward pass, gradient descent, and learning-rule updates with every step shown.

Updated 16 Aug 20268 min readML & Data Science

C to C++ Transition: Syntax Changes, Classes and Runnable Examples

Move a working C record into an encapsulated C++ class, then replace common pointer, buffer, and allocation patterns with clearer C++ alternatives.

Updated 16 Aug 20267 min readC

React Virtual DOM and Reconciliation: How Diffing Works and Why the key Prop Matters

Follow React from two element trees to the real DOM, then compare index keys with stable data keys in a reordered list of stateful input nodes.

Updated 15 Aug 20265 min readWeb Development

JavaScript Promises and async/await Explained: Error Handling, Execution Order, and Output Questions

Build a precise call-stack and queue model, use it to predict six output lines, and see why one missing await can move a rejection beyond try/catch.

Updated 15 Aug 20266 min readJava

Python Tuples Tutorial: Packing, Unpacking, Methods and Examples

Learn how Python tuples work through runnable examples, a fixed-record route program, precise error fixes and four predict-before-running exercises.

Updated 15 Aug 20266 min readPython

AVL Trees for GATE: Rotations, Height Bounds and Minimum-Node Numericals Solved

Choose LL, RR, LR or RL from the insertion path, then solve AVL height questions with the minimum-node recurrence and a consistent height convention.

Updated 15 Aug 20266 min readDSA & Algorithms

Functions in C: 12 Solved MCQs on Declarations, Definitions and Function Types

Separate a C function's prototype, body and call, then practise the details through 12 explained questions covering parameters, return values and linking.

Updated 14 Aug 20268 min readProgramming Languages Survey

Templates in C++: Function and Class Templates with Runnable Examples

Learn how C++ templates turn one type-safe blueprint into reusable functions and classes. Trace deduction, fix compiler errors, and test each idea with runnable examples.

Updated 14 Aug 20266 min readC++

AI Agent Architecture and Program Types MCQs: 11 Solved Questions

Eleven solved AI agent MCQs with the trap in each one named: current-percept rules, sensor versus actuator, goal versus utility scoring, and what counts as learning.

Updated 14 Aug 20268 min readML & Data Science

Strings in C Tutorial: Declaration, Input, Functions and Worked Examples

Learn how C strings use character arrays and the null terminator, then practise safe input, traversal, reversal, library calls and capacity checks.

Updated 13 Aug 20266 min readC

React Forms: Controlled vs Uncontrolled Components, Validation and the Interview Questions

Follow the value through a state-driven form and a ref-driven form, then choose the right model for live validation, simple inputs and file uploads.

Updated 13 Aug 20265 min readWeb Development