What is python?
Python is a multi-paradigm programming language
Key characteristics of python.
Keywords are written in lower case
Python is case sensitive meaning Number1 <> NUMBER1
What is VB.NET?
VB.NET is a multi paradigm, high-level programming language, implemented on the .NET Framework.
Key characteristics of VB.NET.
Every statement should be on a separate line. However, if necessary statements can be typed on the same line with a colon as a separator
Indentation is a good practice
Not case sensitive
Programs need to be compiled
What is Pascal?
Pascal is a multi-paradigm programming language
Key characteristics of Pascal.
Every statement must end in a semicolon (;)
Indentation is a good practice
Not case sensitive
Programs need to be compiled
Compound statements consists of a sequence of statements enclosed between the keywords begin and end
How to declare variables in python, VB.NET and Pascal?
How to declare and assign values to constants in python, VB.NET and Pascal?
What is the difference between a variable and a constant?
A constants value should not be changed and a variables name can be changed if so desired.
How to assign values to a variable in python, VB.NET and Pascal?
Which are the arithmetic operators are different in pseudocode, python, VB.NET and Pascal?
Exponent: - Python: ^
- Integer division: **
- CB.NET: ^
- Pseudocode: Not available
Integer division: - Python: DIV
- Integer division: //
- CB.NET\
- Pseudocode: Div
Modulus: - Python: MOD
- Integer division: %
- CB.NET: Mod
- Pseudocode: ModWhat do the rules of precedence define?
The Rules of precedence define the order of the calculations to be performed
How to output information on the screen in python, VB.NET and Pascal?
How to get an input from the user in python, VB.NET and Pascal?
How to add comments in python, VB.NET and Pascal?
How are whole signed numbers assigned in python, VB.NET and Pascal?
How are signed numbers with a decimal point assigned in python, VB.NET and Pascal?
How are strings assigned in python, VB.NET and Pascal?
How to write booleans in python, VB.NET and Pascal?
How are Monetary values assigned in python, VB.NET and Pascal?
How are date values assigned in python, VB.NET and Pascal?
How to write equal in python, VB.NET and Pascal?
How to write not equal in python, VB.NET and Pascal?
How to write greater than in python, VB.NET and Pascal?