SlideShare uma empresa Scribd logo
1 de 20
Computer
Final Review
Fall Semester 2014
By:
• Atit S Gaonkar
14BCE1144
• Siddharth Mohanty
14BME1124
Code
#include<stdio.h>
#include<windows.h>
#include<conio.h>
#include<process.h>
#include<stdlib.h>
#include<ctype.h>
#include<dos.h>
#include<string.h>
#include<time.h>
#include<math.h>
void gotoxy(int x, int y)
{
COORD coord;
coord.X = x;
coord.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),coord);
}
struct AddItem
{
int item_id;
char item_name[50];
float price;
};
struct Bill
{
int bill_id;
char cust_name[50];
char item_name[10][50];
float quant[10];
float total;
float price[10];
char date[15];
int n;
};
FILE *fp,*fp1,*bifp,*bifp1;
struct AddItem ad;
struct Bill bi;
int add_item();
int generate_bill();
int delete_bill();
int display_bill();
int q=0;
main()
{
int i=1;
system("cls");
printf("nnnnnnttt * * * * * * * * * * * * * * * * * * *");
printf("nnnnttt * SHOPPING MALL BILLING SYSTEM *");
printf("nnnnttt * * * * * * * * * * * * * * * * * * *");
printf("nnttt1.Continuennttt2.EXIT");
printf("nntttEnter Your Option : ");
scanf("%d",&i);
if(i==2)
{
system("cls");
printf("nnnnnnnnnntttt THANKS YOU");
printf("nnntttt Exiting In 3 Secs");
for(int f=1;f<4;f++)
{
printf(" .");
Sleep(600);
printf(" .");
Sleep(600);
printf(" .");
Sleep(600);
system("cls");
exit(0);
}
}
else
{
int f=1,choice;
system("cls");
printf("nnPLEASE WAIT");
for(f=1;f<2;f++)
{
Sleep(600); printf(" .");
Sleep(600);
printf(" .");
Sleep(600);
}
XYZ:
system("cls");
printf("ttt ********************************n");
printf("nttt SHOPPING MALL BILLING SYSTEMn");
printf("nttt ********************************");
printf("n-------------------------------------------------------------------------------");
printf("nnt1. ADD PRODUCT");
printf("nnt2. GENERATE A BILL");
printf("nnt3. DISPLAY A BILL");
printf("nnt4. DELETE A BILL");
printf("nnt5. EXIT");
printf("n-------------------------------------------------------------------------------");
printf("nnENTER CORRESPONDING KEYS TO PERFORM
OPERATION :- ");
ABC:
scanf("%d",&choice);
switch(choice)
{
case 1:
q=add_item();
if(q==2)
{
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);
}
else
{
system("cls");
goto XYZ;
}
break;
case 2:
q=generate_bill();
if(q==2)
{
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);
}
else
{
system("cls");
goto XYZ;
}
break;
case 3:
q=display_bill();
if(q==2)
{
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);}
else
{
system("cls");
goto XYZ;
}
break;
case 4:
q=delete_bill();
if(q==2)
{
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);
}
else
{
system("cls");
goto XYZ;
}
case 5:
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);
default:
printf("nntYOU ENTERED A WRONG
VALUE.PLEASE TRY AGAIN : ");
goto ABC;
}
}
getch();
}
int add_item()
{
int f=1,id=0,p[10],i=0,h=0,t=0;
fp=fopen("Products.txt","a");
fclose(fp);
system("cls");
while(f==1)
{
system("cls");
fp=fopen("Products.txt","r");
while((fread(&ad,sizeof(ad),1,fp))==1)
{
id=ad.item_id;
}
fclose(fp);
printf("ntENTER PRODUCT NAME :-t");
scanf("%s",ad.item_name);
printf("ntENTER PRODUCT PRICE :-t");
scanf("%f",&ad.price);
id++;
p[i]=id;
i++;
ad.item_id=id;
fp=fopen("Products.txt","a");
fwrite(&ad,sizeof(ad),1,fp);
fclose(fp);
printf("nnnntYOUR PRODUCT WITH ID %d IS ADDED
SUCCESSFULLY....",ad.item_id);
printf("nnt 1. TO ADD NEW PRODUCT 2. TO EXIT...t");
printf("nntEnter Your Choice : ");
scanf("%d",&f);
if(f!=1)
{
break;
}
}
system("cls");
i=0;
fp=fopen("Products.txt","r");
while((fread(&ad,sizeof(ad),1,fp))==1)
{
if(p[i]==ad.item_id)
{
printf("ntPRODUCT ID :- %d",ad.item_id);
printf("ntPRODUCT NAME :- %s",ad.item_name);
printf("ntPRODUCT PRICE :- %f",ad.price);
printf("nn");
i++;
}
}
fclose(fp);
printf("nnt 1. TO GO TO MENU PAGE nnt2. TO EXIT :-t");
scanf("%d",&q);
return q;
}
int generate_bill()
{
time_t now;
struct tm *d;
int w=0;
int item_id,f=1,i=0,n=0,p=0,bill_id=0,k=1,j=0;
float total=0,quant=0;
bifp=fopen("GBill.txt","a");
fclose(bifp);
while(f==1)
{
int flag=0;
system("cls");
if(j==0)
{
bifp=fopen("GBill.txt","r");
while((fread(&bi,sizeof(bi),1,bifp))==1)
{
bill_id=bi.bill_id;
}
bill_id++;
bi.bill_id=bill_id;
fclose(bifp);
j++;
}
printf("tNOTE :- JUST ENTER PRODUCT ID OF BUYING PRODUCTS
TO CALCULATE BILL");
printf("nntPRODUCT ID :-t");
scanf("%d",&item_id);
fp=fopen("Products.txt","r");
while((fread(&ad,sizeof(ad),1,fp))==1)
{
if(item_id==ad.item_id)
{
printf("nntPRODUCT NAME :- %s",ad.item_name);
strcpy(bi.item_name[i],ad.item_name);
printf("tPRODUCT PRICE :- %f",ad.price);
bi.price[i]=ad.price;
printf("nn");
flag=1;
}
}
if(flag==0)
{
printf("nntYOUR PRODUCT ID IS NOT FOUND.");
}
else
{
printf("nntQUANTITY OF PRODUCT :-t");
scanf("%f",&quant);
bi.quant[i]=quant;
total=total+quant*ad.price;
bi.total=total;
flag=0;
bi.n=i;
n=i;
i++;
}
fclose(fp);
printf("nnnt 1. TO ADD MORE PRODUCT nnnt2. TO GO TO BILL
PAGE : ");
scanf("%d",&f);
}
system("cls");
printf("ntPUT DOWN CUSTOMER INFORMATION .....");
printf("nntCUSTOMER NAME :- ");
scanf("%s",&bi.cust_name);
time(&now);
d=localtime(&now);
strftime(bi.date, 15, "%d/%m/%Y", d);
printf("nnnt 1. TO GENERATE A BILL nnt2. TO GO TO MAIN MENU : ");
scanf("%d",&p);
if(p!=1)
{
return p;
}
else
{
i=0;
bifp=fopen("GBill.txt","a");
fwrite(&bi,sizeof(bi),1,bifp);
fclose(bifp);
system("cls");
printf("nntBILL IS BEING GENERATED");
printf("nntPlesase Wait");
for(p=0;p<3;p++)
{
Sleep(500);
printf(" .");
Sleep(500);
printf(" .");
Sleep(500);
printf(" .");
Sleep(500);
system("cls");
}
printf("nnttt ********************************n");
printf("nttt SHOPPING MALL BILLING SYSTEMn");
printf("nttt ********************************");
printf("n----------------------------------------------------");
gotoxy(2,5);
printf("CUSTOMER NAME : %s",bi.cust_name);
gotoxy(36,5);
printf("BILL ID : %d",bi.bill_id);
gotoxy(62,5);
printf("DATE : %s",bi.date);
printf("n----------------------------------------------------");
gotoxy(4,7);
printf("SrNo.");
gotoxy(12,7);
printf("ITEM NAME");
gotoxy(32,7);
printf("PRICE");
gotoxy(53,7);
printf("QUANTITY");
gotoxy(70,7);
printf("TOTAL");
total=0;
for(i=0;i<=n;i++)
{
Sleep(200);
gotoxy(5,w+9);
printf("%d",i+1);
gotoxy(14,w+9);
printf("%s",bi.item_name[i]);
gotoxy(31,w+9);
printf("%f",bi.price[i]);
gotoxy(53,w+9);
printf("%f",bi.quant[i]);
gotoxy(68,w+9);
printf("%f",bi.price[i]*bi.quant[i]);
total=total+(bi.price[i]*bi.quant[i]);
w=w+2;
}
Sleep(200);
printf("n-----------------------------------------------------");
gotoxy(14,w+9);
printf("TOTAL");
gotoxy(66,w+9);
printf("%f Rs",total);
printf("n-------------------------------------------------------");
Sleep(200);
printf("nnt1. TO GO TO MAIN MENU nnt2. TO EXIT ");
printf("nntEnter Your Choice : ");
scanf("%d",&q);
return q;
}
}
int display_bill()
{
int w=0,p=0;
int item_id,f=0,i=0,bill_id=0;
float total;
system("cls");
printf("nntPLEASE ENTER YOUR BILL-ID :- ");
scanf("%d",&bill_id);
bifp=fopen("GBill.txt","a");
fclose(bifp);
bifp=fopen("GBill.txt","r");
while((fread(&bi,sizeof(bi),1,bifp))==1)
{
if(bill_id==bi.bill_id)
{
f=1;
system("cls");
for(p=0;p<3;p++)
{
printf("nntSEARCHING");
Sleep(500);
printf(" .");
Sleep(500);
printf(" .");
Sleep(500);
printf(" .");
Sleep(500);
system("cls");
}
printf("nnttt ********************************n");
printf("nttt SHOPPING MALL BILLING SYSTEMn");
printf("nttt ********************************");
printf("n-------------------------------------------------------------");
gotoxy(2,5);
printf("CUSTOMER NAME : %s",bi.cust_name);
gotoxy(36,5);
printf("BILL ID : %d",bi.bill_id);
gotoxy(62,5);
printf("DATE : %s",bi.date);
printf("n-----------------------------------------------------------");
gotoxy(4,7);
printf("SrNo.");
gotoxy(12,7);
printf("ITEM NAME");
gotoxy(32,7);
printf("PRICE");
gotoxy(53,7);
printf("QUANTITY");
gotoxy(70,7);
printf("TOTAL");
total=0;
for(i=0;i<=bi.n;i++)
{
Sleep(200);
gotoxy(5,w+9);
printf("%d",i+1);
gotoxy(14,w+9);
printf("%s",bi.item_name[i]);
gotoxy(31,w+9);
printf("%f",bi.price[i]);
gotoxy(53,w+9);
printf("%f",bi.quant[i]);
gotoxy(68,w+9);
printf("%f",bi.price[i]*bi.quant[i]);
total=total+(bi.price[i]*bi.quant[i]);
w=w+2;
}
Sleep(200);
printf("n-------------------------------------------------------------");
gotoxy(14,w+9);
printf("TOTAL");
gotoxy(66,w+9);
printf("%f Rs",total);
printf("n-------------------------------------------------------------");
break;
}
}
if(f==0)
{
printf("nntSORRY, YOUR BILL-ID DOES NOT MATCH");
}
fclose(bifp);
Sleep(200);
printf("nntPRESS 1 TO GO TO MAIN MENU nn2. TO EXIT :- ");
scanf("%d",&q);
return q;
}
int delete_bill()
{
int item_id,f=0,i=0,bill_id=0;
system("cls");
bifp=fopen("GBill.txt","w");
fclose(bifp);
printf("nPLEASE ENTER YOUR BILL-ID :- ");
scanf("%d",&bill_id);
bifp=fopen("GBill.txt","r");
while(fread(&bi,sizeof(bi),1,bifp)==1)
{
if(bi.bill_id==bill_id)
{
f=1;
break;
}
}
fclose(bifp);
if(f==1)
{
bifp=fopen("GBill.txt","r");
bifp1=fopen("GBill_1.txt","w");
while((fread(&bi,sizeof(bi),1,bifp))==1)
{
fwrite(&bi,sizeof(bi),1,bifp1);
}
fclose(bifp);
fclose(bifp1);
bifp=fopen("GBill.txt","w");
bifp1=fopen("GBill_1.txt","r");
while((fread(&bi,sizeof(bi),1,bifp1))==1)
{
if(bi.bill_id!=bill_id)
{
fwrite(&bi,sizeof(bi),1,bifp);
}
}
fclose(bifp1);
fclose(bifp);
printf("nntYOUR BILL HAS BEEN DELETED SUCCESSFULLY.");
}
else
{
printf("nntSORRY, YOUR BILL-ID DOES NOT MATCH.");
}
printf("nntPRESS 1. TO GO TO MAIN MENU nnt2. TO EXIT :- ");
scanf("%d",&q);
return q;
}
Output
C Programming :- An Example
C Programming :- An Example
C Programming :- An Example
C Programming :- An Example
C Programming :- An Example
C Programming :- An Example

Mais conteúdo relacionado

Mais procurados

Os lab file c programs
Os lab file c programsOs lab file c programs
Os lab file c programsKandarp Tiwari
 
Basic Programs of C++
Basic Programs of C++Basic Programs of C++
Basic Programs of C++Bharat Kalia
 
Computer science project work
Computer science project workComputer science project work
Computer science project workrahulchamp2345
 
Sorting programs
Sorting programsSorting programs
Sorting programsVarun Garg
 
Lab manual operating system [cs 502 rgpv] (usefulsearch.org) (useful search)
Lab manual operating system [cs 502 rgpv] (usefulsearch.org)  (useful search)Lab manual operating system [cs 502 rgpv] (usefulsearch.org)  (useful search)
Lab manual operating system [cs 502 rgpv] (usefulsearch.org) (useful search)Make Mannan
 
Programs for Operating System
Programs for Operating SystemPrograms for Operating System
Programs for Operating SystemLPU
 
Travel management
Travel managementTravel management
Travel management1Parimal2
 
design and analysis of algorithm Lab files
design and analysis of algorithm Lab filesdesign and analysis of algorithm Lab files
design and analysis of algorithm Lab filesNitesh Dubey
 
Cn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshanCn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshanriturajj
 
Data Structures Practical File
Data Structures Practical File Data Structures Practical File
Data Structures Practical File Harjinder Singh
 
81818088 isc-class-xii-computer-science-project-java-programs
81818088 isc-class-xii-computer-science-project-java-programs81818088 isc-class-xii-computer-science-project-java-programs
81818088 isc-class-xii-computer-science-project-java-programsAbhishek Jena
 
Data Structures Using C Practical File
Data Structures Using C Practical File Data Structures Using C Practical File
Data Structures Using C Practical File Rahul Chugh
 
Geometric nonlinearity analysis of springs with rigid element displacement co...
Geometric nonlinearity analysis of springs with rigid element displacement co...Geometric nonlinearity analysis of springs with rigid element displacement co...
Geometric nonlinearity analysis of springs with rigid element displacement co...Salar Delavar Qashqai
 

Mais procurados (20)

Os lab file c programs
Os lab file c programsOs lab file c programs
Os lab file c programs
 
Basic Programs of C++
Basic Programs of C++Basic Programs of C++
Basic Programs of C++
 
Implementing string
Implementing stringImplementing string
Implementing string
 
Computer science project work
Computer science project workComputer science project work
Computer science project work
 
Sorting programs
Sorting programsSorting programs
Sorting programs
 
Lab manual operating system [cs 502 rgpv] (usefulsearch.org) (useful search)
Lab manual operating system [cs 502 rgpv] (usefulsearch.org)  (useful search)Lab manual operating system [cs 502 rgpv] (usefulsearch.org)  (useful search)
Lab manual operating system [cs 502 rgpv] (usefulsearch.org) (useful search)
 
Cquestions
Cquestions Cquestions
Cquestions
 
C questions
C questionsC questions
C questions
 
Programs for Operating System
Programs for Operating SystemPrograms for Operating System
Programs for Operating System
 
Os lab 1st mid
Os lab 1st midOs lab 1st mid
Os lab 1st mid
 
Travel management
Travel managementTravel management
Travel management
 
design and analysis of algorithm Lab files
design and analysis of algorithm Lab filesdesign and analysis of algorithm Lab files
design and analysis of algorithm Lab files
 
Cn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshanCn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshan
 
MongoDB
MongoDBMongoDB
MongoDB
 
Data Structures Practical File
Data Structures Practical File Data Structures Practical File
Data Structures Practical File
 
81818088 isc-class-xii-computer-science-project-java-programs
81818088 isc-class-xii-computer-science-project-java-programs81818088 isc-class-xii-computer-science-project-java-programs
81818088 isc-class-xii-computer-science-project-java-programs
 
Data Structures Using C Practical File
Data Structures Using C Practical File Data Structures Using C Practical File
Data Structures Using C Practical File
 
Geometric nonlinearity analysis of springs with rigid element displacement co...
Geometric nonlinearity analysis of springs with rigid element displacement co...Geometric nonlinearity analysis of springs with rigid element displacement co...
Geometric nonlinearity analysis of springs with rigid element displacement co...
 
C programming
C programmingC programming
C programming
 
Arrays
ArraysArrays
Arrays
 

Semelhante a C Programming :- An Example

Computer mai ns project
Computer mai ns projectComputer mai ns project
Computer mai ns projectAayush Mittal
 
Computer mai ns project
Computer mai ns projectComputer mai ns project
Computer mai ns projectAayush Mittal
 
#include stdio.h#include stdlib.h#include string.hstruct.pdf
#include stdio.h#include stdlib.h#include string.hstruct.pdf#include stdio.h#include stdlib.h#include string.hstruct.pdf
#include stdio.h#include stdlib.h#include string.hstruct.pdfanubhavnigam2608
 
深入淺出C語言
深入淺出C語言深入淺出C語言
深入淺出C語言Simen Li
 
C programs Set 2
C programs Set 2C programs Set 2
C programs Set 2Koshy Geoji
 
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101premrings
 
C programming function
C  programming functionC  programming function
C programming functionargusacademy
 
C basics
C basicsC basics
C basicsMSc CST
 
Daapracticals 111105084852-phpapp02
Daapracticals 111105084852-phpapp02Daapracticals 111105084852-phpapp02
Daapracticals 111105084852-phpapp02Er Ritu Aggarwal
 
Cpd lecture im 207
Cpd lecture im 207Cpd lecture im 207
Cpd lecture im 207Syed Tanveer
 
Billing in a supermarket c++
Billing in a supermarket c++Billing in a supermarket c++
Billing in a supermarket c++varun arora
 
Lab. Programs in C
Lab. Programs in CLab. Programs in C
Lab. Programs in CSaket Pathak
 
C Prog - Pointers
C Prog - PointersC Prog - Pointers
C Prog - Pointersvinay arora
 
System Software/Operating Sytems lab report
System Software/Operating Sytems lab reportSystem Software/Operating Sytems lab report
System Software/Operating Sytems lab reportVishnu K N
 
System Software /Operating System Lab Report
System Software /Operating System Lab ReportSystem Software /Operating System Lab Report
System Software /Operating System Lab ReportVishnu K N
 

Semelhante a C Programming :- An Example (20)

Computer mai ns project
Computer mai ns projectComputer mai ns project
Computer mai ns project
 
Computer mai ns project
Computer mai ns projectComputer mai ns project
Computer mai ns project
 
#include stdio.h#include stdlib.h#include string.hstruct.pdf
#include stdio.h#include stdlib.h#include string.hstruct.pdf#include stdio.h#include stdlib.h#include string.hstruct.pdf
#include stdio.h#include stdlib.h#include string.hstruct.pdf
 
深入淺出C語言
深入淺出C語言深入淺出C語言
深入淺出C語言
 
C programs Set 2
C programs Set 2C programs Set 2
C programs Set 2
 
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101
 
9.C Programming
9.C Programming9.C Programming
9.C Programming
 
Cpds lab
Cpds labCpds lab
Cpds lab
 
C programming function
C  programming functionC  programming function
C programming function
 
C basics
C basicsC basics
C basics
 
Daapracticals 111105084852-phpapp02
Daapracticals 111105084852-phpapp02Daapracticals 111105084852-phpapp02
Daapracticals 111105084852-phpapp02
 
Cpd lecture im 207
Cpd lecture im 207Cpd lecture im 207
Cpd lecture im 207
 
Ds program-print
Ds program-printDs program-print
Ds program-print
 
Blocks+gcd入門
Blocks+gcd入門Blocks+gcd入門
Blocks+gcd入門
 
programs
programsprograms
programs
 
Billing in a supermarket c++
Billing in a supermarket c++Billing in a supermarket c++
Billing in a supermarket c++
 
Lab. Programs in C
Lab. Programs in CLab. Programs in C
Lab. Programs in C
 
C Prog - Pointers
C Prog - PointersC Prog - Pointers
C Prog - Pointers
 
System Software/Operating Sytems lab report
System Software/Operating Sytems lab reportSystem Software/Operating Sytems lab report
System Software/Operating Sytems lab report
 
System Software /Operating System Lab Report
System Software /Operating System Lab ReportSystem Software /Operating System Lab Report
System Software /Operating System Lab Report
 

Mais de Atit Gaonkar

Straight Lines ( Especially For XI )
Straight Lines ( Especially For XI ) Straight Lines ( Especially For XI )
Straight Lines ( Especially For XI ) Atit Gaonkar
 
Spiking Neural P System
Spiking Neural P SystemSpiking Neural P System
Spiking Neural P SystemAtit Gaonkar
 
Newtons laws of motion
Newtons laws of motionNewtons laws of motion
Newtons laws of motionAtit Gaonkar
 
Metal Detector : A Working Model
Metal Detector : A Working ModelMetal Detector : A Working Model
Metal Detector : A Working ModelAtit Gaonkar
 
Hydrogen (hydrogen, water)
Hydrogen (hydrogen, water)Hydrogen (hydrogen, water)
Hydrogen (hydrogen, water)Atit Gaonkar
 
Blue bottle (Specially For School Demonstration)
Blue bottle (Specially For School Demonstration)Blue bottle (Specially For School Demonstration)
Blue bottle (Specially For School Demonstration)Atit Gaonkar
 
Transformers (Especially For 12th Std)
Transformers (Especially For 12th Std)Transformers (Especially For 12th Std)
Transformers (Especially For 12th Std)Atit Gaonkar
 

Mais de Atit Gaonkar (9)

Straight Lines ( Especially For XI )
Straight Lines ( Especially For XI ) Straight Lines ( Especially For XI )
Straight Lines ( Especially For XI )
 
Spiking Neural P System
Spiking Neural P SystemSpiking Neural P System
Spiking Neural P System
 
Newtons laws of motion
Newtons laws of motionNewtons laws of motion
Newtons laws of motion
 
Metal Detector : A Working Model
Metal Detector : A Working ModelMetal Detector : A Working Model
Metal Detector : A Working Model
 
Hydrogen (hydrogen, water)
Hydrogen (hydrogen, water)Hydrogen (hydrogen, water)
Hydrogen (hydrogen, water)
 
Blue bottle (Specially For School Demonstration)
Blue bottle (Specially For School Demonstration)Blue bottle (Specially For School Demonstration)
Blue bottle (Specially For School Demonstration)
 
Magnetics
MagneticsMagnetics
Magnetics
 
Beat
BeatBeat
Beat
 
Transformers (Especially For 12th Std)
Transformers (Especially For 12th Std)Transformers (Especially For 12th Std)
Transformers (Especially For 12th Std)
 

Último

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 

Último (20)

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 

C Programming :- An Example