Techoceanhub logo

What is an API in Web Development?

Api stands for application programming interface. most people get confused about what actually means  by using an API. In simpler terms API is an interface or a medium in which two pieces of software communicate with each other. There are…

Let’s start with Kotlin’s basics. chapter-1

Today is the day we are going to start  with the kotlin basics., you know what kotlin language is? This language is all about developing applications despite, any kind of development, whether it is server side, client side or Android.…

Simple way to create multiple tabs using Kotlin

You might have heard about multiple tabs in Android. There are both manual as well as shortcut to create multiple tabs in android using Kotlin. Let’s see a simple view of how multiple tabs would look like in Android. This…

Handling Exception through try, catch, finally.

In the previous post we learned that how exceptions are created and here we are going to see what keywords are used to handle exception, and they are try, catch and finally. Below there is a structure explaining the  methodology…

Exception Handling in Java

Exception handling is a concept which handles problems or exceptions which arise during normal execution of a problem, in this scenario normal execution of a program gets disrupted. For example, a file which we are trying to open can not…

Abstraction in Java

Abstraction is the process of hiding the implementation details and  showing the required functionality to the user. In Java abstraction is achieved through abstract classes and interfaces. Some Features of abstract classes. In abstract class there are both abstract and…

Inheritance in Java

Inheritance in Java is considered to be of very important  concept, which deals with parent and child relationship, or in other words parent class and child class. But in Java we have to take care that parent class has to…

Let’s Learn Polymorphism in Java

Polymorphism is  very common word for everyone.  If we break polymorphism , the defination is quite clear, It is made up of two words, poly+morphism, which means many forms. Below there is a simple diagram which clearly explains types of…