wos sprawdzian

Plan Schumana – propozycja połączenia przemysłu węgla i stali państw Europy Zachodniej, żeby zapobiec wojnom i rozpocząć integrację Europy. Plan Marshalla – program pomocy gospodarczej USA dla Europy po II wojnie światowej, mający odbudować gospodarki i wzmocnić stabilność. Przyczyny integracji: 1.Konieczność odbudowy gospodarczej Europy zachodniej2. osłabienie państw europejskich 3. dążenie do nawiązania współpracy gospodarczej i politycznej 4.Potrzeba włączenia niemiec do

...

See on Wikiteka »

ddddd

1. C program to control LED ON/OFF (blinking) interfaced with ARM LPC1768:

#include <LPC17xx.h>

void delay() {
for(int i=0;i<1000000;i++);
}

int main(void) {
LPC_GPIO2->FIODIR |= (1<<0); // Set P2.0 as output
while(1) {
LPC_GPIO2->FIOSET = (1<<0); // LED ON
delay();
LPC_GPIO2->FIOCLR = (1<<0); // LED OFF
delay();
}
}

2. C program to control LED ON/OFF using a switch interfaced with ARM LPC1768:

#include <LPC17xx.h>

int main(
...

See on Student Notes »

scadsdf

Q1 Solid Modeling (Easy Explanation)

Solid modeling is a type of 3D CAD (Computer-Aided Design) used to create digital models of objects that have real mass and volume, not just outer surfaces.You can think of it like working with a solid block of clay or wood. When you cut or make a hole, the software understands that material is being removed and automatically creates the inner surfaces.In simple words, solid modeling helps create accurate and realistic 3D objects that behave like real-world

...

See on Wikiteka »

BDC MOTOR AND TEM UNIT 2

BLDC Motor (Brushless DC Motor):
A BLDC motor is an electric motor that operates without brushes and uses electronic commutation instead of a mechanical commutator; it works on the principle of interaction between a rotating magnetic field and permanent magnets, providing high efficiency, low maintenance, and long life.
Principle of BLDC Motor:
A BLDC motor works on the principle of electromagnetic interaction, where a current-carrying conductor placed in a magnetic field experiences a force; in this

...

See on Wikiteka »

SOCI 303

MODULE 6

Romantic love: Intense attraction; modern ideal focused on individual choice, Sociability: Social interaction for enjoyment (no instrumental goal), Calling: Men visit women’s homes for courtship, Going steady: Exclusive long-term dating, Hookups: Casual, often one-time sexual encounters, Friends with benefits: Sex within a non-romantic friendship

Social Structures: Collectivist vs. Individualistic societies: Collectivist: group needs prioritized: Individualistic: individual needs prioritized

...

See on Student Notes »

FAAAAHHHH

Characteristics and Functionalities of Rootkits
1.Stealth and Persistence
Rootkits hide their presence from users and security software and remain active even after system reboots. 
2.Privilege Escalation
They gain administrator or root-level access, allowing full control over system operations. 
3.Kernel-Level Access
Some rootkits operate at the kernel level, giving deep control over the operating system and making detection difficult. 
4.Backdoor Functionality
They create hidden entry points
...

See on Student Notes »

avltree

class Node{
public:
string key,meaning;Node*lft,*right;int h8;
Node(string k,string m){key=k;meaning=m;lft=right=NULL;h8=1;}
};

class AVL{
Node*root;
int h(Node*n){if(n==NULL)return 0;return n->h8;}
int bal(Node*n){if(n==NULL)return 0;return h(n->lft)-h(n->right);}
int mx(int a,int b){if(a>b)return a;return b;}

Node*rr(Node*y){
Node*x=y->lft;Node*T2=x->right;
x->right=y;y->lft=T2;
y->h8=mx(h(y->lft),h(y->right))+1;
x->h8=mx(h(x->lft),h(x->right))+1;
return x;
}

Node*lr(

...

See on Wikiteka »

SOCI 303

MODULE 6: ROMANTIC LOVE

Individualistic: the needs of the individual outweigh the needs of any collective.  Collectivistic: the needs of the collectivity are perceived as more important than the individual's needs. Among the Igbo, marriage selection in the past was based on a collectivist orientation. Conjugality: a personal relationship between husband and wife, so an increasing emphasis on conjugality means that marriage is increasingly being perceived as about the relationship between husband...

See on Student Notes »

Gmax cabula

Projeto É um conjunto de informação devidamente sistematizado que tem por objetivo apoiar a tomada de decisão relativamente à aceitação ou não de determinado investimento. A afirmação é discutível. Nem todo investimento exige um projeto formal (ex.: aplicações financeiras simples), e nem todo projeto implica necessariamente um investimento imediato (pode ser apenas um estudo ou plano). Contudo, em contexto empresarial, há forte interdependência: o projeto define e justifica

...

See on Wikiteka »