Send your teacher a portal message, or call them.
Answer:
In addition to MLA, <u>American psychological association, Associated Press and Chicago manual of style</u> are widely using referencing techniques,
Explanation:
<u>American Psychological Association(APA)</u>
APA is the largest organization of scholars, they have their own referencing style guidelines that is used by these scholars.
<u>Associated Press</u>
It is also an american based agency that have their own referencing style for citation of research work named as Associated press.
<u>Chicago Manual of Style</u>
It is also an american referencing style used for reference.
Answer:
The required cash used to retire a debt can be computed as follows:
Cash used to retire debt = cash available to retire a debt, if the cash available to retire debt is less than the loan balance from previous month. Otherwise, cash used to retire debt is equal to the loan balance from previous month.
The excel formula to perform this task is provided as follows:
D33 = IF(D32<C34,D32,C34)
The same formula is used to get the values for E33 to I33.
Explanation:
See the attached picture for table.
Answer:
// program in C++.
#include <bits/stdc++.h>
using namespace std;
int main() {
// variable
int num;
cout<<"Enter the number between 20 and 98: ";
// read number
cin >> num;
while(num<20||num>98)
{
cout<<"Wrong input!!enter number between 20-98 only:";
cin>>num;
}
cout<<"The output is: ";
while(num % 10 != num /10)
{
// print numbers.
cout<<num<<" ";
// update num.
num--;
}
// display the number.
cout<<num<<endl;;
return 0;
}
Explanation:
Read a number from user and assign it to variable "num".Check if entered number is in between 20-98 or not.If input number is less than 20 or greater than 98 then ask again to enter a number between 20-98 until user enter a valid input.Then print the countdown from input number till both the digit of number are same.
Output:
Enter the number between 20 and 98: 99
Wrong input!!enter number between 20-98 only:12
Wrong input!!enter number between 20-98 only:93
The output is: 93 92 91 90 89 88
Enter the number between 20 and 98: 77
The output is: 77
Answer:
As a character, Bugs Bunny is king, and he's as close to an animated culture hero as we're going to get. Think about it. He's the person you want to be — the smartest one in the room who's still effortlessly cool. He's quick-witted, funny, and even a little cruel, but only to his tormenters.
Explanation:I hope this helps!!!Plz leave a heart and a rating!!