+ 2
What is a bug?
5 Answers
+ 2
A bug is an unxpected error but you don't have to confuse with a glich that is a bug that makes another bug
+ 1
can you give an example
+ 1
everytime your program doesn't work or does something you didn't intend the program should do, it's a bug.
+ 1
//some example
class Program {
public static void main(String args[]) {
// here is bug
System.out.println("find the "bugs);
// this is correct
System.out.println("find the bugs");
}
}
0
Thank you