In Java, float is a data type that is used to store floating-point value. When we print a float value then it print several digits after decimal point which are sometimes not significant. We can avoid this by. Read More...
A list of lists basically a nested list that contains one or more lists inside a list. There are many approaches to create a list of lists. Read More...
To take a user input in Python, Python provides input() method that returns user input as string but Read More...
del is a keyword in Python which is used to delete an object. Object can be a list, variable, string, tuple etc. Read More...
Array in Java is a collection of similar type of elements which are contiguously stored into memory. Array starts from 0 index and goes to n-1 where n is length of the array. We can create 2D or multidimensional arrays as well. Read More...
Like other programming languages, Python uses for loop to iterate the elements of a sequence.Read More...
Almost all the programming languages supports control statements to control flow of the program execution based on some conditions. Here, we are discussing about the conditional statements present in the Java programming language. Read More...
Like other programming languages, Python has its own programming syntax and rules to write clean and readable code. Read More...
Autoboxing and unboxing both are the terms in Java, used to refer conversion of primitive type to its corresponding wrapper class object and vice versa. Read More...
Data type specifies type of data stored by a variable. In other words, data type tells to the compiler what type of data a variable can store during program execution. Read More...
Python 3.8 is the latest version of Python released by Python Software Foundation. This release includes various major and minor programming features that we have listed in details. Read More...
Variable is a name which is used to store a value of specified type during program execution. The type can be a int, float, String etc, variable also refers as a container that contains assigned value. Read More...
Python Set is mutable by default so that we can modify its elements easily. But if we want to create an immutable version of Python set then we can use Read More...
This section involves discussion of Java primitive data type casting. It is essential concept to know during learning of Java to understand the process of casting one type value to another type. Read More...
All programming languages have their own predefined function to get input from the user during program execution. Python uses raw_input and input functions to get user input. Read More...