Skip to content

Commit c48b886

Browse files
Update 09-Objects and Data Structures Assessment Test.ipynb
1 parent b15ec55 commit c48b886

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

00-Python Object and Data Structure Basics/09-Objects and Data Structures Assessment Test.ipynb

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@
3838
"source": [
3939
"Double Click HERE to edit this markdown cell and write answers.\n",
4040
"\n",
41-
"Numbers:\n",
41+
"Numbers:\n"store numerical information and come in two forms Integers-whole numbers Floating point-numbersbs with decimal point,
4242
"\n",
43-
"Strings:\n",
43+
"Strings:\n"ordered sequence of characters,
4444
"\n",
45-
"Lists:\n",
45+
"Lists:\n"ordered sequence of objects,
4646
"\n",
47-
"Tuples:\n",
47+
"Tuples:\n"ordered immutable sequence of objects,
4848
"\n",
49-
"Dictionaries:\n"
49+
"Dictionaries:\n"unordered kry value pairs
5050
]
5151
},
5252
{
@@ -55,7 +55,7 @@
5555
"source": [
5656
"## Numbers\n",
5757
"\n",
58-
"Write an equation that uses multiplication, division, an exponent, addition, and subtraction that is equal to 100.25.\n",
58+
"Write an equation that uses multiplication, division, an exponent, addition, and subtraction that is equal to 100.25.\n"60+(10**2)-134.75,
5959
"\n",
6060
"Hint: This is just to test your memory of the basic arithmetic commands, work backwards from 100.25"
6161
]
@@ -75,11 +75,11 @@
7575
"source": [
7676
"Answer these 3 questions without typing code. Then type code to check your answer.\n",
7777
"\n",
78-
" What is the value of the expression 4 * (6 + 5)\n",
78+
" What is the value of the expression 4 * (6 + 5)\n"44,
7979
" \n",
80-
" What is the value of the expression 4 * 6 + 5 \n",
80+
" What is the value of the expression 4 * 6 + 5 \n"29,
8181
" \n",
82-
" What is the value of the expression 4 + 6 * 5 "
82+
" What is the value of the expression 4 + 6 * 5 "34
8383
]
8484
},
8585
{
@@ -95,7 +95,7 @@
9595
"cell_type": "markdown",
9696
"metadata": {},
9797
"source": [
98-
"What is the *type* of the result of the expression 3 + 1.5 + 4?<br><br>"
98+
"What is the *type* of the result of the expression 3 + 1.5 + 4?<br><br>"IT IS FLOATING POINT
9999
]
100100
},
101101
{

0 commit comments

Comments
 (0)