Need help coding this program and please explain how the operations work in pseudocode please.

Program
#include<iostream>
using namespace std;
int main()
{
long Var1=6;
long Var2=10;
long Var3=15;
long Var4=21;
long Var5=22;
long Sum;
long Result;
long Remainder;
const unsigned int c1=6;
const unsigned int c2=10;
const unsigned int c3=15;
const unsigned int c4=21;
const unsigned int c5=22;
Sum=Var1+Var2+Var3+Var4+Var5;
Result=(c1+c2)*(c3-c4)/(c5+c1);
Remainder=(c1+c2)*(c3-c4)%(c5+c1);
cout<<"Sum is
"<<Sum<<endl;
cout<<"Result is
"<<Result<<endl;
cout<<"Remainder is
"<<Remainder<<endl;
return 0;
}
Need help coding this program and please explain how the operations work in pseudocode please. Problem:...
This is my Final Multiple Choice section of my Final Exam Please answer ABCD and neatly please and thank you and all questions are with microsoft visual studio c++. MULTIPLE CHOICE. Choose ONLY ONE alternative that best completes the statement or answers the question. 1) Which of the following statements are correct? 1) _______ A) char charArray[2][] = {{'a', 'b'}, {'c', 'd'}}; B) char charArray[2][2] = {{'a', 'b'}, {'c', 'd'}}; C) char charArray[][] = {{'a', 'b'}, {'c', 'd'}};D) char charArray[][]...
This C++ Program consists of: operator overloading, as well as experience with managing dynamic memory allocation inside a class. Task One common limitation of programming languages is that the built-in types are limited to smaller finite ranges of storage. For instance, the built-in int type in C++ is 4 bytes in most systems today, allowing for about 4 billion different numbers. The regular int splits this range between positive and negative numbers, but even an unsigned int (assuming 4 bytes)...