๐ Stressing over that assignment? Yeah, we get it.
Look, we've all been there deadlines creeping up, exams around the corner, and zero motivation to format another reference page. ๐ฎโ๐จ
So here's the deal: we'll take that assignment off your plate while you go crush your finals. ๐ฏ
โจ What you get:
ยท โ Proper academic formatting that actually looks legit
ยท โ A clean, ready-to-submit document
ยท โ No stress, no all-nighters, no last-minute panic
๐ก The move is simple stop staring at a blank screen and start focusing on what's actually gonna boost your grades. Let us handle the busy work, you handle the big stuff. ๐ง ๐
๐ฒ DM @TechnerdGuy
@ProgrammingWithFaith2018
Look, we've all been there deadlines creeping up, exams around the corner, and zero motivation to format another reference page. ๐ฎโ๐จ
So here's the deal: we'll take that assignment off your plate while you go crush your finals. ๐ฏ
โจ What you get:
ยท โ Proper academic formatting that actually looks legit
ยท โ A clean, ready-to-submit document
ยท โ No stress, no all-nighters, no last-minute panic
๐ก The move is simple stop staring at a blank screen and start focusing on what's actually gonna boost your grades. Let us handle the busy work, you handle the big stuff. ๐ง ๐
๐ฒ DM @TechnerdGuy
@ProgrammingWithFaith2018
โค2
แตแตแแแแก 50000 BTTC แญแฐแฃแนแแ แจแ แ แแแ แ Sign In แจแแตแแ แแตแฅ แแฅแณแน 20000 BTTC แญแฐแฃแนแแ แ แ แแแญ แแแ แณแตแฐแฉ 70000 BTTC แญแฐแฃแนแแ แจแ Withdraw แแตแจแ แแ fam
๐แแแแแญ๐
https://bttcweb.com/pages/register/register?code=7574712
๐แแแแแญ๐
https://bttcweb.com/pages/register/register?code=7574712
โค1
C++ Basic 2018 (Batch-2)
แตแตแแแแก 50000 BTTC แญแฐแฃแนแแ แจแ แ แแแ แ Sign In แจแแตแแ แแตแฅ แแฅแณแน 20000 BTTC แญแฐแฃแนแแ แ แ แแแญ แแแ แณแตแฐแฉ 70000 BTTC แญแฐแฃแนแแ แจแ Withdraw แแตแจแ แแ fam ๐แแแแแญ๐ https://bttcweb.com/pages/register/register?code=7574712
Guys, it's 100% legit. ๐ซก Here is the withdrawal proof. You can easily make money online, so I've included the link here. ๐ฐ Register and sign in, and you will receive 70,000 BTTC. ๐ช
Link : https://bttcweb.com/pages/register/register?code=7574712 ๐
Link : https://bttcweb.com/pages/register/register?code=7574712 ๐
โค2
C++ Basic 2018 (Batch-2)
Final exam 2023_2.pdf
โ
Answer ๐
PART I โ True or False
1. "If a condition is false, its statement executes and terminates the chain"
Explanation: When a condition is false, its body is skipped, not executed.
โ Answer: FALSE
2. "A function cannot be defined inside another function"
Explanation: In C++, you strictly cannot write a function inside another function. แ C++ แแตแฅ แ แแต function แแตแฅ แแ function แแปแ แ แญแปแแแข แญแ แจ C++ แฅแฅแ rule แแแข
โ Answer: TRUE
3. Does
Explanation:
โ Answer: TRUE
4. Can both
Explanation: Yes โ this is function overloading. Same name, different parameters = allowed.
โ Answer: TRUE
5. Is
Explanation:
โ Answer: FALSE
PART II โ Multiple Choice
Q1. Which array declaration is NOT correct?
Explanation: Arrays must be initialized with curly braces
โ Answer: C
Q2. Which is NOT true?
Explanation: Option B says "when condition is false, the if body executes" โ that is completely wrong. When false, the else body runs.
โ Answer: B
Q3. Statement for alternate paths based on condition?
Explanation:
โ Answer: A
Q4. Which is TRUE about arrays?
Explanation: Array size must be decided at compile time โ you can't change it while the program runs.
โ Answer: C
Q6. Correct variable name?
Explanation: Variable names can only have letters, digits, and underscore
โ Answer: B
Q7. Output of
Explanation: Counting from index 0: H(0) e(1) l(2) l(3) o(4) space(5) โ space is at index 5.
โ Answer: C โ Space
Q8. Output of
Explanation:
โ Answer: C โ -80
Q9. Pointer program output?
Explanation:
โ Answer: C โ Error
Q10. Output of const program?
Explanation:
โ Answer: D โ Error
Q11. How many times is "CppBuzz.com" printed?
Explanation: i goes from 0 to 4 (when i=5, condition
โ Answer: B โ 5 times
Q12. Output of a++, b, c?
Explanation:
โ Answer: A โ 111011
Q13. Variable declared inside a function?
Explanation: A variable declared inside a function only exists within that function โ called a local variable.
โ Answer: B โ Local variable
Q14. Output of car() program?
Explanation: car() is called once in main โ prints "Audi R8" once.
โ Answer: A โ Audi R8
Q15. Output of fun(x, y)?
Explanation: fun uses pass by value โ it receives copies. Changing x and y inside fun does NOT affect the originals in main. So y stays 20.
โ Answer: B โ 20
PART III โ Short Answers
Q1. Declaration of x pointed to by Ptr:
Explanation: To declare a pointer to an integer variable:
int x;
int *Ptr = &x;
Q2. Pass by Value vs Pass by Reference:
Explanation :
Pass by Value -A copy is sent to the function and Original is NOT changed
Pass by Reference-The actual variable is sent using & and Original IS changed
@ProgrammingWithFaith2018
PART I โ True or False
1. "If a condition is false, its statement executes and terminates the chain"
Explanation: When a condition is false, its body is skipped, not executed.
โ Answer: FALSE
2. "A function cannot be defined inside another function"
Explanation: In C++, you strictly cannot write a function inside another function. แ C++ แแตแฅ แ แแต function แแตแฅ แแ function แแปแ แ แญแปแแแข แญแ แจ C++ แฅแฅแ rule แแแข
โ Answer: TRUE
3. Does
*ptr = 11 change i to 11?Explanation:
ptr holds the address of i. Using *ptr means go to that address and change the value โ i becomes 11. ptr แจ i แ address แญแแแข *ptr = 11 แแแต "แแฐ address แแต แฅแ valueแแ แแญแญ" แแแต แแ โ i = 11 แญแแแแขโ Answer: TRUE
4. Can both
foo functions coexist?Explanation: Yes โ this is function overloading. Same name, different parameters = allowed.
โ Answer: TRUE
5. Is
strlen("Cletus") equal to 7?Explanation:
strlen() counts only the letters โ NOT the null character '\0'. "Cletus" = 6 letters โ strlen = 6. โ Answer: FALSE
PART II โ Multiple Choice
Q1. Which array declaration is NOT correct?
Explanation: Arrays must be initialized with curly braces
{}, not square brackets []. โ Answer: C
Q2. Which is NOT true?
Explanation: Option B says "when condition is false, the if body executes" โ that is completely wrong. When false, the else body runs.
โ Answer: B
Q3. Statement for alternate paths based on condition?
Explanation:
for and while are loops. The if statement is used for choosing alternate execution paths.โ Answer: A
Q4. Which is TRUE about arrays?
Explanation: Array size must be decided at compile time โ you can't change it while the program runs.
โ Answer: C
Q6. Correct variable name?
Explanation: Variable names can only have letters, digits, and underscore
_. $ and @ are not allowed in C++. โ Answer: B
Q7. Output of
str[5]?Explanation: Counting from index 0: H(0) e(1) l(2) l(3) o(4) space(5) โ space is at index 5.
โ Answer: C โ Space
Q8. Output of
-2 * array[2]?Explanation:
array[2] = 40 (third element). Then -2 ร 40 = -80. โ Answer: C โ -80
Q9. Pointer program output?
Explanation:
ptr = x assigns the value 7 as an address โ this is wrong. It should be ptr = &x. This causes a compiler error. โ Answer: C โ Error
Q10. Output of const program?
Explanation:
const means the value cannot be changed. Trying a++ on a const variable causes a compiler error. โ Answer: D โ Error
Q11. How many times is "CppBuzz.com" printed?
Explanation: i goes from 0 to 4 (when i=5, condition
i<5 is false โ no goto). So it prints 5 times. โ Answer: B โ 5 times
Q12. Output of a++, b, c?
Explanation:
b = a++ means b gets the current value of a (10) first, then a becomes 11. Then c = a โ c = 11. Output: 11 10 11 โ Answer: A โ 111011
Q13. Variable declared inside a function?
Explanation: A variable declared inside a function only exists within that function โ called a local variable.
โ Answer: B โ Local variable
Q14. Output of car() program?
Explanation: car() is called once in main โ prints "Audi R8" once.
โ Answer: A โ Audi R8
Q15. Output of fun(x, y)?
Explanation: fun uses pass by value โ it receives copies. Changing x and y inside fun does NOT affect the originals in main. So y stays 20.
โ Answer: B โ 20
PART III โ Short Answers
Q1. Declaration of x pointed to by Ptr:
Explanation: To declare a pointer to an integer variable:
int x;
int *Ptr = &x;
Q2. Pass by Value vs Pass by Reference:
Explanation :
Pass by Value -A copy is sent to the function and Original is NOT changed
Pass by Reference-The actual variable is sent using & and Original IS changed
@ProgrammingWithFaith2018
โค1๐1
void byValue(int x) { x = 100; } // original value แ แญแแญแญแ
void byRef(int &x) { x = 100; } // original value แญแแญแซแQ3. Function Overloading:
Explanation: Multiple functions with the same name but different parameters. The compiler chooses the right one based on the arguments passed. แ แแต แตแ แซแแธแ แแ แจแฐแแซแฉ parameters แซแแธแ functionsแข compiler แจแแ แฉแ แตแ arguments แฐแแญแฉแ แตแญแญแแแแ function แญแแญแฃแแข
int add(int a, int b) { return a + b; } // แแแต int
float add(float a, float b) { return a + b; } // แแแต float
// แ แแต แตแ แแ "add" - แแ parameters แญแแซแซแ
PART IV โ Output Questions
Q1. 2D Array output:
Explanation: The loops run only for
i=2, j=0 โ that is val[2][0] = 1. โ Output: 1
Q2a. break version:
Explanation:
sum=+i means sum = +i (assign), not sum += i (add). When i=3, break fires immediately before assignment.i=5 โ sum=5, i=4 โ sum=4, i=3 โ break!
โ Output: 4
Q2b. continue version:
Explanation:
continue skips to the next iteration. sum+=i comes after continue so it never executes. Sum stays 0. โ Output: 0
Q3. String program:
Explanation:
strncpy(z, y, 9) copies first 9 characters of y into z. Then z[9]='\0' ends the string.โ Output:
String y: It is a nice day
String z: It is a n
Q
4. Swap function:
Explanation : A is pass by value (copy), B is pass by reference (real). So only b changes in main.
A=4+18=22 (local), B=22-18=4 (b in main changes!), A=22-4=18 (local only)
Back in main: a=4, b=4
โ Output: 4, 4
PART V โ Programs
Q1. Income Tax
using namespace std;
int main(){
float salary, tax = 0;
cout << "Enter salary: ";
cin >> salary;
if(salary <= 200)
tax = 0;
else if(salary <= 600)
tax = (salary - 200) * 0.10;
else if(salary <= 1200)
tax = 400*0.10 + (salary - 600)*0.15;
else if(salary <= 2000)
tax = 400*0.10 + 600*0.15 + (salary-1200)*0.20;
else if(salary <= 3500)
tax = 400*0.10 + 600*0.15 + 800*0.20 + (salary-2000)*0.25;
else
tax = 400*0.10 + 600*0.15 + 800*0.20 + 1500*0.25 + (salary-3500)*0.30;
cout << "Income tax = " << tax << " Birr" << endl;
return 0;
}
Q2. Count students below 45
using namespace std;
int main(){
int n, mark, count = 0;
cout << "Enter number of students: ";
cin >> n;
for(int i = 0; i < n; i++){
cout << "Enter mark for student " << i+1 << ": ";
cin >> mark;
if(mark < 45)
count++;
}
cout << "Students below 45: " << count << endl;
return 0;
}
Q3. Enter until negative
using namespace std;
void enterNumbers(){
int num;
while(true){
cout << "Enter a number: ";
cin >> num;
if(num < 0){
cout << "Now you have entered a negative number" << endl;
break;
}
}
}
int main(){
enterNumbers();
return 0;
}
@ProgrammingWithFaith2018
โค4
If anyone has last year's C++ final exam, please post it here in the comment section. ๐ป๐
@ProgrammingWithFaith2018
๐ฒ
@ProgrammingWithFaith2018
๐ฒ
1.
Function declaration malet just le compilerแ sle function แแแแญ nw
Syntax : datatypes functions_name(parameters )
Example
int sum(int a,int b)
with parameter
int sum() without parameter
So
Answer:) D
Because it lack return type
2.
ANSWER:) A
We define structure first then we create a variable @ProgrammingWithFaith2018
Function declaration malet just le compilerแ sle function แแแแญ nw
Syntax : datatypes functions_name(parameters )
Example
int sum(int a,int b)
with parameter
int sum() without parameter
So
Answer:) D
Because it lack return type
2.
ANSWER:) A
We define structure first then we create a variable @ProgrammingWithFaith2018
โค3
5.
Arrya is collection of elements with the same data types.
To access first element of array we use
Array[0]
To access the last
Array[n-1]
But to access the memory address of first element just we call it's name
for example int ages[]={1,3};
ages // to access the memory address of first element
So
โ Answer :)D
6.
Strcpy(a,b) copies the entire string from b to a
So
โ Answer :) A
Arrya is collection of elements with the same data types.
To access first element of array we use
Array[0]
To access the last
Array[n-1]
But to access the memory address of first element just we call it's name
for example int ages[]={1,3};
ages // to access the memory address of first element
So
โ Answer :)D
6.
Strcpy(a,b) copies the entire string from b to a
So
โ Answer :) A
โค3
Forwarded from Hustler Hub (โFaithโ)
แซแแ viral แณแญแแฃ แแแฉ
แแแแชแซ link แแฉแต แ แแแ แแ แแฐ playstore แฒแแฐแณแฝแ app download แฃแญแแต แแญ แฒแจแแตแแฝแ แ google account แญแแฑ แฃแแ
โ แ แฐแจแ แฐแ แแฅแ,video แ แแจแตแ แญแจแแแ
1 invitatin - 1$$$$$
แแ แถแ แแแฉ
แซแแแฃแฝแ แแแญ แซแ แ แญแแ
link๐
https://play.google.com/store/apps/details?id=com.app.cash.adda.playandwin
1000 coin =1$ แแแแ แ แจแณแฝ แซแแแ Referral code copy แ แญแแฝแ แแ
๐๐
@examanswer1
แแแแชแซ link แแฉแต แ แแแ แแ แแฐ playstore แฒแแฐแณแฝแ app download แฃแญแแต แแญ แฒแจแแตแแฝแ แ google account แญแแฑ แฃแแ
โ แ แฐแจแ แฐแ แแฅแ,video แ แแจแตแ แญแจแแแ
1 invitatin - 1$$$$$
แแ แถแ แแแฉ
แซแแแฃแฝแ แแแญ แซแ แ แญแแ
link๐
https://play.google.com/store/apps/details?id=com.app.cash.adda.playandwin
1000 coin =1$ แแแแ แ แจแณแฝ แซแแแ Referral code copy แ แญแแฝแ แแ
๐๐
M97b6xshpKQNOLUkbKwc2T1gxPw2@examanswer1
๐2โค1
Affirmative Action แจแแฐแ แ แแดแถแฝ แฃแจ แ แณแ แญแแ แแแก แฅแ แ แ แซแ แแณแฐแแฝ แแแข
So แดแถแฝ 20%
แ แณแ แญแแ 5%
แ แซแ แแณแฐแแฝ 5% Free quota แ แแธแ แแแต แแแข
แแแณแ :-Software maximum in take capacity last year 80 students แแ แญแข
80%20 = 16 ,so 64 แฐแแช แ rank แแ แแแฃแ แจแแฉแต 16 แฐแแช แฐแ free Quota แแดแถแฝ แ แแข
แฅแแต แดแต rankแ 160 แขแแ แฅแ Software แ Affirmative แแแฃแต แฅแแแ 64 แ แแ แซแแตแ แดแถแฝ แแแ แญ แแ , แแแณแ 1-160 rank แแตแฅ 30 แดแถแฝ แขแแฉ แฃ แจ แฅแแ แแตแฅ แฐแ 15 แดแถแฝ 1-64 rank แแตแฅ แขแแฉ แจแแฉแต 15 แดแถแฝ แ แ แแธแ rank compete แซแฐแญแแแข
So 15 แ rank แตแ แแก แจAffirmative Action Qouta แ แญแแ แข
แจแแฉแต 10 แดแถแฝ แแ แแแณแ 100-160 แขแแ แ Affirmative Action Quota 15 แตแ แแ 10 แแ แฅแแ แญแแฃแ แฅแแฐแแ 5 free Quota แญแแซแ แแแตแ แจ160 แ แแ แซแแต 5 แดแถแฝ แจแแ แซแแแแ Risk Soft แญแแฃแแข
Mostly แฐแแช แ แ แแฐแ แจแแแญแ แ Software ,CS,Elec ,Bio ,IT แแ แตแแแ 1-100 rank แซแแต แแแ Software แญแแญแฃแ แแแต แ แฐแแ แฅแ Just Worst Case senario แแตแ แแแ soft แขแแก แฅแฌ แ แตแฅ แแ 1-64 แแตแฅ Elec,Cs,Bio แแแ แตแ แแแฉ แจแแแแแต dep. แจแแแฃแต Chance แญแแฏแธแแ แแแต แแแข
@ProgrammingWithFaith2018
How affirmative action work ?
Affirmative Action แจแแฐแ แ แแดแถแฝ แฃแจ แ แณแ แญแแ แแแก แฅแ แ แ แซแ แแณแฐแแฝ แแแข
So แดแถแฝ 20%
แ แณแ แญแแ 5%
แ แซแ แแณแฐแแฝ 5% Free quota แ แแธแ แแแต แแแข
แแแณแ :-Software maximum in take capacity last year 80 students แแ แญแข
80%20 = 16 ,so 64 แฐแแช แ rank แแ แแแฃแ แจแแฉแต 16 แฐแแช แฐแ free Quota แแดแถแฝ แ แแข
แฅแแต แดแต rankแ 160 แขแแ แฅแ Software แ Affirmative แแแฃแต แฅแแแ 64 แ แแ แซแแตแ แดแถแฝ แแแ แญ แแ , แแแณแ 1-160 rank แแตแฅ 30 แดแถแฝ แขแแฉ แฃ แจ แฅแแ แแตแฅ แฐแ 15 แดแถแฝ 1-64 rank แแตแฅ แขแแฉ แจแแฉแต 15 แดแถแฝ แ แ แแธแ rank compete แซแฐแญแแแข
So 15 แ rank แตแ แแก แจAffirmative Action Qouta แ แญแแ แข
แจแแฉแต 10 แดแถแฝ แแ แแแณแ 100-160 แขแแ แ Affirmative Action Quota 15 แตแ แแ 10 แแ แฅแแ แญแแฃแ แฅแแฐแแ 5 free Quota แญแแซแ แแแตแ แจ160 แ แแ แซแแต 5 แดแถแฝ แจแแ แซแแแแ Risk Soft แญแแฃแแข
Mostly แฐแแช แ แ แแฐแ แจแแแญแ แ Software ,CS,Elec ,Bio ,IT แแ แตแแแ 1-100 rank แซแแต แแแ Software แญแแญแฃแ แแแต แ แฐแแ แฅแ Just Worst Case senario แแตแ แแแ soft แขแแก แฅแฌ แ แตแฅ แแ 1-64 แแตแฅ Elec,Cs,Bio แแแ แตแ แแแฉ แจแแแแแต dep. แจแแแฃแต Chance แญแแฏแธแแ แแแต แแแข
@ProgrammingWithFaith2018
โค2๐1
Forwarded from แแแ แคแต | Film Bet ๐๏ธ๐ฝ๏ธ
Media is too big
VIEW IN TELEGRAM
Spider-Man: Brand New Day (2026) 1080p V3-HDTC Multi-LiNE [English + Hindi + Tamil +Telugu] ESub
๐ธ@filmbet28
๐ธ@filmbet28
Forwarded from Jimma University CS 2015
How is the grade given for the internship? ๐
For IT, CS, and IS, it will count as one course, and the grade is based on how much you get. ๐
Ass1 represents the result from the companyโit is worth 50% of the total grade. However, the company will give you a score out of 100%, which will then be divided by 2 to convert it to a score out of 50%.
For example, if the company gives you 94 out of 100%, in Ass1 it will be divided: 94/2 = 47.
Ass2 is evaluated by your advisor based on your report and is worth 25%. ๐
So far: 50 + 25 = 75.
The remaining 25% is split into:
โ Quiz (5%) โ they will ask you questions after your presentation. ๐ฃ๏ธ
โ Final Examination (20%) โ your presentation and document will be evaluated while you present. ๐ค
Example:
If the company gives you 100 out of 100, your advisor gives you 24 out of 25, you get 4 on the quiz, and 17 on the final exam:
โ Ass1 = 50
โ Ass2 = 24
โ Quiz = 4
โ Final Examination = 17
Total = 50 + 24 + 4 + 17 = 95 โ which is an A+.
@jucs_2015
#Cs
#Internship
โค1