Give the output of the following program snippet:
char p =’B’;
int a = 14;
char m = ‘b’;
float b=19.99;
System.out.println((int)p+a);
System.out.println((int)m+b);
System.out.println(“The answer:”+a+b);
System.out.println(“The answer:”+(a+b));
Answers
Answered by
0
Answer:
physics, a force is any interaction that, when unopposed, will change the motion of an object. A force can cause an object with mass to change its velocity (which includes to begin moving from a state of rest), i.e., to accelerate. ... A force has both magnitude and direction, making it a vector quantity
Explanation:
pls mark brainliest
Answered by
1
Answer:
The output of the given program will be, (ofcourse, after some syntax corrections)
80
117.99
The answer:1419.99
The answer:33.989998
Similar questions