๐ŸŽ‰ Day 90: Final Exam & Course Completion – C Language (Hinglish)

 

Final Exam & Course Completion – C Language

๐ŸŽฏ Congratulations!
Aaj hai Final Exam + Course Completion Day ๐Ÿ†
Matlab 90 din ka Computer + Programming Course successfully complete ๐ŸŽ“๐Ÿ’ป


๐Ÿ“˜ ๐Ÿ“ Final Exam Paper (Model Test)

๐Ÿง  Section A: Theory (1 Mark Each)

  1. C language kya hai?

  2. C language kisne banayi?

  3. Variable kya hota hai?

  4. Data type ka naam likho.

  5. Operator kya hota hai?

  6. Loop kya hota hai?

  7. if-else kya hai?

  8. Error kya hota hai?

  9. Debugging kya hoti hai?

  10. printf() ka use kya hai?


✍️ Section B: Short Answer (2–3 Marks)

  1. Data types ke types likho.

  2. Arithmetic operators likho.

  3. Relational operators likho.

  4. for loop explain karo.

  5. Syntax error aur logical error me difference likho.

  6. switch statement kya hai?

  7. Input aur Output me difference likho.


๐Ÿ’ป Section C: Practical (Programs)

Q1️⃣ Add two numbers (User Input)

#include <stdio.h>
int main() {
    int a, b;
    scanf("%d %d", &a, &b);
    printf("Sum = %d", a+b);
    return 0;
}

Q2️⃣ Even / Odd Program

#include <stdio.h>
int main() {
    int n;
    scanf("%d", &n);
    if(n%2==0)
        printf("Even");
    else
        printf("Odd");
    return 0;
}

Q3️⃣ Table Program

#include <stdio.h>
int main() {
    int n,i;
    scanf("%d", &n);
    for(i=1;i<=10;i++){
        printf("%d x %d = %d\n", n, i, n*i);
    }
    return 0;
}

Q4️⃣ Largest of Two Numbers

#include <stdio.h>
int main() {
    int a,b;
    scanf("%d %d",&a,&b);
    if(a>b)
        printf("A is greater");
    else
        printf("B is greater");
    return 0;
}

๐Ÿ† ๐ŸŽ“ Course Completion Certificate (Concept)

๐Ÿ“œ Certificate of Completion
This is to certify that
Alok Raj
has successfully completed
90 Days Computer & Programming Course
including:

  • Windows

  • MS Word

  • MS Excel

  • Internet

  • Email

  • Cyber Safety

  • C Programming

๐ŸŽ‰ Status: PASSED
๐Ÿ’ป Computer Education Completed


๐Ÿง  What You Have Learned (Summary)

✅ Computer Basics
✅ Windows OS
✅ MS Word
✅ MS Excel
✅ Internet & Email
✅ Cyber Safety
✅ Programming Basics
✅ C Language
✅ Logic Building
✅ Coding Practice


๐Ÿš€ Next Level Roadmap (Optional Future Plan)

๐Ÿ‘‰ C++
๐Ÿ‘‰ Python
๐Ÿ‘‰ Web Development
๐Ÿ‘‰ App Development
๐Ÿ‘‰ Data Entry + Office Work
๐Ÿ‘‰ เคธเคฐเค•ाเคฐी / Private เคจौเค•เคฐी computer exam เคคैเคฏाเคฐी


๐ŸŽฏ Motivation Line

๐Ÿ”ฅ "90 din ka discipline tumhe 9 saal aage le jaata hai"
Tumne consistency dikhayi – that's real success ๐Ÿ’ฏ


๐Ÿฅณ Final Message

๐ŸŽ‰ Congratulations Alok Raj!
Tumne ek complete Computer + Programming Course finish kar liya ๐Ÿ’ป๐ŸŽ“
Tum beginner se foundation level programmer ban chuke ho ๐Ÿ˜Ž


⬅ Previous Day


                            Next Day ➡