Difference between revisions of "Constants - Variables - Data Types"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
m (Removed Line from each syntaxhighlight statement for better formatting.)
Line 3: Line 3:
 
*Boolean is a binary value, being either true or false.
 
*Boolean is a binary value, being either true or false.
  
  <syntaxhighlight lang="csharp" line>true</syntaxhighlight>  
+
  <syntaxhighlight lang="csharp">true</syntaxhighlight>  
  
 
*String is used for storing characters in word form.
 
*String is used for storing characters in word form.
  
<syntaxhighlight lang="csharp" line>"hello world"</syntaxhighlight>
+
<syntaxhighlight lang="csharp">"hello world"</syntaxhighlight>
  
 
*Integer is used to store whole numbers (32 bit values).
 
*Integer is used to store whole numbers (32 bit values).
  
<syntaxhighlight lang="csharp" line>457568368</syntaxhighlight>
+
<syntaxhighlight lang="csharp">457568368</syntaxhighlight>
  
 
*Double is used to store numbers where there are numbers before and after the decimal point.
 
*Double is used to store numbers where there are numbers before and after the decimal point.
  
<syntaxhighlight lang="csharp" line>3.3</syntaxhighlight>
+
<syntaxhighlight lang="csharp">3.3</syntaxhighlight>
  
 
*decimal is used for numbers only after the decimal point.
 
*decimal is used for numbers only after the decimal point.
  
<syntaxhighlight lang="csharp" line>.3</syntaxhighlight>
+
<syntaxhighlight lang="csharp">.3</syntaxhighlight>
  
 
*Character is used to store single letters.
 
*Character is used to store single letters.
  
<syntaxhighlight lang="csharp" line>'A'</syntaxhighlight>
+
<syntaxhighlight lang="csharp">'A'</syntaxhighlight>
  
 
*Byte is used to store a byte( eight 1's or 0's).
 
*Byte is used to store a byte( eight 1's or 0's).
  
<syntaxhighlight lang="csharp" line>00101101</syntaxhighlight>
+
<syntaxhighlight lang="csharp">00101101</syntaxhighlight>
  
 
*Float is used to store a set number of digits after a decimal place.
 
*Float is used to store a set number of digits after a decimal place.
  
<syntaxhighlight lang="csharp" line>3.0000000000</syntaxhighlight>
+
<syntaxhighlight lang="csharp">3.0000000000</syntaxhighlight>
  
 
*Long integer is also used to store whole numbers (However these are 64 bit values).
 
*Long integer is also used to store whole numbers (However these are 64 bit values).
  
<syntaxhighlight lang="csharp" line>7846354759340276482</syntaxhighlight>
+
<syntaxhighlight lang="csharp">7846354759340276482</syntaxhighlight>
  
 
*Constants are used to create a variable of a specified data type that can never be changed after declaration, all global variables should be declared constant.
 
*Constants are used to create a variable of a specified data type that can never be changed after declaration, all global variables should be declared constant.
  
<syntaxhighlight lang="csharp" line>const int 32</syntaxhighlight>
+
<syntaxhighlight lang="csharp">const int 32</syntaxhighlight>

Revision as of 23:07, 15 December 2016

There are 9 types of data types. These include boolean, string, integer, double, decimal, character, byte, float and long.

  • Boolean is a binary value, being either true or false.
true
  • String is used for storing characters in word form.
"hello world"
  • Integer is used to store whole numbers (32 bit values).
457568368
  • Double is used to store numbers where there are numbers before and after the decimal point.
3.3
  • decimal is used for numbers only after the decimal point.
.3
  • Character is used to store single letters.
'A'
  • Byte is used to store a byte( eight 1's or 0's).
00101101
  • Float is used to store a set number of digits after a decimal place.
3.0000000000
  • Long integer is also used to store whole numbers (However these are 64 bit values).
7846354759340276482
  • Constants are used to create a variable of a specified data type that can never be changed after declaration, all global variables should be declared constant.
const int 32