May 2025

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