python

Python program to reverse all strings in a list of strings

Python program to reverse all strings in a list of strings. We will learn different ways to reverse all strings in a list of strings.

Read
python

Python program to print all alphabets from A to Z in uppercase and lowercase

Python program to print all the alphabets from a to z in both lowercase and uppercase. We will check two different ways to print these.

Read
android

How to create an alert dialog with multiselection in Android(Kotlin)

Learn how to create a multi-selection alert dialog in Android using kotlin. The alert dialog will show a list of items those can be selectable.

Read
python

How to convert octal to decimal in python

Python program to convert octal to decimal. This post will show you different ways to convert octal value to decimal.

Read
python

How to find the cube root in python numpy

Python numpy provides cbrt method to find the cube root of a number. Learn how to use cbrt method with example.

Read
android

How to create an alert dialog with a list in Android(Kotlin)

Learn how to create a list alert dialog in Android. The alert dialog will show a list of items those can be clickable.

Read
android

Learn to create a simple Alert Dialog in Android using Kotlin

Learn how to create a simple alert dialog in Android using Kotlin. This post will show you how to use AlertDialog class to create dialog box in Android.

Read
typescript

How to convert a string to an array of characters in TypeScript using split

Learn how to convert a string to an array of characters in Typescript using split. Learn how to use split and its different usages.

Read
c#

C# how to check for a palindrome number

C# program to check if a number is palindrome or not. It will take one number as input from the user and print one message it is palindrome or not.

Read
c#

C# how to check if a HashTable is equal to another HashTable

How to check if two hash tables are equal or not in C#. C# HashTable class provides a Equals method that can be used to compare two hash tables.

Read