diff --git a/UFCFVQ-15-M Programming Task 1.ipynb b/UFCFVQ-15-M Programming Task 1.ipynb
index 65c544fe02cc05dbb48ced55873554d63a61d743..5ca67db86dabbee5b1528895d912a3e849cac2ad 100644
--- a/UFCFVQ-15-M Programming Task 1.ipynb	
+++ b/UFCFVQ-15-M Programming Task 1.ipynb	
@@ -26,7 +26,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "The mean of the dataset is 120.89453125\n"
+      "The Arithmetic Mean is 120.89453125\n"
      ]
     }
    ],
@@ -53,7 +53,7 @@
     "    return ListMean\n",
     "\n",
     "# Call the function and pass the list as an argument\n",
-    "print(f'The mean of the dataset is {meanFinder(TaskoneDat)}')"
+    "print(f'The Arithmetic Mean is {meanFinder(TaskoneDat)}')"
    ]
   },
   {
@@ -80,7 +80,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Standard Devision of the dataset is 31.95179590820272\n"
+      "The Standard Devision is 31.95179590820272\n"
      ]
     }
    ],
@@ -96,7 +96,7 @@
     "    return STD_DEV\n",
     "\n",
     "#Call the function and pass the list as an argument\n",
-    "print(f'Standard Devision of the dataset is {StdDevFinder(TaskoneDat)}')"
+    "print(f'The Standard Devision is {StdDevFinder(TaskoneDat)}')"
    ]
   },
   {
@@ -123,8 +123,8 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "The minimum number in the dataset is 0\n",
-      "The maximum number in the dataset is 199\n"
+      "The minimum number is 0\n",
+      "The maximum number is 199\n"
      ]
     }
    ],
@@ -144,9 +144,9 @@
     "\n",
     "    \n",
     "#Call the functions and pass the list as an argument\n",
-    "print(f'The minimum number in the dataset is {MinFinder(TaskoneDat)}')\n",
+    "print(f'The minimum number is {MinFinder(TaskoneDat)}')\n",
     "\n",
-    "print(f'The maximum number in the dataset is {MaxFinder(TaskoneDat)}')\n"
+    "print(f'The maximum number is {MaxFinder(TaskoneDat)}')\n"
    ]
   },
   {
@@ -205,7 +205,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "The 25 percentile in the dataset is 99\n"
+      "The 25th percentile is 99\n"
      ]
     }
    ],
@@ -213,7 +213,7 @@
     "#Calculate the 25th percentile of the data\n",
     "percentileOf_25 = percentileFinder(TaskoneDat,25)\n",
     "#Print the result\n",
-    "print(f'The 25 percentile in the dataset is {percentileOf_25}')"
+    "print(f'The 25th percentile is {percentileOf_25}')"
    ]
   },
   {
@@ -240,7 +240,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "The 50 percentile in the dataset is 117\n"
+      "The 50th percentile is 117\n"
      ]
     }
    ],
@@ -248,7 +248,7 @@
     "#Calculate the 50th percentile of the data\n",
     "percentileOf_50 = percentileFinder(TaskoneDat,50)\n",
     "#Print the result\n",
-    "print(f'The 50 percentile in the dataset is {percentileOf_50}')"
+    "print(f'The 50th percentile is {percentileOf_50}')"
    ]
   },
   {
@@ -275,7 +275,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "The 75 percentile in the dataset is 141\n"
+      "The 75th percentile is 141\n"
      ]
     }
    ],
@@ -283,7 +283,7 @@
     "#Calculate the 75th percentile of the data\n",
     "percentileOf_75 = percentileFinder(TaskoneDat,75)\n",
     "#Print the result\n",
-    "print(f'The 75 percentile in the dataset is {percentileOf_75}')"
+    "print(f'The 75th percentile is {percentileOf_75}')"
    ]
   },
   {