Skip to content

#74 Add 3 Quiz Questions or Answers to Json #185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTERS.MD
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@
| prasad-333 | [@prasad-333](https://github.com/prasad-333) | 1 |
| JanFidor | [@JanFidor](https://github.com/JanFidor) | 1 |
| libialany | [@libialany](https://github.com/libialany) | 1 |
| Manan Dhiman | [@MananDhiman](https://github.com/MananDhiman) | 1 |
27 changes: 27 additions & 0 deletions Languages/Java/questions.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,33 @@
"trueOrFalse": true,
"shortAns": "No",
"tag": "Java"
},
{
"id": 21,
"question": "Does Java allow use of Pointers like C/C++?",
"details": "A pointer is a data type that can store the memory address of another variable. It essentially points to the location of that variable in the memory.",
"questionType": "bool",
"trueOrFalse": false,
"shortAns": "No",
"tag": "Java"
},
{
"id": 22,
"question": "Is Java platform-independent?",
"details": "Platform independence means code written once can be run on multiple platforms or machines.",
"questionType": "bool",
"trueOrFalse": true,
"shortAns": "Yes, Java is platform-independent",
"tag": "Java"
},
{
"id": 23,
"question": "Are Integer and String primitive data types?",
"details": "Primitive data types are predefined data types that define the size and type of standard values.",
"questionType": "bool",
"trueOrFalse": false,
"shortAns": "No",
"tag": "Java"
}
]
}
Expand Down