Skip to content

Tag Archives: interesting-facts

“9 is special magic number in case of finding remainder.” Because if you want to find remainder of any number when divided by 9, just… 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” or “C Hash”. It was developed by Microsoft led by Anders Hejlsberg… 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 ARPANET in 1983. Internet is controlled by 75 million servers. The backbone of the… 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 is used to increment a value by 1. There are two varieties of increment operator:  Post-Increment: Value is first used for computing the… 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, 89,… Read More
Below are some interesting facts about C programming: 1) The case labels of a switch statement can occur inside if-else statements. #include <stdio.h>    int… 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
Creating a String Strings in Python can be created using single quotes or double quotes or even triple quotes. # Python Program for # Creation… 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