Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles on Trending Technologies
Technical articles with clear explanations and examples
Microbial Enzymes and Their Uses
Microbial enzymes have so many uses in a wide range of industries (including the textile, leather, paper and pulp, research and development, pharmaceutical, agricultural, detergent, waste, and bio-refineries, as well as the photography and food industries), they are crucial to many industrial production processes. Introduction As enzymes are environmentally neutral and don't produce greenhouse gases or energy-intensive waste products, in many industrial production processes chemicals are replaced with enzymes. Microbial sources of enzyme production are the most preferred sources for industrial enzyme production because microbes are easily accessible, they grow at a very fast rate, and they can be genetically ...
Read MoreHow to select values from a JSON object using jQuery?
JSON or JavaScript Object Notation is a lightweight format used for data interchange between web applications and servers. It provides a simple and easy-to-read structure that can be parsed and generated easily by machines. JSON is often used as an alternative to XML because it is more compact and easier to work with. In this article, we see how to select values from a JSON object using jQuery with different approaches. What is a JSON object? A JSON object consists of a collection of key-value pairs separated by colons. Here keys are known as strings and the values are of ...
Read MoreHow to scroll the page up or down using anchor element in jQuery?
jQuery is a popular JavaScript library that simplifies the process of manipulating HTML documents, handling events, and creating animations. In this article, we'll see how to scroll the page up or down using the anchor elements in jQuery. We sometimes encounter large content pages on websites and to go to a specific section, we want to perform the scrolling in the page up or down. To solve this problem, there are several ways to achieve this, but using anchor elements is one of the easiest and most straightforward methods. Apart from this, we’ll see the scrollTop and animate to perform ...
Read MoreFood Technology and Nutrigenomics
Introduction Simply, nutrigenomic defines how the diet acts on genes and changes gene expression which is commonly prominent in cancer like non-communicable diseases. The usage of food science in the selection, preservation, processing, packaging, and distribution, is known as food technology. Early studies in food technology were primarily concerned with food preservation and inventions like food canning, milk powder, freeze drying, etc., Our world has transformed and been tremendously impacted by advancements in food technology. Nutritional genomics is the most recent branch of science that examines the connection between genes, nutrition, and health. The application ...
Read MoreBacterial Antibiotics: An Overview
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 MoreHow to select the last row of a table using jQuery?
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 MoreGolang program to find minimum value in a stack
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 MoreGolang program to find floor and ceil in binary search tree
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 MoreInversion Count using Policy Based Data Structure
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 MoreGolang program to reorder list using recursion
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