Python

Python

A. kodeeshwarar join my telegram Channel @crackz tricks


1)What is the difference between interpreted and compiled?

Compilers and interpreters take human-readable code and convert it to computer-readable machine code. In a compiled language, the target machine directly translates the program. In an interpreted language, the source code is not directly translated by the target machine

Example :

We generally write a computer program using a high-level language. A high-level language is one that is understandable by us, humans. This is called source code.

However, a computer does not understand high-level language. It only understands the program written in 0's and 1's in binary, called the machine code.

To convert source code into machine code, we use either a compiler or an interpreter.


Interpreted languages are quicker to compile 

Interpreter Vs Compiler



How To Work?

What is Intermediate code?

Intermediate code between the high-level language and the machine language.

What is a scripting language?

scripting language is a programming language that is interpreted, meaning it is translated into machine code when the code is run rather than beforehand.

Example :

JavaScript, Python, and Ruby are all examples of scripting languages.

Python is a scripting language?

Yes, Python is a scripting language. It is also an interpreted and high-level programming language for the purpose of general programming requirements.



Report Page