Skip to content

Commit

Permalink
Update java-quiz.md for java-Q132(added code snippet in question) (#6143
Browse files Browse the repository at this point in the history
)

solves #6091
  • Loading branch information
ro4i7 authored Oct 4, 2023
1 parent 792f325 commit 868b685
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions java/java-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -1954,6 +1954,13 @@ System.out.println(buy.substring(x, x+1) + buy.substring(y, y+2))

#### Q132. Which keyword would you add to make this method the entry point of the program?

```java
public class Main {
public static void main(String[] args) {
// Your program logic here
}
}
```
- [ ] exception
- [ ] args
- [x] static
Expand Down

0 comments on commit 868b685

Please sign in to comment.