DMT ref sheet

NoSQL databases are broadly categorized into different types, with document-based and column-based models being among the most widely used. Document-based databases, such as MongoDB, store data in flexible, self-describing documents—typically in JSON or BSON format—allowing complex, nested structures and varying fields for different records within the same collection. This flexibility supports agile development and easy mapping to application objects, making it ideal for applications with evolving

...

See on Student Notes »

Formelsammlung VT2

1. Schäumen & Emulgieren (VT‑V‑01)

Sedimentationsgeschwindigkeit (Stokes-Gleichung)

vc=118ΔρgxB2ηcontvc=181ηcont

   
   
   

ΔρgxB2

Bedeutung: Geschwindigkeit, mit der Partikel/Blasen sedimentieren oder aufrahmen
Einheit: m/s
Parameter:

  • ΔρΔρ = Dichtedifferenz (kg/m³)
  • gg = Erdbeschleunigung (9.81 m/s²)
  • xBxB = Durchmesser kugelförmiges Teilchen (m)
  • ηcontηcont = dynamische Viskosität der kontinuierlichen Phase (Pa·s)
...

See on Wikiteka »

Vector

Unit-1 

Concept of Information Society, Knowledge Society:

Information Society:-

An information society is a society where the creation, distribution, use, integration and manipulation of information is a significant economic, political, and cultural activity. Its main drivers are digital information and communication technologies, which have resulted in an information explosion and are profoundly changing all aspects of social organization, including the economy, education, health, warfare, government

...

See on Wikiteka »

ST226

ST226 WRITTEN ANSWER CHEAT SHEET (PLAIN TEXT)

NPV represents the present value of all future net cash flows minus the initial cost. A positive NPV indicates value creation at the chosen discount rate. A negative NPV indicates value destruction.

Discounting is required because money received in the future is worth less than money now. Discounting converts future amounts into their equivalent today. The discount rate reflects the required return or opportunity cost. A higher rate reduces the weight...

See on Student Notes »

Xheat4

१ (क) सिपमूलक शिक्षाको महत्त्व
शिक्षा मानव विकासको आधार हो। तर केवल सैद्धान्तिक ज्ञानले मात्र जीवनमा सफलता हासिल गर्न सकिँदैन। व्यावहारिक सीप र काम गर्न सक्ने क्षमता आजको प्रतिस्पर्धी युगको...

See on Wikiteka »

econ

----------------------------------------------------

CHAPTER 1 — Ten Principles of Economics

----------------------------------------------------

How People Make Decisions

1. People Face Trade-offs

Scarcity forces choices.
Examples:

  • Efficiency vs. equality

  • Work vs. leisure

  • Clean environment vs. economic output


2. The Cost of Something Is What You Give Up to Get It

Opportunity cost = next-best alternative
Examples:

  • College = tuition + books + foregone wages

  • Watching a movie = ticket

...

See on Student Notes »

stack

class Stack {
 private int top; // represents the index position of the top most element in the stack
 private int maxSize; // represents the maximum number of elements that can be stored in the stack
 private int[] arr;

 Stack(int maxSize) {
  this.top = -1; // top is -1 when the stack is created
  this.maxSize = maxSize;
  arr = new int[maxSize];
 }

 // Checking if the stack is full or not
 public boolean isFull() {
  if (top >= (maxSize - 1)) {
   return true;
  }
  return false;
 }

 /...

See on Student Notes »

queue

class Queue {

 private int front; // front represents the index position of the first element in the queue
 private int rear; // rear represents the index position of the last element in the queue
 private int maxSize; // maxSize represent the maximum number of elements that can be stored in the queue
 private String arr[];

 Queue(int maxSize) {
  this.front = 0; // front is 0 when the queue is created
  this.rear = -1; // rear is -1 when the queue is created
  this.maxSize = maxSize;
  this.arr...

See on Student Notes »

abc231123123

a) Write short notes on RAM, ROM, EPROM & EEPROM (7 Marks)

1. RAM (Random Access Memory):

Definition: RAM is a type of volatile memory that stores data and instructions currently in use by the processor. It allows the CPU to access data in any order, hence the term Random Access.

Characteristics:

Volatile: Data is lost when power is turned off.

Fast: It provides quick data access and is essential for efficient processing.

Read/Write: Supports both reading and writing of data.

Types:

DRAM (Dynamic

...

See on Student Notes »