I believe it’s (8,6) because dilation mean to make it bigger by 2
Answer:
90.
Step-by-step explanation:
We have two lines of code:
y ← x + x + x + x + x
z ← y + y + y
and, x=6 before the execution. Then, when the program starts to run we obtain:
y ← 6 + 6 + 6 + 6 + 6
y ← 30
z ← 30+30+30
z ← 90.
Then, the value of z after excecution is 90.
#include
int main()
{
int num;
scanf("%d", &num);
printf("%d", num*num);
return 0;
}
Answer:
95
Step-by-step explanation:
The smallest number that divided by 6, 15, and 18 leavses 5 in each case is 95