Throw And Throws Exception in Java

5 years ago

Throw Throw is a keyword that is used in Java to declare an exception which is similar to the try/catch…

What are Relational Operators?

5 years ago

Unlike logical operators which connect two or more expressions, relational operators test and establish some type of relation between two…

Template Literals

5 years ago

Template literals allow for embedded expressions and help to solve the complex concatenation problem. They are enclosed by a back-tick…

Logical Operators

5 years ago

“Programs must be written for people to read, and only incidentally for machines to execute.” — Harold Abelson, Structure

5 Network Scanning Tools

5 years ago

Network scanning is the process of identifying, analysing and fixing loopholes and vulnerabilities in a network to prevent a malicious…

Box shadows in CSS

5 years ago

The box shadow property in CSS is used to cast shadow on the frame of elements. It has the following…

Working With Functions

5 years ago

A function is a group of reusable code that can be called anywhere in your program. Functions eliminate the need…

Beginning With React Native

5 years ago

React Native is an open-source mobile application framework created and developed by Facebook, Inc. It is used to develop native…

Inheritance in Java

5 years ago

Inheritance in programming is the process whereby one class (also called a sub-class) acquires the properties (methods, fields, etc) of…

Exceptions in Java

5 years ago

An exception is a problem that arises during the execution of a program. When an exception occurs, the normal flow…