Programming language is a series of code instructions that run the CPU and process them and gives the output to the user.
There are a different set of programming languages
Procedural language
Functional Programming language
Object-oriented programming language
Similarly, There are two types of programming languages
High-level programming language Low-level languages also called machine or assembly languages
Here is a comparison of both languages.
Procedure Language | Object-Oriented Language |
---|---|
Contains Procedure | Contains Methods |
Records | Objects |
Modules | Classes |
Machines and computers understand low-level language code only. So high-level languages need an interpreter or compiler to generate low-level machine-readable code.
Hight Level Language | Low-Level Languages |
---|---|
Code written need to compile to machine-readable code,because of compilation time, It takes some time to process | Low-level code understands by machines, and directly runs, so faster |
Human readable code | machine readable code |
It is very easy to write and modify code | It is difficult to write code directly |
Productivity is good as takes lesser time to write a code | Time is taken to write code is more |
Code is easy to run on different devices and platforms with lesser modifications | Code only runs on specific computers or types, Need code rewrite to run on another machine |
Compilers and interpreter required | Not required any middleman tools |
Examples languages are Java,Dart, Golang etc | Assembly is an example |
Type checking is a process of evaluating variable type at compile type or runtime There are two types of type checking
Languages allow you to type check at compile type.
This variable is declared and assigned to a type, you can not change the type. Types are assigned with variables, not data.
For example, In java, You declare a variable of the type String.
String str="Welcome"; // allowed
str=20 // Not allowed to reassign the values
These languages do type checking at runtime. In this variable is declared and assigned to a type, you can change the type and values dynamically. Types are assigned with data, not variables. For example, In javascript, You declare a variable of the type String.
var str="Welcome"; // allowed
str=20 // allowed
Statically typed languages | Dynamically typed languages |
---|---|
Type checking is done at compile time | Type checking is done at Run time |
Variables types must be declared | Variables types are not required but dynamic types |
Reassign variable with different type value is not possible | Allows to reassign variable with different type data |
Variables and expressions are evaluated at compile type | Variables and expressions are evaluated at runtime |
Java,C,C++ | Javascript,Python,Ruby |
Advantages are errors are caught at compile time | Error-prone at runtime time |
Good in terms of performance | Lower performance |
Compilation time is more | Compilation time is less |
There are two types scoping in variables on a language
Different types of programming
In this programming, Line of code is executed sequentially, and returns the result.
Functional Programming: In this, Every feature is written in as a functions and assign to variables to change state.
Reactive Programming
This is based on asynchronous data of streams of events, pushes the data when event is listened for subscribe.
Programming languages provides different functions types as given below
Functions are treated similarly to like a variables. Variables can be assigend and pass, return from Functions. Similarly Functions can be assigned, pass as an argument to Function and Returned from a Function
Dart Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 1 min read
Dart Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 4 min read
Dart Learn how to do type annotations in Dart using typedefs.
Posted January 13, 2023 by ‐ 2 min read
How to write variables in Dart with code local and global variables default variable with code examples.
Posted January 13, 2022 by ‐ 2 min read
Dart Hello World First program code for beginner examples How to run dart program using the command line dartpad and IDE such as VSCode.
Posted January 1, 0001 by ‐ 2 min read
How to Arithmetic Operators in dart with examples in dart
Posted January 13, 2023 by ‐ 2 min read
Dart enum types are one of the custom dart data types that can store fixed compile-time constants with examples
Posted January 13, 2023 by ‐ 2 min read
Dart Create Extensions to extend existing class types with examples.
Posted January 13, 2023 by ‐ 1 min read
Dart Functions definition and calling function with arguments examples flutter example
Posted January 13, 2023 by ‐ 4 min read
how to define and create implicit and explicit abstract interfaces in the dart, multiple inheritance interface examples
Posted January 13, 2023 by ‐ 4 min read
Dart inbuilt keywords with examples of language.
Posted January 13, 2023 by ‐ 1 min read
How to create list types in dart with tutorials and code examples
Posted January 13, 2023 by ‐ 4 min read
Learn how to define and create metadata annotation and use it in programs in the dart, metadata annotations examples
Posted January 13, 2023 by ‐ 1 min read
Dart Mixin class with keyword examples and errors with examples
Posted January 13, 2023 by ‐ 3 min read
how to define and create implicit and explicit abstract interfaces in the dart, multiple inheritance interface examples
Posted January 13, 2023 by ‐ 1 min read
Dart Runes data type how to get Unicode UTF-16 of a given string code points in dart and flutter examples
Posted January 13, 2023 by ‐ 2 min read
Learn Set type to store unique elements and unordered objects in Dart with examples
Posted January 13, 2023 by ‐ 3 min read
Dart static class variable and methods examples in dart
Posted January 13, 2023 by ‐ 3 min read
Dart switch case examples break and conditional expression and constants in case switch enum case example
Posted January 13, 2023 by ‐ 3 min read
Dart Symbol examples using new and literal syntax and convert Symbol to String example in dart
Posted January 13, 2023 by ‐ 1 min read
Dart this examples constructor methods instance variables example in dart
Posted January 13, 2023 by ‐ 2 min read
Learn class and object creation constructors named parameter setter and getter and functions instance member variables examples.
Posted January 11, 2023 by ‐ 4 min read
Dart Runes data type how to get Unicode UTF-16 of a given string code points in dart and flutter examples
Posted January 11, 2023 by ‐ 1 min read
Dart Boolean is one of the static inbuilt dart data types that can store true and false values. It can be used in conditional expressions such as if and switch statements.
Posted January 1, 0001 by ‐ 2 min read
This tutorial covers dart comments Single multi-line comments API documentation comments block comments with example
Posted January 1, 0001 by ‐ 3 min read
Dart dynamic types are one of the dynamic inbuilt dart data types that can store any type of value, you can reassign with a different type than the declared type value.
Posted January 1, 0001 by ‐ 2 min read
Dart number types is one of the static inbuilt dart data types that can whole numbers using int type, and floating decimal numbers with double type. num is a superclass of int and double used to store the numeric values whose types are not known at compile time.
Posted January 1, 0001 by ‐ 2 min read
Dart String data type how to declare and initialize a string value with examples of Unicode emoji and append concatenation and interpolation string syntax
Posted January 1, 0001 by ‐ 2 min read
Dart Nameless Functions examples - Closure, Arrow syntax Lambda, Anonymous functions.
Posted January 11, 2023 by ‐ 2 min read
How to use the assert function in the dart for debugging with examples, advantages, and comparison with error class.
Posted January 11, 2023 by ‐ 2 min read
Dart lexical scopes and lexical closure functions with examples.
Posted January 13, 2023 by ‐ 2 min read
This is getting start page for learning Python tutorials with examples for beginner, developer and experienced.
Posted January 1, 0001 by ‐ 1 min read
How to declare a string in python with datatype and string literal syntax in a python programming language. Multiple ways to create multiline string examples
Posted December 31, 2022 by ‐ 2 min read
Comments are ignored by Python interpreter, You can write a single comments multi line comments documentation comments in python programming language.
Posted January 1, 0001 by ‐ 3 min read
Learn inbuilt datatypes supported in Python.
Posted January 1, 0001 by ‐ 1 min read
Python Hello world first program example | How to compile and execute a program command line.
Posted January 1, 0001 by ‐ 2 min read
Learn inbuilt datatypes supported in Python.
Posted January 1, 0001 by ‐ 1 min read
This is getting start page for learning Python tutorials with examples for beginner, developer and experienced.
Posted January 1, 0001 by ‐ 0 min read
This is getting start page for learning Python tutorials with examples for beginner, developer and experienced.
Posted January 1, 0001 by ‐ 2 min read
This is getting start page for learning Python tutorials with examples for beginner, developer and experienced.
Posted January 1, 0001 by ‐ 1 min read
This is getting start page for learning Python tutorials with examples for beginner, developer and experienced.
Posted January 1, 0001 by ‐ 1 min read
This is getting start page for learning Python tutorials with examples for beginner, developer and experienced.
Posted January 1, 0001 by ‐ 1 min read
This is getting start page for learning Ruby tutorials with examples.
Posted January 1, 0001 by ‐ 1 min read
This is getting start page for learning ruby tutorials with examples.
Posted December 31, 2022 by ‐ 0 min read
This is getting start page for learning ruby tutorials with examples.
Posted December 31, 2022 by ‐ 0 min read
Different variable types and variable declaration in ruby programming language.
Posted December 31, 2022 by ‐ 1 min read
This is getting start page for learning ruby tutorials with examples.
Posted December 31, 2022 by ‐ 1 min read
Comments are ignored by a ruby interpreter, You can write a single comments multi-line comments shebang comments, and magical comments in a ruby programming language.
Posted January 1, 0001 by ‐ 4 min read
Learn Different Loop types in Ruby Code language.
Posted January 1, 0001 by ‐ 1 min read
ruby case conditional statement examples Ruby for beginner and experienced
Posted January 1, 0001 by ‐ 2 min read
ruby if-else tutorials with examples Ruby for beginner and experienced unless conditional statement and modifier
Posted January 1, 0001 by ‐ 3 min read
Learn simple Hello world example, run program ruby tutorials with examples.
Posted January 1, 0001 by ‐ 2 min read
Rust tutorials and beginner guide for professionals and developers Rust file extension advantages and disadvantages.
Posted January 1, 0001 by ‐ 2 min read
Comments are ignored by the Rust interpreter, You can write single comments or multi-line comments in Rust programming language.
Posted December 31, 2022 by ‐ 2 min read
Learn Cargo Hello World Rust sample first program learning Rust tutorials with examples.
Posted December 31, 2022 by ‐ 1 min read
Rust Constants with examples - scope, shadowing, naming convention difference between variable and const in Rust tutorials with examples.
Posted December 31, 2022 by ‐ 2 min read
Learn Rust scalar and Compound types tutorials with examples.
Posted December 31, 2022 by ‐ 3 min read
Learn Rust scalar and Compound types tutorials with examples.
Posted December 31, 2022 by ‐ 1 min read
This is Hello World Rust sample first program learning Rust tutorials with examples.
Posted December 31, 2022 by ‐ 2 min read
Learn Rust Functions, Declare, multiple arguments, closure, and Return multiple values with examples.
Posted December 31, 2022 by ‐ 3 min read
This is Hello World Rust sample first program learning Rust tutorials with examples.
Posted December 31, 2022 by ‐ 3 min read
Rust loop iterations with break and continue in Rust tutorials with examples.
Posted December 31, 2022 by ‐ 2 min read
How to write Switch or match case, examples for string case, number, enum, range of values, multiple statements examples.
Posted December 31, 2022 by ‐ 2 min read
print and access the tuple data type tuples destructing assignment example, the difference between Tuple and array.
Posted December 31, 2022 by ‐ 2 min read
Rust variables - scopes, mutable and immutable, naming conventions tutorials with examples.
Posted December 31, 2022 by ‐ 3 min read
This is install, uninstall,upgrade Rust learning Rust tutorials with examples.
Posted December 31, 2022 by ‐ 4 min read
Rust simple if, if else, and if else if examples conditional expression statements with examples conditional decisive
Posted December 31, 2022 by ‐ 3 min read
This is a getting start page for learning Ruby tutorials with examples.
Posted January 1, 0001 by ‐ 1 min read
Array add, remove, iterate, append, insert, contains operations for loop element iteration with index and empty array Swift programming language.
Posted December 31, 2022 by ‐ 4 min read
Comments are ignored by Swift Compiler, You can write single-line or multi-line comments in Swift programming language.
Posted December 31, 2022 by ‐ 2 min read
Dictionary types with examples in Swift programming language.
Posted December 31, 2022 by ‐ 2 min read
How to Write and iterate Enum in Swift Code programming language with examples.
Posted December 31, 2022 by ‐ 1 min read
for in loop where clause with array dictionary range index examples Swift programming language.
Posted December 31, 2022 by ‐ 2 min read
Hello World and compile, and run the First program in Swift programming language.
Posted December 31, 2022 by ‐ 1 min read
How to write an if, if-else, if-else-if in Swift programming language.
Posted December 31, 2022 by ‐ 2 min read
Learn Closed range operator, Half open range operator, One side range operator array range of values Swift programming language.
Posted December 31, 2022 by ‐ 2 min read
How to use create, initialize, add,delete, iterate Set in Swift programming language.
Posted December 31, 2022 by ‐ 2 min read
How to write a if, if-else, if-else-if in Swift programming language.
Posted December 31, 2022 by ‐ 1 min read
How to use while and repeat while loop in Swift Code does while loop iteration in Swift programming language.
Posted December 31, 2022 by ‐ 2 min read
haskell Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 1 min read
How to write single and multi-line blocks, documentation comments in Haskell Programming language with examples.
Posted January 1, 0001 by ‐ 2 min read
Haskell Hello World first program example for beginners, on how to compile and run Haskell code from a command line.
Posted January 1, 0001 by ‐ 1 min read
How to write if then else and nested if else statements in Haskell Programming language with examples.
Posted January 1, 0001 by ‐ 2 min read
Kotlin Programming language tutorial for beginner examples advantages and disadvantages.
Posted January 1, 0001 by ‐ 1 min read
How to Write a comments in Kotlin Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 2 min read
Beginner guide to learn Hello World Kotlin First example program. compile and run the kotlin program from the command line. install, compile and run Kotlin from the command line
Posted January 1, 0001 by ‐ 3 min read
Matlab Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 1 min read
This tutorial covers Matlab comments Single multi-line comments API documentation comments block comments with example
Posted January 1, 0001 by ‐ 2 min read
This tutorial covers How to find type of a variable in Matlab example
Posted January 1, 0001 by ‐ 1 min read
This is getting start page for learning Nim tutorials with examples.
Posted January 1, 0001 by ‐ 1 min read
Nim Hello World First program code for beginner examples How to run nim program using command line nim playground and IDE such as VSCode..
Posted January 1, 0001 by ‐ 2 min read
This is getting start page for learning Nim tutorials with examples.
Posted January 1, 0001 by ‐ 1 min read
This tutorial covers nim comments Single multi-line comments API documentation comments block comments with example
Posted January 1, 0001 by ‐ 2 min read
This is getting start page for learning OCaml tutorials with examples.
Posted January 1, 0001 by ‐ 2 min read
OCaml Comment examples for single, multi-line, and documentation comments code
Posted January 1, 0001 by ‐ 2 min read
OCaml Hello world first program example | How to compile and execute a program command line.
Posted January 1, 0001 by ‐ 2 min read
Step-by-step guide to install and uninstall objective caml in Linux OS.
Posted January 1, 0001 by ‐ 1 min read
Step-by-step guide to install and uninstall objective caml in Mac OS.
Posted January 1, 0001 by ‐ 1 min read
Step-by-step guide to install and uninstall objective caml in Ubuntu OS.
Posted January 1, 0001 by ‐ 1 min read
Perl Programming language tutorial for beginner examples advantages and disadvantages language easy to learn
Posted January 1, 0001 by ‐ 2 min read
Perl Array declaration, add, remove, iteration, and size of an array in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 3 min read
Learn Perl Assignment operator with code examples
Posted January 1, 0001 by ‐ 2 min read
Learn Perl Bitwise operator AND, OR, XOR with code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 3 min read
Learn how to handle boolean true and false in Perl Programming language tutorial for beginner examples, usage of subroutine or function return boolean values
Posted January 1, 0001 by ‐ 2 min read
Learn how to handle boolean true and false in Perl Programming language tutorial for beginner examples, usage of subroutine or function return boolean values
Posted January 1, 0001 by ‐ 1 min read
Perl Command options with examples Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 1 min read
Write Single and Multi-line or block code comments in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 2 min read
variable declaration with an array, scalar, and hashes, naming rules, interpolation syntax Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 4 min read
Learn Perl Comparison equal and Relational code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 3 min read
Perl Data types examples scalar, array, and hash data types in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 2 min read
Perl Data types examples scalar, array and hashs data types in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 2 min read
Perl File Operations with examples Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 2 min read
Perl foreach examples iterate array elements in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 1 min read
Perl Inbuilt Functions Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 1 min read
Perl Array declaration, add, remove, iteration, and size of an array in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 1 min read
Perl hash declaration, add, remove, iteration, and size, iterate of a hash in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 2 min read
Learn Perl Hello World First program and how to execute and run script tutorial code examples
Posted January 1, 0001 by ‐ 3 min read
Write Hello World Simple First program examples in Perl Programming language tutorial for beginners and how to execute and run examples.
Posted January 1, 0001 by ‐ 2 min read
Perl Language Editor and IDE support in Windows Mac and Unix OS examples.
Posted January 1, 0001 by ‐ 1 min read
Learn Perl If else conditional statement using string, one line simple logical and or operator tutorial for beginner examples.
Posted January 1, 0001 by ‐ 4 min read
How to Download and install Perl Programming language on Linux and Unix tutorial for beginner examples.
Posted January 1, 0001 by ‐ 1 min read
How to Download and install Per on WindowsPerl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 2 min read
Learn Perl logical operator and, or not with code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 1 min read
Loop Control in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 1 min read
Perl Array declaration, add, remove, iteration, and size of an array in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 3 min read
Perl Modules create use require and constructor and destructor in Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 2 min read
Learn Perl logical operator and, or not with code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 2 min read
Learn Perl logical operator and, or not with code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 1 min read
Learn Perl logical operator and, or not with code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 1 min read
Learn Perl Range operator with code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 1 min read
Learn Perl logical operator and, or not with code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 2 min read
Learn Perl String operators code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 1 min read
Perl Subroutine tutorial and examples create use arguments and return statements nested functions, parameter passing, private subroutine with code examples
Posted January 1, 0001 by ‐ 3 min read
Learn Perl try catch and, or not with code examples Operator Precedence and Associativity
Posted January 1, 0001 by ‐ 1 min read
Perl while and do while examples Perl Programming language tutorial for beginner examples.
Posted January 1, 0001 by ‐ 3 min read
Perl Ternary Operator in Programming language tutorial for beginner examples Perl Ternary Operator assignment, multiple conditions conditional operator code
Posted January 1, 0001 by ‐ 2 min read
This is a getting start page for learning Typescript tutorials with examples.
Posted January 1, 0001 by ‐ 2 min read
Learn How to install Typescript languages and compiler with and hello world tutorials with examples.
Posted January 1, 0001 by ‐ 1 min read
This tutorial covers free Lisp tutorials developers for example
Posted January 1, 0001 by ‐ 1 min read
This tutorial covers Lisp comments Single multi-line comments, and block comments with example
Posted January 1, 0001 by ‐ 1 min read
This tutorial covers Basic simple Hello World program free Lisp tutorials developers for example
Posted January 1, 0001 by ‐ 1 min read