From 735208e3f35897403a482eae7e5ec6b25f3995e3 Mon Sep 17 00:00:00 2001 From: Thomas Young-Audet Date: Tue, 2 Feb 2021 08:29:26 -0500 Subject: [PATCH] Java, remainder operation question. (#1063) * Add new question * remove whitespace --- java/java-quiz.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/java/java-quiz.md b/java/java-quiz.md index 45ed3e9acc..697f9efc5d 100755 --- a/java/java-quiz.md +++ b/java/java-quiz.md @@ -802,3 +802,9 @@ public static void main(String[] args) { - [ ] native - [ ] interface - [X] unsigned + +#### Q65. Which operator would you use to find the remainder after division? +- [X] % +- [ ] // +- [ ] / +- [ ] DIV