answersLogoWhite

0


Best Answer

A node (knot) is a point along a standing wave where the wave has minimal amplitude.

The opposite of a node is an anti-node, a point where the amplitude of the standing wave is a maximum.

These occur midway between the nodes.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the distance between a anti node and adjacent node?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is inserting a node?

A number of data structures are made up of nodes joined together by pointers. Some examples are:Linked listsBinary treesGeneralised treesGraphsEach structure has its own algorithms for inserting nodes, but the general process is of allocating the node dynamically with malloc, and then setting its pointers to the address of adjacent nodes, and often those adjacent nodes' pointers to the address of the new node.


Program for inserting a new node in between two list in c?

To insert a new node between two lists, append the new node to the first list, then insert the head node of the second list after the new node.


What is the difference between nodes and inter node?

The node is the part of the stem of the plant from which leaves, branches, and aerial roots emerge. There are many nodes on a plant stem. The distance between each node is called the inter node.


Write an iterative function to search an element in a binary search tree?

_node* search (_node* head, _key key) { _node* node; for (node=head; node != NULL;;) { if (key == node->key) return node; else if (key < node.>key) node = node->left; else node = node->right; } return node; }


Algoritm for deleting the last element from a list?

Given a list and a node to delete, use the following algorithm: // Are we deleting the head node? if (node == list.head) { // Yes -- assign its next node as the new head list.head = node.next } else // The node is not the head node { // Point to the head node prev = list.head // Traverse the list to locate the node that comes immediately before the one we want to delete while (prev.next != node) { prev = prev.next; } end while // Assign the node's next node to the previous node's next node prev.next = node.next; } end if // Before deleting the node, reset its next node node.next = null; // Now delete the node. delete node;

Related questions

What are nodes and internodes?

The node is the part of the stem of the plant from which leaves, branches, and aerial roots emerge. There are many nodes on a plant stem. The distance between each node is called the inter node.


What is node and antinode?

Node is the point on the vibrating string with zero amplitude and antinode is the point where amplitude is the maximum. The distance between successive node will be half of the wavelength.


What is the different between a node and internode?

THE POINT FROM WHERE THE LEAF ARISES IS KNOWN AS NODE. THE DISTANCE between 2 consequitive nodes is known as internode.. from a node leaf arises but from the internode no leaf arises internode is a part of stem as node is not but is a part of leaf


What is inserting a node?

A number of data structures are made up of nodes joined together by pointers. Some examples are:Linked listsBinary treesGeneralised treesGraphsEach structure has its own algorithms for inserting nodes, but the general process is of allocating the node dynamically with malloc, and then setting its pointers to the address of adjacent nodes, and often those adjacent nodes' pointers to the address of the new node.


Program for inserting a new node in between two list in c?

To insert a new node between two lists, append the new node to the first list, then insert the head node of the second list after the new node.


A uninodal standing wave has how many nodes?

In a uninodal (single-node standing wave) wave, there is one node and two anti-nodes.


What is the relationship between parent and child node?

that depends on what node means?


What is the difference between nodes and inter node?

The node is the part of the stem of the plant from which leaves, branches, and aerial roots emerge. There are many nodes on a plant stem. The distance between each node is called the inter node.


What is the relationship between a sub network and a node?

Whats is the relationship between a sub network a node?


What is the difference between hop and node?

node is endpoint network connection device or interface between system and network. hop is a computer system


What is the maximum speed called that transmits data between two nodes on network node?

node speed


Difference between height of a tree and depth of a tree and level of a tree?

Level and height are same, but the depth is the is the maximum distance from any node to root. It is reverse in the case of height.