Web API explained

October 6, 2019 Joe

An API enables two computer systems to communicate with each other by providing the language and contract on how the two systems will interact. A standard API will have specifications and instructions which determines how information can be transferred between two communicating computer systems.

Read More..

Hypertext Transfer Protocol Status Codes

August 4, 2019 Joe

HTTP Status Code can be described as a standardised status codes issued by the server in response to a client’s request. Below is a list of commonly used HTTP status codes;

Read More..

Comparing Java Arrays using equals and deepEquals

March 9, 2019 Joe

Arrays can be compared using the java.util.Arrays.equals(….) and java.util.Arrays .deepEquals(a1,a2) method. Let's see how these methods differs from another with an example.

Read More..