C++ Basic 2018 (Batch-2)
765 subscribers
277 photos
11 videos
30 files
74 links
🎯 C++ Basic 2018 (Batch 2) - Pre-Engineering Edition
My second family of coders! πŸ‘¨β€πŸŽ“πŸ‘©β€πŸŽ“
Specifically for 2018 pre-engineering students finding C++ challenging.
We turn confusion into clarity, one concept at a time.
Join the struggle bus - destination
Download Telegram
This semester is hard; you should aim to score good grades to secure the department you want. Most students don't perform well in Applied and C++, which can significantly affect their GPA. Therefore, we offer a premium course designed to help you achieve good grades in C++. You can still join us!

βœ… If you have any questions, DM @TechnerdGuy
βœ… For registration @ProgrammingWithFaith_bot
❀2
🌟 Struggling with C++ Assignments? We Can Help! πŸ’»


Feeling overwhelmed by C++ assignments? 😩 You’re not alone! Join our premium class for personalized support that goes beyond just completing tasks. 🀝 We will guide you through the challenges, helping you build confidence and truly understand C++. πŸ“šβœ¨

Don’t miss this opportunity to enhance your skills register now for academic success! πŸš€πŸŽ“

βœ…For Registration @ProgrammingWithFaith_bot



@ProgrammingWithFaith2018
#ProgrammingWithFaith
#TelegramLearning
#PreEngineering
#LearnCPlusPlus
πŸ₯°2❀1
When I was a freshman like you, I always struggled to get information πŸ“š, especially about the department and to find materials. So if you need anything, you can ask me @TechnerdGuy. BTW, I'm a last-year student πŸŽ“.

@ProgrammingWithFaith2018
πŸ”₯3πŸ™3
While trying to register using the bot, have you ever experienced the bot not responding?

@ProgrammingWithFaith2018
❀1πŸ‘1
🌟 Join Our Premium Class and Unlock Exclusive Services! 🌟


Here’s what you’ll receive:

πŸ“š Detailed Explanations in both Amharic and English 
πŸŽ₯ Videos for Each Chapter 
πŸ“ Resources for midterm and final exams 
πŸ” Recommended Useful Videos and

If anything is unclear, I’m here to help! I will personally explain concepts and suggest materials to ensure you ace your exam. πŸ’ͺ✨

For registration: [ @ProgrammingWithFaith_bot ]


@ProgrammingWithFaith2018
#C++Basic
#Registration
#Programming
❀4πŸ₯°1
Thanks for hitting 420 subscribers! I appreciate all of you who joined the channel. πŸ™πŸ™πŸ™

For students who registered and didn't get approval, DM me @TechnerdGuy.


@ProgrammingWithFaith2018
πŸ”₯1πŸ₯°1
Forwarded from Self Taught Developers (✞Faith✞)
Tomorrow, I have a mid-exam, and I have been at the library πŸ“•. When I got tired 😴, I drew πŸ§‘β€πŸŽ¨ these and went to my dorm. Rate my art; I know I'm not that good, but I'm trying.🀞

@SelfTaughtDev1
πŸ”₯10❀4πŸ’―2πŸ‘1
I have been glad to see all of you who have joined this channel! 😊 I have provided you with the materials I created to teach my premium students. πŸ“š So don’t wait; join our premium class and benefit from it! πŸš€

For registration:  [ @ProgrammingWithFaith_bot ]

πŸ”—Link :[ https://www.canva.com/design/DAHDDl5zL18/OIYuoR2c-GH8s4ZYawx5Ow/edit?utm_content=DAHDDl5zL18&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton ]

@ProgrammingWithFaith2018
❀4πŸ”₯1
JIT CAMPUS


Dear Class Representatives,
The midterm exam is tentatively scheduled for Miyazia 8, 2018 (April 16, 2026).
Please share this information with your classmates & everyone can prepare accordingly.

Sewayehu T.
πŸ”₯3
❀3πŸ”₯2
πŸš€ Unlock the Power of C++ with 'Programming with Faith'! πŸš€

Hey, future coding wizards! 🌟 Are you ready to dive into the world of programming? Join my premium channel, where we explore C++ together through engaging discussions!

πŸ’¬ Instead of just teaching, I want to hear from you! Share the topics you find challenging, and I’ll explain them one by one. This interactive method ensures that you grasp concepts fully and feel confident in your coding journey. πŸ’ͺ

πŸ‘‰ For Registration: [@ProgrammingWithFaith_bot]

@ProgrammingWithFaith2018
#CPlusPlus #ProgrammingWithFaith #LearnToCode
πŸ”₯2
βœ…Exercise
Write an algorithm to find the largest of three numbers?

@ProgrammingWithFaith2018
❀2
To excel in questions like this, you should first understand the problem.

β–Žβœ… Algorithm Representation

An algorithm can be represented using both flowcharts and pseudocode.

β€’ Flowchart: This represents the algorithm using various shapes:
  – Oval for Start/End
  – Rectangle for Operations
  – Parallelogram for Input/Output
  – Diamond for Decision-making

β€’ Pseudocode: This represents the algorithm using text-based instructions, similar to English words.

β–ŽHint

To compare three numbers, we should first accept input from the user.

β–ŽPseudocode

Step 1: Start
Step 2: Input three numbers X, Y, and Z
Step 3: If X > Y then go to Step 5.
Step 4: If Y > Z then
            Print "Y is the largest"
        Else
            Print "Z is the largest"
        ENDIF
        Go to Step 6
Step 5: If X > Z then
            Print "X is the largest"
        Else
            Print "Z is the largest"
        ENDIF
Step 6: Stop


Flowchart

1. Start: Use an oval shape to represent the start of the process.
2. Input: Use a parallelogram to indicate where the user inputs three numbers (X, Y, Z).
3. Decision (Diamond): Use a diamond shape for the first comparison (Is X > Y?).
   – Yes: If true, go to another decision diamond (Is X > Z?).
     β–ͺ Yes: Print "X is the largest" (parallelogram).
     β–ͺ No: Print "Z is the largest" ( parallelogram).
   – No: Go to the next decision diamond (Is Y > Z?).
     β–ͺ Yes: Print "Y is the largest" (parallelogram).
     β–ͺ No: Print "Z is the largest" (parallelogram).
4. End: Use an oval shape to represent the end of the process.

@ProgrammingWithFaith2018
❀6