Final Capstone Project

Medium Mini Projects & Algorithmic Challenges
Solve in Playground →

Problem Statement

Write a C++ program implementing a mini employee database manager supporting record creation, salary raise updating, and lookup queries.

Input Format

Number of commands N, followed by commands ('ADD', 'RAISE', 'QUERY').

Output Format

Print execution responses or employee details.

Constraints

1 <= N <= 50

Sample Input

3
ADD 1 Alice 50000.0
RAISE 1 5000.0
QUERY 1

Sample Output

Added
Raised
ID: 1, Name: Alice, Salary: 55000.00

Explanation

Combines object-oriented class structures, vector management, and query lookups.

Starter Code

#include <iostream>
#include <vector>
#include <string>
#include <iomanip>

class Employee {
public:
    int id;
    std::string name;
    double salary;
    Employee(int i, std::string n, double s) : id(i), name(n), salary(s) {}
};

int main() {
    int n;
    if (std::cin >> n) {
        // Write your capstone project logic here
    }
    return 0;
}

Limits

  • Time Limit: 1s
  • Memory Limit: 256MB

Embedded C Programming

Updated: March 15, 2026
Intermediate

Embedded systems rely on efficient low-level programming to interact directly with hardware. In this course, you will learn how to write practical Embedded C programs used in real microcontroller-based systems. Rather than focusing only on theory, this course follows a practice-driven approach. Each lesson includes hands-on coding exercises that simulate real firmware development tasks used