EasyRememberNode.jsMultiple Choice
What are the 4 types of Node.js streams?
Remember — Tests recall of fundamental facts and definitions.
Answer Options
AInput, Output, BiDirectional, Transform
BReadable, Writable, Duplex, Transform
CRead, Write, Pipe, Buffer
DSource, Sink, Bridge, Converter
Want to see the correct answer?
Get the answer with a detailed explanation, plus practice 31+ more Node.js questions with adaptive quizzes and timed interviews.
See the Answer on Guru Sishya →This question is from the Node.js topic (Backend).
More Node.js Questions
What are the 6 phases of the Node.js event loop in order?
Medium-EasyWhat is the execution order? ```javascript setTimeout(() => console.log('A'), 0); setImmediate(() => console.log('B')); process.nextTick(() => console.log('C')); Promise.resolve().then(() => console.log('D')); ```
Medium-HardWhat is backpressure in Node.js streams?
MediumWhat is the difference between process.nextTick and setImmediate?
MediumWhat is the difference between cluster and worker_threads?
Medium