All Basic Articles
Given a string str, containing upper case and lower case characters. In a single operations, any lowercase character can be converted to an uppercase character… Read More
Given string str containing lowercase characters, the task is to find the lexicographically largest sub-sequence of str. Examples:  Input: str = “abc” Output: c All possible sub-sequences… Read More
Two players are playing a series of games of Rock–paper–scissors. There are a total of K games played. Player 1 has a sequence of moves… Read More
Write a function to check whether two given strings are an Anagram of each other or not. An anagram of a string is another string… Read More
The maximum size of any file that can be uploaded on a website written in PHP is determined by the values of max_size that can… Read More
Given an array arr[] of integers, the task is to find the element (other than 1) which is the factor of the maximum number of… Read More
Data types specify the type of data that a valid Go variable can hold. In Go language, the type is divided into four categories which… Read More
Given a string str and an integer k. The task is to count the occurrences of sub-strings of length k that consist of the same… Read More
Antialiasing is a technique used in computer graphics to remove the aliasing effect. The aliasing effect is the appearance of jagged edges or “jaggies” in… Read More
The println(char[]) method of PrintStream Class in Java is used to print the specified character array on the stream and then break the line. This… Read More
The java.util.concurrent.atomic.AtomicInteger.addandget() is an inbuilt method in java which adds the value which is passed in the parameter of the function to the previous value… Read More
Groupby is a pretty simple concept. We can create a grouping of categories and apply a function to the categories. It’s a simple concept but… Read More
Footprinting means gathering information about a target system that can be used to execute a successful cyber attack. To get this information, a hacker might… Read More
SQL is an acronym for Structured Query Language. It is used to access, manipulate and retrieve information from a database. MySQL is an open source… Read More
The transform property in CSS is used to change the coordinate space of the visual formatting model. This is used to add effects like skew,… Read More
The mkdir() function is used to create directory in PHP. It is an inbuilt function in PHP. The mkdir() function creates a new directory with… Read More
Prerequisite: Image Steganography Introduction, Implementation using Python.Steganography is the method of hiding secret data inside any form of digital media. The main idea behind steganography… Read More
This method is used to convert the value of the specified Decimal to the equivalent 32-bit signed integer. A user can also convert a Decimal… Read More
The vertical-align property in CSS is used to specify the vertical alignment of the table-box or inline element.  Syntax: vertical-align: baseline|length|sub|super|top|text-top|middle|bottom |text-bottom|initial|inherit; Note:  This property… Read More
Floats.max() is a method of Floats Class in Guava library which is used to find the greatest value present in an array. The value returned… Read More