Bacterial Antibiotics: An Overview

Esther Susan
Updated on 10-May-2023 12:52:34

328 Views

Certainly, you must have used an antibiotic medication at least once during your life. One of the most widely used and significant classes of medications.Antibiotics are used to treat everything from severe ear infections or strep throat in children to burning UTIs or itching skin infections in adults. Some antibiotics are naturally produced by bacteria. Introduction In 1941, Selman Waksman coined the term "antibiotic" to refer to any little chemical produced by a bacterium that inhibits the growth of other microorganisms. The discovery of penicillin, which is made by a fungus, along with streptomycin, chloramphenicol, and tetracycline, which are made ... Read More

Rotate Shape Loader Animation Using CSS

Tarun Singh
Updated on 10-May-2023 12:52:12

3K+ Views

In this article, we’ll see how to rotate shape loader animation using CSS. Loading animations of different shapes is an essential part of a web app as it helps the users stay engaged while they wait for a website to load. There are multiple animations that one can add to a web page or application, one popular type of loading animation is the rotating shape loader. This animation has good features in which a shape is spinning continuously until the web page is fully loaded. Moving ahead, we are going to use a different approach to rotate the shape loader ... Read More

Select the Last Row of a Table Using jQuery

Tarun Singh
Updated on 10-May-2023 12:48:30

3K+ Views

jQuery is a widely used tool in JavaScript that simplifies the process of manipulating HTML documents and doing other tasks related to website development. In this article, we will see how to select the last row of a table using jQuery. Along with this, we’ll know different approaches to performing this task. Why Selecting the Last Row of a Table is Important? Let's see why we need to select the last of a table and why it becomes an important task. So basically when developers need to change or modify their new data into the existing table dynamically, it ensures ... Read More

Find Minimum Value in a Stack using Golang

Akhil Sharma
Updated on 10-May-2023 12:46:25

320 Views

In Golang, we can find minimum value in a stack by using iterative method and optimized iterative method. A stack is a linear data structure that follows the Last-In-First-Out (LIFO) principle. Syntax func (s *Stack) getMin() int {…} The getMin() function is used to find the minimum value in a stack. It takes a address pointer to the stack as its argument. Algorithm Step 1 − First, we need to import the fmtpackage. Step 2 − Create a stack structure with an item slice to store the stack elements and a min slice to store the minimum ... Read More

Find Floor and Ceil in Binary Search Tree in Go

Akhil Sharma
Updated on 10-May-2023 12:44:21

254 Views

A binary search tree (BST) is a type of binary tree where every node has at most two children, commonly referred to as the left child and the right child. In this Golang article, we will learn how to find floor and ceil in binary search tree using recursion and iterative method. The binary search tree is a useful data structure for efficient searching, insertion, and deletion of elements. Syntax func ceil(root *Node, val int) int {…} The ceil() function is used to find the ceil value in the binary search tree. func floor(root *Node, val int) int {…} ... Read More

Inversion Count Using Policy Based Data Structure

Tapas Kumar Ghosh
Updated on 10-May-2023 12:43:42

210 Views

We will use the g++ header file to compile the code in C++ compiler. g++ is a Linux based header file that is used in C++ to compile the code of policy based data structure. The policy based data structure are such structures used for high performance and flexibility of the code. As these data structures are so resourceful that we can use them for many functions like searching the index of an element, inserting the element into the index position, removing the element from the range of index, etc. Example Let’s take an example of inversion count − Suppose ... Read More

Reorder List Using Recursion in Golang

Akhil Sharma
Updated on 10-May-2023 12:43:12

221 Views

A linked list is a data structure consisting of a collection of nodes, where each node contains a value and a pointer to the next node in the list. In this Golang article, we will learn how to reorder list using recursion along with some helper functions. Syntax func reorderList(head *Node) {…} The reorderList() function is used to reorder list using recursion. It takes pointer to the head node as its argument. Algorithm Step 1 − First, we need to import the fmt package. Step 2 − Now, create a struct of a single node of the ... Read More

Find Diameter of a Tree in Go

Akhil Sharma
Updated on 10-May-2023 12:41:07

329 Views

In this Golang article, we are going to find the diameter of a tree by using recursion and iterative method. The diameter of a tree is the number of nodes on the longest path between any two leaves in the tree. Syntax func diameter(root *node) int{…} The diameter() function is used to find the diameter of a tree. It takes pointer to the root node as its argument. Algorithm Step 1 − First, we need to import the fmt package. Step 2 − Now, create a struct of a single node of the tree named, node. It contains ... Read More

Delete Duplicate Value Nodes from a Sorted Linked List in Go

Akhil Sharma
Updated on 10-May-2023 12:39:48

401 Views

In this Golang article, we are going to delete duplicate value nodes from a sorted linked list by using recursion and iterative method. A linked list is a data structure consisting of a collection of nodes, where each node contains a value and a pointer to the next node in the list. Syntax func deleteDuplicates(head *Node) *Node{…} The deleteDuplicates() function is used to delete duplicate value nodes from a sorted linked list. It takes pointer to the head node as its argument. Algorithm Step 1 − First, we need to import the fmt package. Step 2 − Now, ... Read More

Difference Between Resistance and Reactance

Manish Kumar Saini
Updated on 10-May-2023 12:39:31

2K+ Views

Resistance and reactance are the two major parameters of an electric circuit element that together form the impedance of the circuit element. One most significant difference between resistance and reactance is that the resistance is the opposition in the flow of electric current offered by a circuit element called resistor, whereas the reactance is the opposition in the change in the magnitude and direction of the current and voltage offered by a circuit element called inductor or capacitor. The combined opposition offered by the resistance and reactance in an electric circuit is known as impedance of the circuit. In this ... Read More

Advertisements