answersLogoWhite

0

A: These particular chips have laser cut resistor to insure resistance consistencies as required by designers. In these cases usually the use is for DAC or ADC . However they can be nothing more then pull up or pull down resistors for easier of packaging and layout,

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

ReneRene
Change my mind. I dare you.
Chat with Rene
TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga
BeauBeau
You're doing better than you think!
Chat with Beau

Add your answer:

Earn +20 pts
Q: What is chip resistor array?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the value of a surface mount chip resistor having the coding r270?

27Ω


What is the value of a surface mount chip resistor having the coding 443?

44 kΩ


Differentiate single dimensional array to double dimensional array?

A single dimensional array is an array of items. A two-dimensional array is an array of arrays of items.


Can a ttl chip drive a cmos chip without modification?

A TTL chip can drive a CMOS chip without modification if the CMOS chip is designed to do so. Many large scale CMOS chips, such as microprocessors, have LS (or equivalent) TTL IO pins, so you can drive them directly. In the absence of that, you can use a pull up resistor, but you need to look carefully at fan-in, fan-out, rise time, fall time, and power requirements, in order to assure proper operation. It is best to use chips that are designed for the application, such as TTL to CMOS buffers.


What is meant by irregular dimensional array?

An irregular dimensional array is a special type of multi-dimensional array.First we must understand that a multi-dimensional array is just an array of arrays. Each element in the array is, itself, an array of elements.A regular multi-dimensional array will be an array of size n, with each element containing a separate array of size m. That is, each sub-array has the same size.An irregular multi-dimensional array will be a multi-dimensional array in which each sub-array does not contain the same number of elements.Regular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4, 5}array[2] = new array{6, 7, 8}array[3] = new array{9, 10, 11}This regular array is an array of size 4 in which each sub-array is of size 3.Irregular array:array[0] = new array{0, 1, 2}array[1] = new array{3, 4}array[2] = new array{5, 6, 7}array[3] = new array{8, 9, 10, 11}This irregular array is an array of size 4 in which the size of each sub-array is not the same.