To remove indentation from an unordered list item using CSS, we will be understanding various approaches. Indentation is a common feature used to give a visual hierarchy to the list items. In this article, we will be going through five different approaches to remove indentation from an unordered list item using CSS. We are having an unordered list of different programming languages, our task is to remove the indentation from unordered list using CSS. Approaches to Remove Indentation from an Unordered List Item Here is a list of approaches to remove indentation from an unordered list item using CSS which ... Read More
To prevent text in a table cell from wrapping using CSS, it helps in improving readability. In this article we will understand how we can prevent text in a table cell from wrapping using CSS white-space property. We are having a 5*3 table with some data, our task is to prevent text in a table cell from wrapping using CSS. Steps to Prevent Text in a Table Cell from Wrapping We will be follwoing below mentioned steps to prevent text wrapping in table cell: We have created a table using table tag, used thead ... Read More
To zoom/scale an element on hover with CSS, we will be using two different approaches. In this article, we will be understanding these two approaches to explain how to zoom/scale an element on hover with CSS. We are having two examples in each approach where we have a div element and an image, our task is to zoom div and image element on hover with CSS. Approaches to Zoom/Scale an Element on Hover Here is a list of approaches to zoom/scale an element on hover with CSS which we will be discussing in this article with stepwise explaination and complete ... Read More
Software and artificial intelligence are two major concerns of this present technological shift. While both pertain to the making of software systems, they differ in their purpose, methods, and the outcome of the work to be done within them. A person looking to have a professional career in or business application with technology must understand this important difference. What is Artificial Intelligence? Artificial intelligence, commonly called AI, is the sub-branch of Computer Science that deals with developing systems with the capability for tasks usually handled by human intelligence. Tasks include learning from experience and reasoning, understanding of natural language, ... Read More
Businesses like to outsource different processes so that the efficiency of the employees and the companies can be increased. Outsourcing also helps in reducing the cost of hiring and training employees and giving them salaries. The process of outsourcing is available for business and knowledge processes and in this article, we will discuss the difference between BPO and KPO. What is KPO? The full form of KPO is Knowledge Process Outsourcing. It is a type of outsourcing in which different processes are outsourced. Some of them are listed below − Research and development ... Read More
In Java, checking if a string contains special characters can be easily done using regular expressions. We will be using the Pattern and Matcher classes from the java.util.regex package, we can efficiently determine whether a string includes any special characters. In this article, we will demonstrate how to use these classes to perform the check and handle the result accordingly. − Problem Statement For a given string write a Java program to check if it contains any special character or not − Input 1 I Love Tutorialspoint Output 1 Special character not found in the string Input 2 ... Read More
In this article, we will demonstrate how to create a new list of employee names from an existing list of Employee objects using Lambda Expressions. We will utilize Java’s Stream API to efficiently map the employee data and collect it into a new list. Lambda Expressions: Lambda expressions simplify functional programming by working with functional interfaces, which have only one method. A lambda expression provides a way to implement this method easily. Steps Following are the steps to create a new list with values from existing list with Lambda Expressions − Import the necessary classes ... Read More
In this article, we will demonstrate how to calculate the difference in milliseconds between two Instant objects using the ChronoUnit class. It shows how to work with time-based classes in the java.time package, specifically focusing on creating and manipulating time instants and calculating durations between them. ChronoUnit: A standard set of date and time units lets you manipulate dates, times, and date-times. These units, such as years, months, and days, are designed to work across various calendar systems, even though the specific rules might differ slightly. You can also extend these units by implementing the TemporalUnit interface. Problem Statement Calculate the ... Read More
In this program, we find the length of the longest increasing subsequence (LIS) in an integer array using Java programming language. An increasing subsequence is a sequence of numbers where each number is greater than the previous one. The program uses a dynamic programming approach to compute the longest increasing subsequence efficiently. This technique involves building a solution using previously computed results. Problem Statement Write a Java program to get the length of the longest increasing subsequence − Input 10, 22, 9, 33, 21, 50, 41, 60 Output The length of the longest increasing subsequence is 5 Steps get ... Read More
If you want to develop and design APIs that can be used to exchange data over the internet, you can go for GraphQL and Rest. HTTP verbs are used by applications that Rest enables to exchange data with the server. GraphQL is used to define the ways in which client applications have to request data from a remote server. In this article, we will discuss the difference between GraphQL and rest. What is GraphQL? GraphQL is an open-source query language which uses APIs to make changes in the data. It uses a server-side runtime engine for the manipulation of the ... Read More
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP