Python program to declare variables without assigning any value

Learn how to declare variables without assigning any value in python. Whenever we create one variable in python, we assign one value to it and python defines the type automatically.

Read

Interface in typescript explanation with example

Learn what is interface in typescript with example. Interface is used to define the syntax of a class to follow.

Read

C++ program to find the sum of first n natural numbers

C++ program to find the sum of first of n natural numbers. We will take the value of n as input from the user.

Read

Swift optional explanation with example

What is swift optional. Optional is an important concept in swift. Learn optional with examples in this blog post.

Read

Numbers in Kotlin and different useful methods

Learn how to use number in Kotlin with different methods defined in it. We will see its built-in types, different types of use cases with examples.

Read

How to rethrow an exception in Kotlin

Using try catch finally, we can handle an exception. Rethrowing an exception is used to rethrow an exception again in the catch block. In this post, we will learn how to rethrow exception in kotlin with example.

Read

How to handle exceptions using try catch in Kotlin

Learn how to handle exceptions in Kotlin using try catch with different examples. We will explore how to throw an exception and how to use try catch blocks to handle.

Read

C program to find the GCD of two user given numbers in 2 different ways

C program to find GCD of two user given numbers. We will learn two different ways to find the GCD in C.

Read

How to print double quotes in C using printf

C program to print double quotes using printf. We will learn different ways to print double quotes in C with example.

Read

Python numpy log10 explanation with example

Python numpy log10 method explanation with example. Learn how to use numpy log10 with a simple example.

Read