Admin

Technical Strength of Python

Spread the love

Contents: Technical Strengths Technical Strengths Here, we are going to discuss Python top technical features. 1. It’s Object-Oriented, Procedural and FunctionalPython is an Object-Oriented programming language. It supports advance concepts such as polymorphism, operator overloading, multiple inheritance etc. Python also supports procedural programming paradigm and OOP is an option in Python. In addition to procedural and […]

Technical Strength of Python Read More »

Python Introduction

Spread the love

Contents: Introduction Why do people use python? Introduction Python is the most widely used programming language created by Guido van Rossum, and first released on February 20, 1991. The name of the Python programming language comes from an old BBC television comedy sketch series called Monty Python’s Flying Circus. Python is a general-purpose programming language

Python Introduction Read More »

Data Types in Java

Spread the love

Contents: Data Types in Java Primitive Types and Values Non-Primitive Types Difference Between Primitive Data Types and Non-Primitive Data Types Data Types in Java Data type defines how much memory space represented by a variable need to be allocated and what kind of data a variable of that type will hold. There are two kinds

Data Types in Java Read More »

Variables in Java

Spread the love

Contents: What is a variable? How to declare a variable in java? What is a variable? In layman’s terms,  When you think of Java variable, think of an empty container that you can put values in.  “A variable is container. It holds something.” Whenever, we need a data to get stored in computer memory for

Variables in Java Read More »

Representation of Numbers in Different Bases and Interconversion Between Them

Spread the love

Contents: Whats is number system? What is base? What is place value? What is number system? A number system is a system of expressing numerical values using distinct symbols or digits. Digits are symbols like 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 used to represent different values of numbers. For example, 1234,

Representation of Numbers in Different Bases and Interconversion Between Them Read More »

Python implicit concatenation of adjacent string literals

Spread the love

Many of you know how to concatenate string literals in python. It is almost as simple to add + operator between the string literals to invoke string concatenation. But, here we are going to discus what would happen in python if we don’t write + operator between string literals just written below. In the above

Python implicit concatenation of adjacent string literals Read More »

Scroll to Top