Arjun Thakur has Published 1109 Articles

How to remove an item from an ArrayList in C#?

Arjun Thakur

Arjun Thakur

Updated on 27-Mar-2020 10:51:33

274 Views

Firstly, set a a new ArrayList and add elements to it.ArrayList arr = new ArrayList(); arr.Add( "Jones" ); arr.Add( "Tom" ); arr.Add( "Henry" );Now let’s remove the item “Tom”. For that, use the Remove() method.arr.Remove("Tom");The following is the complete example to remove an element from ArrayList −Example Live Demousing System; using ... Read More

Bounce Out Right Animation Effect with CSS

Arjun Thakur

Arjun Thakur

Updated on 16-Mar-2020 08:05:49

67 Views

To implement Bounce Out Right Animation Effect with CSS, you can try to run the following codeExample                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;       ... Read More

Bounce Out Animation Effect with CSS

Arjun Thakur

Arjun Thakur

Updated on 16-Mar-2020 08:01:05

161 Views

To implement Bounce Out Animation Effect with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;       ... Read More

Specify position of the background images with CSS

Arjun Thakur

Arjun Thakur

Updated on 16-Mar-2020 07:55:22

73 Views

The CSS background-origin property is used to specify the position of the background images. You can try to run the following code to implement the background-image property −ExampleLive Demo                    #demo {             border: 5px ... Read More

Aural Media with CSS

Arjun Thakur

Arjun Thakur

Updated on 16-Mar-2020 07:25:00

122 Views

Aural rendering of documents is mainly used by the visually impaired. Some of the situations in which a document can be accessed by means of aural rendering rather than visual rendering are the following.Learning to readTrainingWeb access in vehiclesHome entertainmentIndustrial documentationMedical documentationWhen using aural properties, the canvas consists of a ... Read More

Fade In Down Animation Effect with CSS

Arjun Thakur

Arjun Thakur

Updated on 16-Mar-2020 07:18:14

257 Views

To implement Fade In Down Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: ... Read More

Fade Out Animation Effect with CSS

Arjun Thakur

Arjun Thakur

Updated on 16-Mar-2020 06:56:33

543 Views

To implement Fade Out Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;   ... Read More

Java program to join two given lists in Java

Arjun Thakur

Arjun Thakur

Updated on 13-Mar-2020 12:42:54

3K+ Views

The addAll() method of the java.util.ArrayList class is used to insert all of the elements in the specified collection into this list. To add contents of a list to another −Create list1 by instantiating list objects (in this example we used ArrayList).Add elements to it using add() method.Create another list. ... Read More

Java program to find the square root of a given number

Arjun Thakur

Arjun Thakur

Updated on 13-Mar-2020 10:49:49

1K+ Views

The process of finding the square root of a number can be divided into two steps. One step is to find integer part and the second one is for fraction part.AlgorithmDefine value n to find the square root of.Define variable i and set it to 1. (For integer part)Define variable ... Read More

Java program to find largest of the three numbers using ternary operators

Arjun Thakur

Arjun Thakur

Updated on 13-Mar-2020 10:00:30

453 Views

The conditional operator is also known as the ternary operator. This operator consists of three operands and is used to evaluate Boolean expressions. The goal of the operator is to decide, which value should be assigned to the variable. The operator is written as −variable x = (expression) ? value ... Read More

Advertisements