The Fundamentals of C# Part 1: Programming Languages
The Fundamentals of C# Part 1: Programming Languages
The Fundamentals of C# Part 1: Programming Languages
Programming Languages
E-mail : [email protected]
Twitter : ahmadmohey85
Programming Languages
• E.g., machine language and assembly
• E.g., C++, C#, Python and Java
Programming Languages
mov eax,0
Low-level programming language
add edi,1
https://www.convertbinary.com/alphabet/
https://www.binarytranslator.com/
The Fundamentals of C# Part 1
Compilers
E-mail : [email protected]
Twitter : ahmadmohey85
The Compiler
Compiler Interpreter
• Compiled Languages: C++, C#,Swift, TypeScript • Interpreted Languages: JavaScript, Python, PHP
E-mail : [email protected]
Twitter : ahmadmohey85
Visual Studio
E-mail : [email protected]
Twitter : ahmadmohey85
Types and Variables
Variables
int x = 1;
string name = “Jon”;
Types and Variables