Answer:
Each variable has a name, a value, and a type. The value might change over time, and that's why its “variable.” Many variables store numbers and strings, like the ones above. Variables can also store other types of data, like lists, dictionaries, and Boolean values
Explanation:
Answer:
A trial balance will not balance if both sides do not equal, and the reason has to be explored and corrected.
Explanation:
The debit side and the credit side must balance, meaning the value of the debits should equal the value of the credit
Answer:
#include<iostream>
using namespace std;
int main()
{
int a,b,c;
cout<<"enter the value of a:";
cin>>a;
cout<<"enter the value of b:";
cin>>b;
cout<<"enter the value of c:";
cin>>c;
cout<<"product is:"<<(a*b*c);
return 0;
}
Explanation:
Answer:
D) All of the above
Explanation:
All of these options are true.
Hope it helps and is correct!