What is a linked list? Explain the 2 fields in a linked list?
Answer / rakesh sharma
In computer science, a linked list is one of the fundamental
data structures, and can be used to implement other data
structures. It consists of a sequence of nodes, each
containing arbitrary data fields and one or two references
("links") pointing to the next and/or previous nodes. The
principal benefit of a linked list over a conventional array
is that the order of the linked items may be different from
the order that the data items are stored in memory or on
disk, allowing the list of items to be traversed in a
different order. A linked list is a self-referential
datatype because it contains a pointer or link to another
datum of the same type. Linked lists permit insertion and
removal of nodes at any point in the list in constant
time,[1] but do not allow random access. Several different
types of linked list exist: singly-linked lists,
doubly-linked lists, and circularly-linked lists.
Linked lists can be implemented in most languages. Languages
such as Lisp and Scheme have the data structure built in,
along with operations to access the linked list. Procedural
or object-oriented languages such as C, [[C++]], and Java
typically rely on mutable references to create linked lists.
| Is This Answer Correct ? | 14 Yes | 0 No |
Mention what are the different gates where Boolean logic are applicable?
Let A & B be two inputs of the NAND gate. Say signal A arrives at the NAND gate later than signal B. To optimize delay, of the two series NMOS inputs A & B, which one would you place near the output?
Draw a transistor level two input NAND gate. Explain its sizing (a) considering Vth (b) for equal rise and fall times
What are the two types of noise of MOSFET, how to eliminate them?(Thermal and Flicker).
Explain sizing of the inverter?
What is a linked list? Explain the 2 fields in a linked list?
What is SPICE?
Explain Cross section of a PMOS transistor?
Explain the Charge Sharing problem while sampling data from a Bus?
Draw Vds-Ids curve for a MOSFET. Now, show how this curve changes considering Channel Length Modulation.
Insights of a 2 input NAND gate. Explain the working?
what is the doping?