add lecture slides

pull/20/head
Elvis Saravia 1 year ago
parent 7950d419ab
commit 3a080a6404

@ -152,7 +152,7 @@
{
"data": {
"text/plain": [
"' blue\\n\\nThe sky is blue during the day on a clear day. It can also turn other colors, such as pink or orange, during sunrises and sunsets. On a cloudy day, the sky can be gray or white.'"
"' blue\\n\\nThe sky is blue because of the way that the atmosphere scatters the sunlight. The blue wavelengths of visible light are scattered more than other wavelengths. This is why the sky appears blue from the ground.'"
]
},
"execution_count": 5,
@ -174,7 +174,7 @@
"text/markdown": [
" blue\n",
"\n",
"The sky is blue during the day on a clear day. It can also turn other colors, such as pink or orange, during sunrises and sunsets. On a cloudy day, the sky can be gray or white."
"The sky is blue because of the way that the atmosphere scatters the sunlight. The blue wavelengths of visible light are scattered more than other wavelengths. This is why the sky appears blue from the ground."
],
"text/plain": [
"<IPython.core.display.Markdown object>"
@ -207,7 +207,7 @@
"text/markdown": [
" blue\n",
"\n",
"The sky is blue during the day, when the sun is out. At night, the sky is usually black, but can sometimes be a deep blue or purple."
"The sky is blue because of the way the atmosphere scatters sunlight. When sunlight passes through the atmosphere, the blue wavelengths are scattered more than the other colors, making the sky appear blue."
],
"text/plain": [
"<IPython.core.display.Markdown object>"
@ -241,7 +241,8 @@
{
"data": {
"text/markdown": [
" Antibiotics are medications used to treat bacterial infections by killing or inhibiting the growth of bacteria, and must be used appropriately to avoid contributing to antibiotic resistance."
"\n",
"Antibiotics are medications used to treat bacterial infections by either killing the bacteria or stopping them from reproducing, but they are not effective against viral infections and can lead to antibiotic resistance if used incorrectly."
],
"text/plain": [
"<IPython.core.display.Markdown object>"
@ -286,7 +287,7 @@
{
"data": {
"text/markdown": [
" Mice"
" Mice."
],
"text/plain": [
"<IPython.core.display.Markdown object>"
@ -388,7 +389,7 @@
{
"data": {
"text/markdown": [
" Certainly! A black hole is an object with such a strong gravitational pull that not even light can escape its grasp. It is formed when a very large star runs out of nuclear fuel and collapses under its own gravity. The collapse causes the star to become incredibly dense, resulting in the black hole."
" Sure. Black holes are regions of spacetime exhibiting gravitational acceleration so strong that nothing—not even particles and electromagnetic radiation such as light—can escape from inside it. The theory of general relativity predicts that a sufficiently compact mass can deform spacetime to form a black hole. The boundary of the region from which no escape is possible is called the event horizon. Although crossing the event horizon has enormous effect on the fate of the object crossing it, no locally detectable features appear to be observed. In many ways, a black hole acts like an idealized black body, as it reflects no light."
],
"text/plain": [
"<IPython.core.display.Markdown object>"
@ -436,9 +437,10 @@
"data": {
"text/markdown": [
"\n",
"SELECT StudentId, StudentName \n",
"SELECT students.StudentId, students.StudentName \n",
"FROM students \n",
"WHERE DepartmentId = (SELECT DepartmentId FROM departments WHERE DepartmentName='Computer Science');"
"INNER JOIN departments ON students.DepartmentId = departments.DepartmentId\n",
"WHERE departments.DepartmentName = 'Computer Science';"
],
"text/plain": [
"<IPython.core.display.Markdown object>"
@ -472,11 +474,13 @@
{
"data": {
"text/markdown": [
" \n",
"\n",
"Odd numbers: 15, 5, 13, 7, 1\n",
"Sum of odd numbers: 41\n",
"41 is an odd number."
"\n",
"The odd numbers in this group are: 5, 13, 7, and 1. \n",
"\n",
"5 + 13 + 7 + 1 = 26 \n",
"\n",
"26 is an even number."
],
"text/plain": [
"<IPython.core.display.Markdown object>"
@ -532,7 +536,7 @@
{
"data": {
"text/markdown": [
" The answer is True."
" The answer is False."
],
"text/plain": [
"<IPython.core.display.Markdown object>"
@ -617,9 +621,15 @@
{
"data": {
"text/markdown": [
" \n",
"\n",
"You started with 10 apples. You gave away 4 apples, so you would have 6 apples remaining. Then you bought 5 more apples, so now you have 11 apples. Finally, you ate 1 apple, so you would have 10 apples remaining."
"\n",
"You initially bought 10 apples.\n",
"\n",
"You then gave away 4 apples, leaving you with 6 apples.\n",
"\n",
"You bought 5 more apples, so now you have 11 apples.\n",
"\n",
"After eating 1 apple, you have 10 apples remaining."
],
"text/plain": [
"<IPython.core.display.Markdown object>"

Loading…
Cancel
Save