Answer:
An Operating System (OS) is system software that acts as an interface between the user and computer hardware and manages system resources efficiently.
Answer:
A process is a program in execution. It consists of program code, data, stack, and resources allocated by the operating system.
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,
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.
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
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
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
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
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, &...
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