Admin

Java Compilation Process

Spread the love

Contents: What is Java Source Code? Java Compiler What is Java Bytecode? JVM(Java Virtual Machine) Java compilation process involves conversion of human readable Java source code file into machine readable byte code which can be executed by JVM(Java Virtual Machine).  The above process involves:1. Writing of source code file2. Invoking compiler3. Bytecode generation4. Translation of […]

Java Compilation Process Read More »

Introduction to Java

Spread the love

Contents: What is Java? History of Java What is Java? Java is a computer programming language that we use to write instructions for computers to solve any problem. Here, instructions are commands to computer that computer follows, processes those commands and gives you result. Group of such instructions is called computer program or we can

Introduction to Java Read More »

break Statement in Python

Spread the love

Contents: break Statement Example break Statement In Python, break statement is a control flow statement that terminates the closest enclosing loop, in which it is written, prematurely when encountered and execution starts from the next instruction following the loop just terminated.  Example # Write a program in Python that takes an integer value from user

break Statement in Python Read More »

while Loop in Python

Spread the love

Contents: Introduction General Format of while Loop else Clause in while Loop in Python while Loop Working Example Introduction A loop is a programming construct that allows a block of code to be executed repeatedly until a certain condition is met. Python supports two main types of loops: for loops and while loops.  General Format of while Loop while test: 

while Loop in Python Read More »

Python Variables, Objects, and References

Spread the love

Contents: Introdution Variables, Objects, and References in Python Introduction During problem solving in Python, we need to store data of different types and we perform different operations on them. In Python, data takes the form of objects—either built-in objects that Python provides, such as strings and lists, or add-on objects we create with Python classes.

Python Variables, Objects, and References Read More »

Introduction to Python Interpreter and Program Execution

Spread the love

Contents: What is Python Interpreter? Download and Install Python Interpreter Python Program Execution What is Bytecode? The Python Virtual Machine(PVM) What is Python Interpreter? Before discussing Python interpreter, let us understand what is Interpreter. Interpreter is a kind of program that executes other program. When you write a Python program, the Python interpreter reads your

Introduction to Python Interpreter and Program Execution Read More »

Scroll to Top