-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflashcards.json
More file actions
30 lines (30 loc) · 864 Bytes
/
flashcards.json
File metadata and controls
30 lines (30 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[
{
"question": "What is Python's GUI library?",
"answer": "Tkinter"
},
{
"question": "What is Java?",
"answer": "Java is a popular,Object-Oriented Programming Language."
},
{
"question": "what is a list in python?",
"answer": "A list is an ordered,mutable collection of items."
},
{
"question": "what does if do in python?",
"answer": "It checks a condition and runs code if true."
},
{
"question": "what is None in Python?",
"answer": "It represents the absence of a value."
},
{
"question": "what does def define in python?",
"answer": "It defines a function."
},
{
"question": "What does print()do in python?",
"answer": "It displays output to the console."
}
]