Computer Science
A Java program executes but does not give the desired output. It is due to the
- logical error in the program
- syntax error in the program
- grammatical error
- none
Input in Java
4 Likes
Answer
logical error in the program
Answered By
3 Likes
Related Questions
Which of the following is a conditional statement?
Which of the following is invalid for a break statement?
Rewrite the following statement using if-else:
commission=(sale > 5000) ? sale*10/100 : 0;
Rewrite the following statement using if-else:
net=(salary > 10000) ? salary — (8.33/100)*salary : salary — (5/100)*salary;