Chandu yadav has Published 1163 Articles

overriding method different package in java

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 07:32:47

1K+ Views

TestedThe benefit of overriding is ability to define a behavior that's specific to the subclass type, which means a subclass can implement a parent class method based on its requirement.In object-oriented terms, overriding means to override the functionality of an existing method.Example Live Democlass Animal {    public void move() { ... Read More

Count the Number of matching characters in a pair of Java string

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 07:28:27

2K+ Views

In order to find the count of matching characters in two Java strings the approach is to first create character arrays of both the strings which make comparison simple.After this put each unique character into a Hash map.Compare each character of other string with created hash map whether it is ... Read More

Set printing double-sided documents with CSS

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 07:07:38

383 Views

When printing double-sided documents, the page boxes on the left and right pages should be different.ExampleIt can be expressed through two CSS pseudo-classes as follows −    

JSON encoder and decoder package in Python

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 06:42:28

2K+ Views

JSON stands for JavaScript Object Notation. It is a lightweight data interchange format. It is similar to pickle. However, pickle serialization is Python specific whereas JSON format is implemented by many languages. The json module in Python’s standard library implements object serialization functionality that is similar to pickle and marshal ... Read More

Python Parser for command line options

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 06:27:19

843 Views

Very often we need to pass arguments to Python script when executing from command line. However, the script raises exception when parameters needed are not provided in equal number or type or order. That’s where the need to properly parse the command line argument occurs.The argparse module provides tools for ... Read More

Decimal Number System

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 06:27:01

3K+ Views

Number System represents value of number with respect to its given base. Based on its Base value, a number has unique representation and different number systems have different representation of the same number. For example, Binary, Octal, Decimal and Hexadecimal Number systems are used in microprocessor programming.If the Base value ... Read More

Compression using the LZMA algorithm using Python (lzma)

Chandu yadav

Chandu yadav

Updated on 26-Jun-2020 06:16:10

3K+ Views

The Lempel–Ziv–Markov chain algorithm(LZMA) performs lossless data compression using a dictionary compression scheme featuring a higher compression ratio than other compression algorithms. Python’s lzma module consists of classes and convenience functions for compression and decompression of data with LZMA algorithm.Although the functionality in this module is similar to that of ... Read More

Animate CSS padding-left property

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 14:56:10

340 Views

To implement animation on padding-left property with CSS, you can try to run the following codeExampleLive Demo                    div {             width: 350px;             height: 150px;             outline: 3px solid orange;             animation: myanim 3s infinite;          }          @keyframes myanim {             50% {                padding-left: 20px;             }          }                     CSS padding-left property          

Check if the String contains only unicode letters, digits or space in Java

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 14:47:31

739 Views

To check if a given String contains only unicode letters, digits or space, we use the isLetterOrDigit() and charAt() methods with decision making statements.The isLetterOrDigit(char ch) method determines whether the specific character (Unicode ch) is either a letter or a digit. It returns a boolean value, either true or false.Declaration ... Read More

Perform Animation on CSS min-width

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 14:46:05

175 Views

To implement animation on min-width property with CSS, you can try to run the following codeExampleLive Demo                    div {             overflow: auto;             width: 50%;         ... Read More

Advertisements