Commonly Asked Java Programming Interview Questions

In Coding Interview Preparation Ultimate Guide article, I explained in details everything you need to prepare yourself for coding interviews. Now let's see some of the popular interview questions with answers for both beginners and experts. These interview questions have been designed with a purpose of getting you prepared for interview questions you may encounter. These are only Java Pr

Misc January 27, 2020
Microsoft Officially Launches a New Chromium-Based Edge Browser on Windows and MacOS Platforms

Microsoft released the first Chromium-based Edge version on January 15, 2020. The new Microsoft Edge Browser is based on the Chromium open source project, which makes it similar to Google Chrome in that regard. In 2018, Microsoft announced plans to switch to Chromium after the Edge web browser released in 2015 failed to make much progress by the end of 2017. Google Chrome has recently solidified i

Technology January 16, 2020
Best JavaFX Libraries for Beautiful Apps

In this article, I shall note down the best JavaFX libraries for developing beautiful apps for your clients. JavaFX is mainly used for creating desktop applications, and it's intended to replace Java Swing. JavaFX comes with a decent default theme called Modena and many in-built UI controls like Form Controls, TableView, TreeTableView, ListView, Datepicker, WebView, etc. FXML is used to create the

JavaFX January 13, 2020
Building web apps in WebView

There is a common scenario where you want to display information in your app. You might need to update, for instance, privacy and policy information. If you're going to deliver a web page as part of your Android Application, you can use WebView. The WebView class is an extension of Android’s View class. WebView allows Android developers to display web pages as part of their activity layout. WebV

Android January 03, 2020
Android RatingBar Tutorial with Example

You will want to get rating for your android application at some point. A user will click on a set of stars to set the rating value. Android provides a built-in class, RatingBar, which is an extension of SeekBar and ProgressBar that shows a rating in stars. RatingBar is a subclass of the AbsSeekBar class. The user can touch/drag or use arrow keys to set the rating when using the default size Ratin

Android January 03, 2020
How to Start a Website in 2020 With Easy Steps

Welcome to this ultimate guide for creating a website. This is a simple-to-follow tutorial, and in the end, you will be able to build your own website in a day. I will show you how to set up your website, how to get a domain name for your website, how to host it for people to access.Starting a website is one of the best choices you will ever make. As of 2019, there were over 1.94 billion websites

Misc January 02, 2020
Java Database Connectivity (JDBC) with MySQL Tutorial

Hi, and welcome to this tutorial. We are going to learn what is JDBC and how to connect to the database with Java.At some point, you will need to store data for your applications. You can save the data in a file system or use a database system. There is numerous reason why you should consider using a database system.Why use Databases?You can query data in a database.You can look up data from a dat

Java December 29, 2019
Android Splash Screen Tutorial In Android Studio

A splash screen is a window containing a logo and the version of the application. A splash screen appears while the application or game is launching. You should have seen this in many apps like YouTube, Twitter, Facebook, Fiverr, etc. Also, many IDEs such as Android Studio, NetBeans, and Eclipse, etc. have a splash screen that shows when the apps are launching.Splash screens are explicitly used by

Android December 29, 2019
Android Login And Register Using Volley PHP MySQL  and Session Management

Welcome to this Android tutorial. In this tutorial, I will show you how to create a login and register application in Android. This is vital in every application where the user is required to create an account and login to the app. We will store our data in MySQL database. To interact with the database, we will use a server-side language called PHP. I hope you have XAMPP installed on your lap

Android December 29, 2019
Android Upload Image to Server Using Retrofit

In this tutorial, I will show you how to upload an image to a PHP server using android retrofit. I will give an explained example and a GitHub repository to download both Android and PHP code. You will need to upload photos or images from your android app to a server. Many apps have this functionality, including Telegram, Instagram, Facebook, WhatsApp, etc. You have built your excellent app a

Android December 05, 2019
Pages