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 »

Mondeling examen casus

Hey Doha, hoe gaat het met je?

Ja ik heb gemerkt dat je de laatste tijd moe bent op werk, wat stiller bent, deadlines niet op tijd inlevert, te laat naar het werk komt. wil je er even over praten?

Huilen: Ik wilde even met je praten, ik merk,.. hoe gaat het eigenlijk?

Stilte: Ik heb het gevoel dat er iets speelt, ik merk ook dat je wat stiller bent de laatste tijd

weerstand: ik merk dat dit je raakt, ik wil je niet aanvallen, ik wil gewoon begrijpen wat er speelt.

Ventileren: Neem je tijd, Ik luister.

...

See on Wikiteka »

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 »

tgetrg

**ambiguous** - unclear, having multiple meanings

*His answer was ambiguous, so nobody knew what he really meant.*

**corruption** - dishonest or fraudulent conduct

*The politician was arrested for corruption and bribery.*

**decadence** - moral or cultural decline/decay

*The empire's decadence eventually led to its downfall.*

**hypocrisy** - pretending to have beliefs one doesn't actually hold

*His hypocrisy was obvious when he criticized others for lying.*

**superficial** - shallow, lacking depth...

See on Student Notes »

Linux 3-4 unit

1. Starting Processes in Linux

Processes can be started in two ways: (a) Foreground Process:- When a program runs normally on the terminal and occupies the shell until it finishes. The user cannot run another command until this process completes.

Example:- $ ls    $ firefox

To start a process in foreground:- command_name

(b) Background Process

It runs behind the terminal, allowing the user to continue working.

A background process ends with &.

Example:- $ firefox &     $ gedit &

...

See on Student Notes »