13 new innovative technologies and features unveiled at WWDC20

On June 22, 2020, Apple began its Worldwide Developers Conference (WWDC20) that brought together a large number of fans and software developers for the Special Event Keynote and Platforms State of the Union around the world. The innovations will push the experience of Apple products even further. From macOS Big Sur to iOS 14, iPadOS 14, watchOS 7, and tvOS 14, here are the biggest features and app

Technology June 22, 2020
What is Oracle PL/SQL? - An Introduction

In the previous article, I introduced you to MS SQL Database. In this article, I will introduce you to Oracle PLSQL. And at the end of the tutorial, you will learn about PLSQL language as well as its architecture.PLSQL combines SQL along with procedural features of programming. PLSQL stands for Procedural Language extensions to the Structured Query. It was created by Oracle Company in the 1990s to

SQL June 21, 2020
How much does it cost to make an app

In this article, I will help you determine what you will pay to get an app for your business developed. Both App Store and Play Store have more than 2 million apps each. Both app stores grow by 300 apps per day, and their future looks even brighter. Therefore the mobile economy is increasing steadily and shows no signs of stopping. So, if you have thought about an app for your business, the k

Misc June 13, 2020
Android Google Maps Tutorial with Example

Hi, and welcome to yet another Android Tutorial. In this article, I will be tackling Android Google Map. Android enables us to integrate Google map into our android applications. With Google Map you can display directions, search places and calculate distance between point A and B. Actually you can customize Google map in your application according to your requirement. There are four types of Goog

Android May 31, 2020
Introduction to SQL Server - Most Important SQL Queries

Today, data is the basis of any business out there. Big enterprises do data-driven businesses. This data needs to be stored in well-structured storage facilities called database. Therefore in this article I shall focus on teaching you the most important SQL Server commands.  Structured Query Language. SQL is used to communicate with a database. You can use the commands in other relational DBM

SQL May 24, 2020
Three Best Websites to Get Programming Assignment Help

From time to time, we are faced with challenges in handling and completing our assignments. This drives us to seek alternative help form professionals with skills and knowledge in the respective fields. The online platforms have been one of the most effective and popular platforms to seek assistance with the assignments, essays, and such work details. This includes a variety of helpful resources a

Misc May 21, 2020
How to Create Read only file or Mark a file as Read only in Java

This tutorial shows how to create a read only file or mark an existing file as read only.Create Read Only File in Javaimport java.io.IOException;import java.nio.file.FileAlreadyExistsException;import java.nio.file.Files;import java.nio.file.Path;import java.nio.file.Paths;import java.nio.file.attribute.FileAttribute;import java.nio.file.attribute.PosixFilePermission;import java.nio.file.attribute

Java May 09, 2020
How to Create Temp File or Directory in Java

This tutorial shows how to create temp file and temp directory using javaCreate Temp Directory in Javaimport java.io.IOException;import java.nio.file.Files;import java.nio.file.Path;public class TempDirectory{    public static void main(String[] args) {        try {            Path tempDirPath = Files.createTempDirectory("tempDir"); 

Java May 09, 2020
Software Testing Interview Questions

Software Testing is the activity to check if the developed software system match the expected customer needs and to ensure that the software system is defect free.  Software testing helps identify bugs in the system, gaps and any missing requirement. We had looked at types software testing and let's see the most asked software testing questions. Software testing is divided into two

Misc February 01, 2020
MVC vs MVVM

MVVM is a derivative of MVC, and the key difference is how each layer in these patterns depends on other patterns and how tightly they are bound to each other. MVC simply stands for Model View Controller while MVVM stands for Model View ViewModel. Both are architectural design patterns that are used for separation of ideas. They enable programmers to develop systems that are maintainable, reusable

Misc January 30, 2020
Pages