Interesting Facts About Java
Java: A general-purpose, high-level programming language. It is developed by Sun Microsystems. It was developed by a mini team of engineers which is known as… Read More »
Java: A general-purpose, high-level programming language. It is developed by Sun Microsystems. It was developed by a mini team of engineers which is known as… Read More »
C# is a general-purpose, modern and object-oriented programming language pronounced as “C Sharp”. It was developed by Microsoft led by Anders Hejlsberg and his team… Read More »
Linux is community-developed and open source operating system for computers, servers, mainframes, embedded devices, and mobile devices. It is supported on nearly every major computer… Read More »
Ubuntu is an open source, freely available Linux based operating system. It is the most popular and widely used operating system. It is developed by… Read More »
C++ is a general-purpose, object-oriented programming language. It supports generic programming and low-level memory manipulation. Bjarne Stroustrup (Bell Labs) in 1979, introduced the C-With-Classes, and… Read More »
Some interesting facts about computer networking are: Internet was invented by Tim Berners-Lee in 1989. Internet is controlled by 75 million servers. Backbone of internet… Read More »
Prerequisite : Arrays in Java While working with arrays we have to do 3 tasks namely declaration, creation, initialization or Assignment. Declaration of array :… Read More »
Increment operator It is used to increment a value by 1. There are two varieties of increment operator: Post-Increment : Value is first used for… Read More »
Here are some logical and interesting facts about data-types and the modifiers associated with data-types:- 1. If no data type is given to a variable,… Read More »
We know Fibonacci number, Fn = Fn-1 + Fn-2. First few Fibonacci numbers are 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55,… Read More »
Below are some interesting facts about C programming: 1) The case labels of a switch statement can occur inside if-else statements. filter_none edit close play_arrow… Read More »
Almost all the programming languages are bonded with null. There is hardly a programmer, who is not troubled by null. In Java, null is associated… Read More »
Interesting facts about strings in Python -Set 1 Like other programming languages, it’s possible to access individual characters of a string by using array-like indexing… Read More »
Python is one of the most popular programming languages nowadays on account of its code readability and simplicity. All thanks to Guido Van Rossum, its creator. I’ve… Read More »
1. Strings are Immutable Once a string is defined, it cannot be changed. filter_none edit close play_arrow link brightness_4 code # Python3 program to show… Read More »