Properties of ‘marquee’ tag and its different Attributes

By Saurabh Singh

In this HTML tutorial, today we will learn about a single tag, named as the marquee. The marquee tag comes in a pair. In other words, it has an opening as well as the closing tag.... Read More

Reading and writing a file in Java using FileInputStream and FileOutputStream

By vikrant_tomar

In this Java tutorial, we will learn about file handling in Java. Basically, we will learn reading and writing a file in Java using FileInputStream and FileOutputStream. The java..... Read More

Program to find all distinct solutions to N-Queens problem in Java

By vikrant_tomar

In this Java tutorial, we will find all solutions to N-Queens problem in java. We will use backtracking to find all unique solutions to the problem. Problem Statement An N*N chessb.... Read More

Array Sorting: How to sort an array of integers in Python3?

By Priyam Sur

ARRAY SORTING in Python Array sorting can be of two types: Ascending Order Sorting: The arrangement of elements of the array is from smallest to largest number. Descending Order So.... Read More

Compound and Simple Interest Calculation using Python

By Priyam Sur

In this tutorial, we are going to write a Python program to calculate compound and simple interest using Python program. I hope you have also done the math related to interest when.... Read More

Total Ways to traverse a n*m board using Dynamic Programming in Java

By divyesh srivastava

In this Java tutorial, we are going to find the total number of ways to traverse a board consisting of n*m blocks using Dynamic Programming approach. Finding the total number of wa.... Read More

Add image to a HTML page in short using HTML or CSS

By Saurabh Singh

In this post, I will tell you the two methods, how you can add an image to your HTML page. Because without an image HTML page is very simple, basically we use the image to decorate.... Read More

Operation on Strings using pre-defined string functions in PHP

By divyesh srivastava

In this PHP tutorial, we are going to perform different operations on strings using pre-defined string functions in PHP. Some of the pre-defined string functions in PHP:- 1.) strle.... Read More

Related Posts