From e6862080086a1b2d2eff0e5066cd9ef70052e01b Mon Sep 17 00:00:00 2001 From: Motunrayo Ilawole Date: Sat, 20 Jan 2024 16:25:20 +0100 Subject: [PATCH 1/2] fix typos in data types page --- lessons/dataTypes.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lessons/dataTypes.md b/lessons/dataTypes.md index 3ead6b1b..ffe85db8 100644 --- a/lessons/dataTypes.md +++ b/lessons/dataTypes.md @@ -7,11 +7,11 @@ description: "Learn java" icon: "coffee" --- -So before knowing what are data types. First let's know what are variable and Constants. +Before knowing what data types are, let's learn about variables and constants. ## Variable -Simply, Variable are placeholder for some data values. when we are creating a variable we are just +Simply, Variables are placeholders for some data values. When we are creating a variable we are just reserving some memory locations or reserving some space in memory to store values. In C++, there are different types of variables,eg: @@ -21,9 +21,9 @@ locations or reserving some space in memory to store values. In C++, there are d ## Constant -As its name suggest **constant**- which does not change, they remain fixed. Basically these are fixed values which +As its name suggests **constant**- which does not change, they remain fixed. Basically, these are fixed values which do not change and it must have to be initialized at the time of creation, we can not assign any new values to -it later. That's why these are called **literals**, cuz it can not be modified. +it later. That's why these are called **literals**, cuz they can not be modified. ## Data Types From 21944c39a3d4261799e3160eff61ed76caba3eb6 Mon Sep 17 00:00:00 2001 From: Motunrayo Ilawole Date: Sat, 20 Jan 2024 16:44:10 +0100 Subject: [PATCH 2/2] Update intro-programming.md --- lessons/intro-programming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/intro-programming.md b/lessons/intro-programming.md index 193a1628..e49b4386 100644 --- a/lessons/intro-programming.md +++ b/lessons/intro-programming.md @@ -6,7 +6,7 @@ section: "Introduction" description: "learn Java" --- -There is a question comes in everyone's mind before getting started with coding or ds algo or Competitive Programming(**cp**) - Which is the best programming language to get started with? And truly it's quite important to figure out the language which is most suitable for you. +There is a question that comes to everyone's mind before getting started with coding or ds algo or Competitive Programming(**cp**) - Which is the best programming language to get started with? And truly it's quite important to figure out the language which is most suitable for you. So we're just going to recommend you two languages- 1. C++