23 dictad gobierno civil cn poder milit. inicialm apoyo pero llegada gran depre colapso econom=crisis polit=deja cargo 30 elecc 31=gana partido republ social rey alfonso xiii falta apoyo popul=abdica y se exilia en ita=2repub(31-36)
1.bienio reform=gobierna azana cn sx Costitucion de 31 cn voto x mujeres,matrim civil,divorcio,estado laico,ref agraria 2. bienio negro=gobierno partid republ radical cn dx=reprimen movim obreros y surge partido fascista de la Falange q fomenta vioencia. Huelga
# ✅ Q1 (a) Write and explain the common types of display devices. (3 Marks) Display devices are used to display graphical output generated by computer. ## 1) CRT (Cathode Ray Tube) * Uses electron beam to strike phosphor screen. * Beam scans line by line to produce image. * Used in old monitors and TVs. * Advantages: Good color quality. * Disadvantages: Heavy, bulky, high power consumption. ### 2) LCD (Liquid Crystal Display) * Uses liquid crystals to control light. * Requires backlight. * Thin,...
number.clear(); type.clear(); floor.clear(); rate.clear(); | Widget build(BuildContext context) {
setState(() {message = "Room Added";});} | return Scaffold(
@override | appBar: AppBar(title: Text("Room List")),
Widget build(BuildContext context) { ...
import 'package:flutter/material.dart';
void main() {runApp(MyApp());}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp( home: CartScreen());} }
class Item { String name; int qty; double price;
Item(this.name, this.qty, this.price);}
List<Item> cartList = [];
/* -------- CART -------- */
class CartScreen extends StatefulWidget {
@override
State<CartScreen> createState() =>_CartScreenState();}
class _CartScreenState extends
import 'package:flutter/material.dart';
void main() {runApp(MyApp());}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp( home: EmployeeEntryScreen());} }
class Employee { String name, id, designation; double basicSalary;
Employee(this.name, this.id, this.designation, this.basicSalary);}
List<Employee> employeeList = [];
/* -------- SCREEN 1 -------- */
class EmployeeEntryScreen extends StatefulWidget {
@override
State<EmployeeEntryScreen&
1. What is Management? Explain the nature of management and discuss management as an Art and Science. Management is the process of planning, organising, staffing, directing and controlling human and physical resources to achieve organisational goals effectively and efficiently. It ensures optimum use of resources to achieve desired objectives.
Nature of Management The nature of management can be explained as follows: Goal-oriented: Management focuses on achieving predetermined objectives. Continuous
Allusion: An indirect reference to a person, place,
2. Archaic Language: Words or phrases that were once in common use
3. Archetypes: Character types from different cultures
4. Audience: intended to read a piece of writing.
5. Creation Myth: A myth that typically describes how the universe, began
6. Emotional Appeals: Messages persuade by creating feelings.
7. Extended Metaphor: A comparison between two essentially unlike things
8. Figurative Language: Language that communicates ideas
9. Folk Literature:
When reading a scenario, ask yourself: Why are we touching the machine right now?
1. We are touching it BEFORE it breaks (Maintenance Préventive)
Systématique (Systematic/Periodic): The trigger is a strict number (Time, Kilometers, Operating Hours, Cycles). You don't care if the part still looks good; the schedule says change it.
Keywords to look for: "tous les X km" , "toutes les semaines" , "tous les mois" , "à 100 000 km" , "début
Program 7
n = int(input("Enter number"))
if n <= 1:
print("Neither prime nor composite")
else:
for i in range(2, n):
if n % i == 0:
print("Not prime but a composite no")
break
else:
print("Is a prime no and not a composite")
Program 8
def rect(l,b):
print("Area of rectangle:", l*b)
def square(s):
print("Area of square:", s*s)
def triangle(b,h):
print("Area of triangle:", 0.5*b*h)
while True: