Today we’ll understand the use of static and final keywords in Java. These two are important keywords of Java and are very significant. static Keyword The static keyword can be used with the var... Read More
Android Studio 2.3 released with lots of new features
Google has updated its IDE for Android development, Android Studio to version 2.3 which comes with lots of new changes. Existing users can update by going to Help->Check for updates. Android Studio... Read More
Understanding Multi-threading In Java With Practical Example
Multithreading in Java allows multiple threads to work at same time. Threads can be described as the small units which work in the background. They work in a way such that main interface of an applica... Read More
[UPDATE] Download Google Chrome 56 Stable
UPDATE: Google Chrome has been updated to version 56. Google Chrome is one of the fastest web browser available for various OS’es like Windows, Mac etc. With the list of increasing updates,... Read More
Opera Released New Concept Browser Opera Neon
Opera has introduced a new experimental concept browser in the desktop market and it has been named Opera Neon. Opera Neon is a browser with a fresh new design different from all other web browsers pr... Read More
Understanding Continue And Break Statements In Java
The break and continue keywords are the very important aspect of control structures in Java. Control Structures are the blocks of programming and consists of loops like for loop, while loop and if-el... Read More
How To Quickly And Easily Check Multiple Folder Sizes In Windows 10?
There are times when we want to check which folders are taking more space in a drive. However, it’s not easy to check how much space individual folder takes because Windows doesn’t show th... Read More
Coolest New Features Coming In Windows 10 Creators Update
Microsoft has unveiled the next big update coming to Windows 10 at the Surface event. Microsoft is calling it Creators Update and its version number is expected to be 1703 indicating that we can see a... Read More
Using Try And Catch Statement In Java
The Try Block Try and Catch statement consists of two blocks namely, try block and catch block. The Try block contains the code in which an exception or error might occur. The try block must be follo... Read More