In the following code, which line has an error?
```
Line 1 public interface Interface1
Line 2 {
Line 3 int FIELDA = 55;
Line 4 public int methodA(double){}
Line 5 }
```
a. Line 1 b. Line 2 c. Line 3 d. Line 4
d. Line 4
Computer Science & Information Technology
You might also like to view...
To delete tabs from the ruler, right-click the tab stop and select Delete
Indicate whether the statement is true or false
Computer Science & Information Technology
Answer the following statements true (T) or false (F)
1. The test condition in a While loop must always be an integer value. 2. A While loop repeats infinitely when there is no statement inside the loop body that will make the test condition false. 3. Modules can be called from statements in the body of any loop. 4. You can only use positive integers as step values in a For statement.
Computer Science & Information Technology