hhhhh

Q1. Define Operating System.

Answer:
An Operating System (OS) is system software that acts as an interface between the user and computer hardware and manages system resources efficiently.

Q2. What is a Process?

Answer:
A process is a program in execution. It consists of program code, data, stack, and resources allocated by the operating system.

Q3. Define PCB.

Answer:
PCB (Process Control Block) is a data structure used by the OS to store information about a process such as process ID, state, registers,

...

See on Student Notes »

exams

What happened? Ella se cayó de la bicicleta y se lastimó la pierna.

What was the injury? La pierna estaba rota.


 What is the treatment? La doctora la examinó, le recetó pastillas, le puso un yeso y ella usó una silla de ruedas antes de usar muletas.


What happened?  Él tuvo un accidente mientras jugaba al fútbol.


What was the injury?  Él se lastimó la espalda y el hombro.

What is the treatment?  Los paramédicos llegaron en una ambulancia y lo llevaron a la sala de emergencia.


...

See on Student Notes »

deep learning

Q1. Explain CNN with neat diagram. What are the applications of CNN?

Convolutional Neural Network (CNN)

CNN is a deep learning model mainly used for processing image data. It automatically extracts features such as edges, textures, and shapes from images.

Diagram

Input Image
     |
Convolution Layer
     |
Activation (ReLU)
     |
Pooling Layer
     |
Convolution + Pooling
     |
Fully Connected Layer
     |
Output Layer

Working of CNN

  1. Input Layer receives the image.
  2. Convolution Layer
...

See on Student Notes »

Bcog171

8 Explain Isoquants and Iso-Cost Curves. How is Producer's Equilibrium Determined? (20 Marks)
Introduction
In modern production theory, producers aim to achieve maximum output at the minimum possible cost. To explain how firms combine different factors of production efficiently, economists use the concepts of Isoquants and Iso-Cost Curves. These concepts help determine the optimum combination of inputs such as labour and capital and explain how a producer reaches equilibrium.
Isoquants
An Isoquant is

...

See on Wikiteka »

ippii

A presente reflexão crítica, elaborada no decurso do meu primeiro ano do Mestrado em Ensino, reporta-se à experiência de observação e intervenção pedagógica numa turma do 5.º ano de escolaridade. O contacto direto com a realidade escolar permitiu-me constatar, numa fase inicial de diagnóstico, a acentuada heterogeneidade do grupo, particularmente no que concerne à postura dos alunos com maiores dificuldades e necessidades educativas. Notoriamente, este subgrupo manifestou um menor investimento

...

See on Wikiteka »

Med chem

ANTI-ARRHYTHMIC DRUGS It is the improper beating of the heart, whether irregular, too fast, or too slow.

Normal range of heart beat: 60--100 bpm (normally about 72 bpm).

It occurs when electric impulses in the heart do not work properly.

Also occurs due to other heart diseases such as myocardial ischemic disease, etc.

Causes of Arrhythmia

Bradycardia (Reduced Automaticity)

↑ Parasympathetic system Sleeping Disease (Heart disease) Other drugs such as Beta blockers, antiarrhythmic drugs, etc. Conduction

...

See on Student Notes »

dfhgrdsggdfgdsr

Zachodnia granica

  • 27 XII 1918 – 16 II 1919 – Powstanie Wielkopolskie
  • 28 VI 1919 – Traktat Wersalski
  • 20 III 1921 – plebiscyt na Górnym Śląsku
  • 1921 – III Powstanie Śląskie

Północna granica

  • 28 VI 1919 – Traktat Wersalski przyznał Polsce dostęp do morza.
  • 11 VII 1920 – plebiscyty na Warmii, Mazurach i Powiślu.

Wschodnia granica

  • 1919–1921 – Wojna polsko-bolszewicka
  • 13–25 VIII 1920 – Bitwa Warszawska
  • 18 III 1921 – Pokój Ryski (ustalenie granicy wschodniej)
  • 1919–1921
...

See on Wikiteka »

Cp lab

1. Simple Program (Hello World)

#include <stdio.h>

int main() {

    printf("Hello World");

    return 0;

}

2. Celsius to Fahrenheit

#include <stdio.h>

int main() {

    float c, f;

    printf("Enter C: ");

    scanf("%f", &c);

    f = (1.8 * c) + 32;

    printf("F = %f", f);

    return 0;

}

3. Largest of Three Numbers (Nested if-else)

#include <stdio.h>

int main() {

    int a, b, c;

    printf("Enter 3 numbers: ");

    scanf("%d%d%d", &a, &...

See on Student Notes »

Software testing 2

CATEGORIES OF SYSTEM TESTING:- System Testing is a level of software testing in which the complete integrated system is tested as a whole. It checks whether the software works correctly according to user requirements. System Testing includes different categories that test various features of the software such as performance, security, reliability, and recovery. These categories help in improving the quality and efficiency of the software system.
Categories of System Testing:- 1. Reliability Testing

...

See on Student Notes »