SlideShare une entreprise Scribd logo
1  sur  27
Télécharger pour lire hors ligne
C++ Programming Assessment
A WORK REPORT SUBMITTED
IN PARTIAL FULLFILLMENT OF THE REQUIREMENT FOR THE DEGREE
Bachelor of Computer Application
Dezyne E’cole College
106/10, CIVIL LINES
AJMER
RAJASTHAN - 305001 (INDIA)
(AUGUST, 2015)
www.dezyneecole.com
SUBMITTED BY
Yash Agarwal
CLASS: BCA 2nd YEAR
PROJECT ABSTRACT
I am Yash Agarwal Student of 2nd year doing my Bachelor Degree in Computer Application.
In the following pages I gave compiled my work learnt during my 2nd year at college. The subject
is C++ Programming Language. We are taking an example of Restaurant, There are menu lists is
displayed by the restaurant manager. Whenever the customer will go there restaurant he/she
can choose one or more recipes’ / items from the menu lists is restaurant.
The Following code represent is based on menu driven programming concept that are based on
concept of menus that are perform and executed at run time. This code represent as a converter
to convert the number into the respective following bases. Menu driven programming concept
that represent the list at run time and asked for the respective following input from the menu list
by the user at run time and after it will take
input and process to convert into the respective number conversion bases and generate the
desired output to the user.
Here in the following assessment we are performing the following operations:
1. To Addition Data.
2. To Show data.
3. To Deletion.
4. To Modification.
5. To Search Data.
6. To Exit.
The above conversion represent the menu list that are based on Menu Driven C++ Programming
Concept.
void front()
{
struct date d;
getdate(&d);
gotoxy(64,1);
printf("%d/%d/%d",d.da_day,d.da_mon,d.da_year);
textcolor(15);
gotoxy(25,15);
cprintf("%c",200);
gotoxy(25,7);
cprintf("%c",201);
gotoxy(55,7);
cprintf("%c",187);
gotoxy(55,15);
cprintf("%c",188);
textcolor(0);
for(i=26;i<=54;i++)
{
gotoxy(i,7);
cout<<char(205);
gotoxy(i,15);
cout<<char(205);
}
for(i=8;i<=14;i++)
{
gotoxy(25,i);
cout<<char(186);
gotoxy(55,i);
cout<<char(186);
}
gotoxy(34,8);
cprintf("1. - ADD");
gotoxy(34,9);
cprintf("2. - SHOW");
gotoxy(34,10);
cprintf("3. - DELETE");
gotoxy(34,11);
cprintf("4. - MODIFY");
gotoxy(34,12);
cprintf("5. - SEARCH");
gotoxy(34,13);
cprintf("6. - EXIT");
intro();
}
void add()
{
clrscr();
heading();
front1();
li=fopen("limit.txt","r");
{
fscanf(li,"%d",&l);
}
fclose(li);
if(l<0 || l>100)
{
l=0;
li=fopen("limit.txt","w");
{
fprintf(li,"%d",l);
}
fclose(li);
}
f=fopen("sms.txt","a");
gotoxy(2,5);
fscanf(stdin,"%d",&id);
fprintf(f,"%dt",id);
gotoxy(13,5);
fscanf(stdin,"%s",name);
fprintf(f,"%st",name);
gotoxy(28,5);
fscanf(stdin,"%s",clas);
fprintf(f,"%st",clas);
gotoxy(42,5);
fscanf(stdin,"%s",dob);
fprintf(f,"%st",dob);
gotoxy(56,5);
fscanf(stdin,"%s",city);
fprintf(f,"%st",city);
gotoxy(68,5);
fscanf(stdin,"%s",phn);
fprintf(f,"%sn",phn);
l++;
gotoxy(25,10);
cout<<"YOUR ADDITION IS SUCCESS";
getch();
li=fopen("limit.txt","w");
{
fprintf(li,"%d",l);
}
fclose(li);
fclose(f);
}
void show()
{
clrscr();
f=fopen("sms.txt","a");
fclose(f);
li=fopen("limit.txt","r");
{
fscanf(li,"%d",&l);
}
fclose(li);
if(l<0 || l>100)
{
l=0;
li=fopen("limit.txt","w");
{
fprintf(li,"%d",l);
}
fclose(li);
f=fopen("sms.txt","w");
fclose(f);
}
f=fopen("sms.txt","r");
heading();
front1();
for(i=0,j=5;i<l;i++,j++)
{
gotoxy(2,j);
fscanf(f,"%dt",&id);
fprintf(stdout,"%d",id);
gotoxy(13,j);
fscanf(f,"%st",name);
fprintf(stdout,"%s",name);
gotoxy(28,j);
fscanf(f,"%st",clas);
fprintf(stdout,"%s",clas);
gotoxy(42,j);
fscanf(f,"%st",dob);
fprintf(stdout,"%s",dob);
gotoxy(56,j);
fscanf(f,"%st",city);
fprintf(stdout,"%s",city);
gotoxy(68,j);
fscanf(f,"%sn",phn);
fprintf(stdout,"%s",phn);
}
fclose(f);
}
void modify()
{
clrscr();
int n;
char na[40];
li=fopen("limit.txt","r");
{
fscanf(li,"%d",&l);
}
fclose(li);
end=l;
heading();
front1();
fp=fopen("temp.txt","w");
f=fopen("sms.txt","r");
gotoxy(32,9);
cout<<"Enter id= ";
cin>>n;
gotoxy(32,11);
cout<<"Enter name= ";
cin>>na;
clrscr();
heading();
front1();
for(i=0;i<end;i++)
{
fscanf(f,"%dt",&id);
fscanf(f,"%st",name);
fscanf(f,"%st",clas);
fscanf(f,"%st",dob);
fscanf(f,"%st",city);
fscanf(f,"%sn",phn);
if(n==id && strcmp(na,name)==0)
{
gotoxy(2,5);
fscanf(stdin,"%d",&id);
fprintf(fp,"%dt",id);
gotoxy(13,5);
fscanf(stdin,"%s",name);
fprintf(fp,"%st",name);
gotoxy(28,5);
fscanf(stdin,"%s",clas);
fprintf(fp,"%st",clas);
gotoxy(42,5);
fscanf(stdin,"%s",dob);
fprintf(fp,"%st",dob);
gotoxy(56,5);
fscanf(stdin,"%s",city);
fprintf(fp,"%st",city);
gotoxy(68,5);
fscanf(stdin,"%s",phn);
fprintf(fp,"%sn",phn);
gotoxy(25,10);
cout<<"YOUR MODIFICATION IS SUCCESS";
}
else
{
fprintf(fp,"%dt",id);
fprintf(fp,"%st",name);
fprintf(fp,"%st",clas);
fprintf(fp,"%st",dob);
fprintf(fp,"%st",city);
fprintf(fp,"%sn",phn);
}
}
fclose(f);
fclose(fp);
remove("sms.txt");
rename("temp.txt","sms.txt");
}
void del()
{
int n;
char na[40];
clrscr();
li=fopen("limit.txt","r");
{
fscanf(li,"%d",&l);
}
fclose(li);
end=l;
heading();
front1();
fp=fopen("temp.txt","w");
f=fopen("sms.txt","r");
gotoxy(32,9);
cout<<"Enter id= ";
cin>>n;
gotoxy(32,11);
cout<<"Enter name= ";
cin>>na;
clrscr();
front1();
heading();
for(i=0;i<end;i++)
{
fscanf(f,"%dt",&id);
fscanf(f,"%st",name);
fscanf(f,"%st",clas);
fscanf(f,"%st",dob);
fscanf(f,"%st",city);
fscanf(f,"%sn",phn);
if(n==id && strcmp(na,name)==0)
{
l=l-1;
li=fopen("limit.txt","w");
{
fprintf(li,"%d",l);
}
fclose(li);
gotoxy(25,14);
cout<<"YOUR DELETION IS SUCCESS";
}
else
{
fprintf(fp,"%dt",id);
fprintf(fp,"%st",name);
fprintf(fp,"%st",clas);
fprintf(fp,"%st",dob);
fprintf(fp,"%st",city);
fprintf(fp,"%sn",phn);
}
}
fclose(f);
fclose(fp);
remove("sms.txt");
rename("temp.txt","sms.txt");
}
void search()
{
int n;
clrscr();
li=fopen("limit.txt","r");
{
fscanf(li,"%d",&l);
}
fclose(li);
end=l;
heading();
front1();
f=fopen("sms.txt","r");
gotoxy(32,12);
cout<<"Enter id= ";
cin>>n;
clrscr();
heading();
front1();
for(i=0;i<end;i++)
{
fscanf(f,"%dt",&id);
fscanf(f,"%st",name);
fscanf(f,"%st",clas);
fscanf(f,"%st",dob);
fscanf(f,"%st",city);
fscanf(f,"%sn",phn);
if(n==id)
{
gotoxy(2,5);
fprintf(stdout,"%dt",id);
gotoxy(13,5);
fprintf(stdout,"%st",name);
gotoxy(28,5);
fprintf(stdout,"%st",clas);
gotoxy(42,5);
fprintf(stdout,"%st",dob);
gotoxy(56,5);
fprintf(stdout,"%st",city);
gotoxy(68,5);
fprintf(stdout,"%sn",phn);
}
}
fclose(f);
}
void heading()
{
for(i=1;i<=80;i++)
{
gotoxy(i,2);
cout<<"-";
gotoxy(i,4);
cout<<"-";
}
gotoxy(2,3);
cout<<"ID";
gotoxy(13,3);
cout<<"Name";
gotoxy(28,3);
cout<<"Class";
gotoxy(42,3);
cout<<"D O B";
gotoxy(56,3);
cout<<"City";
gotoxy(68,3);
cout<<"Phone Number";
}
void front1()
{
for(i=2;i<=79;i++)
{
textbackground(7);
gotoxy(i,25);
cprintf(" ");
}
struct date d;
getdate(&d);
gotoxy(66,1);
printf("%d/%d/%d",d.da_day,d.da_mon,d.da_year);
textcolor(0);
gotoxy(2,25);
cprintf("1. - ADD");
gotoxy(13,25);
cprintf("2. - SHOW");
gotoxy(25,25);
cprintf("3. - DELETE");
gotoxy(39,25);
cprintf("4. - MODIFY");
gotoxy(54,25);
cprintf("5. - SEARCH");
gotoxy(68,25);
cprintf("6. - EXIT");
textbackground(6);
}
void intro()
{
gotoxy(60,20);
cout<<"Yash Agarwal";
gotoxy(60,21);
cout<<"BCA 2nd Year";
gotoxy(60,22);
cout<<"~~~~~~~~~~~~~~";
}
};
void design()
{
for(i=0;i<=25;i++)
{
for(j=0;j<=80;j++)
{
textbackground(6);
gotoxy(j,i);
cprintf(" ");
}
}
}
void head()
{
gotoxy(25,5);
textcolor(15);
cprintf("Student Management System (S M S)");
textcolor(0);
}
void main()
{
clrscr();
sms ss;
int p,i,j;
char ld[40],ps[5],ch;
if(run==1)
{
for(i=0;i<=25;i++)
{
for(j=0;j<=80;j++)
{
textbackground(6);
gotoxy(j,i);
cprintf(" ");
}
}
textcolor(0);
gotoxy(27,10);
cprintf("Login Id");
for(p=27;p<48;p++)
{
gotoxy(p,11);
textbackground(7);
cprintf(" ");
}
textbackground(6);
gotoxy(27,13);
cprintf("Login Password");
for(p=27;p<48;p++)
{
gotoxy(p,14);
textbackground(7);
cprintf(" ");
}
textcolor(0);
gotoxy(41,11);
cprintf("@hy.app");
gotoxy(27,11);
scanf("%s",ld);
gotoxy(27,14);
p=0;
while(1)
{
ch=getch();
if(ch==13)
{
break;
}
ps[p]=ch;
p++;
cprintf("*");
}
run++;
textbackground(0);
if((strcmp(ld,"hello")==0))
{
if(ps[0]=='t' && ps[1]=='a' && ps[2]=='r' && ps[3]=='u' && ps[4]=='n')
{
clrscr();
ss.design();
textcolor(0);
ss.head();
ss.front();
ch=getch();
do
{
if(ch=='1')
{
ss.add();
}
else if(ch=='2')
{
ss.show();
}
else if(ch=='3')
{
ss.del();
}
else if(ch=='4')
{
ss.modify();
}
else if(ch=='5')
{
ss.search();
}
else if(ch=='6')
{
exit(0);
}
else
{
main();
}
ch=getch();
}while(ch);
}
else
{
exit(0);
}
}
else
{
exit(0);
}
}
else
{
for(i=0;i<40;i++)
{
ps[i]=NULL;
}
clrscr();
ss.design();
textcolor(0);
ss.head();
ss.front();
ch=getch();
do
{
if(ch=='1')
{
ss.add();
}
else if(ch=='2')
{
ss.show();
}
else if(ch=='3')
{
ss.del();
}
else if(ch=='4')
{
ss.modify();
}
else if(ch=='5')
{
ss.search();
}
else if(ch=='6')
{
exit(0);
}
else
{
main();
}
ch=getch();
}while(ch);
}
getch();
}
Thank You
YASH AGARWAL
Bachelor of Computer Application
Dezyne E’cole College
106/10, CIVIL LINES
AJMER
RAJASTHAN - 305001 (INDIA)
(AUGUST, 2015)
www.dezyneecole.com

Contenu connexe

Plus de dezyneecole

Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Yeardezyneecole
 
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...dezyneecole
 
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...dezyneecole
 
Gitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 YearGitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 Yeardezyneecole
 
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)dezyneecole
 
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)dezyneecole
 
Tanya Jain, Diploma Fashion Design First Year, (Illustration For Fashion Desi...
Tanya Jain, Diploma Fashion Design First Year, (Illustration For Fashion Desi...Tanya Jain, Diploma Fashion Design First Year, (Illustration For Fashion Desi...
Tanya Jain, Diploma Fashion Design First Year, (Illustration For Fashion Desi...dezyneecole
 
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)dezyneecole
 
Simmi Agarwal, Diploma Fashion Design First Year, (Corel Draw Project)
Simmi Agarwal, Diploma Fashion Design First Year, (Corel Draw Project)Simmi Agarwal, Diploma Fashion Design First Year, (Corel Draw Project)
Simmi Agarwal, Diploma Fashion Design First Year, (Corel Draw Project)dezyneecole
 
Rashika Agarwal, Diploma Fashion Design First Year, (Illustration Project)
Rashika Agarwal, Diploma Fashion Design First Year, (Illustration Project)Rashika Agarwal, Diploma Fashion Design First Year, (Illustration Project)
Rashika Agarwal, Diploma Fashion Design First Year, (Illustration Project)dezyneecole
 
Rashika Agarwal, Diploma Fashion Design First Year, (Draping Project)
Rashika Agarwal, Diploma Fashion Design First Year, (Draping Project)Rashika Agarwal, Diploma Fashion Design First Year, (Draping Project)
Rashika Agarwal, Diploma Fashion Design First Year, (Draping Project)dezyneecole
 

Plus de dezyneecole (20)

Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
 
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
 
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
 
Gitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 YearGitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 Year
 
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
 
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
 
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
 
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
 
Tanya Jain, Diploma Fashion Design First Year, (Illustration For Fashion Desi...
Tanya Jain, Diploma Fashion Design First Year, (Illustration For Fashion Desi...Tanya Jain, Diploma Fashion Design First Year, (Illustration For Fashion Desi...
Tanya Jain, Diploma Fashion Design First Year, (Illustration For Fashion Desi...
 
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
 
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
 
Simmi Agarwal, Diploma Fashion Design First Year, (Corel Draw Project)
Simmi Agarwal, Diploma Fashion Design First Year, (Corel Draw Project)Simmi Agarwal, Diploma Fashion Design First Year, (Corel Draw Project)
Simmi Agarwal, Diploma Fashion Design First Year, (Corel Draw Project)
 
Rashika Agarwal, Diploma Fashion Design First Year, (Illustration Project)
Rashika Agarwal, Diploma Fashion Design First Year, (Illustration Project)Rashika Agarwal, Diploma Fashion Design First Year, (Illustration Project)
Rashika Agarwal, Diploma Fashion Design First Year, (Illustration Project)
 
Rashika Agarwal, Diploma Fashion Design First Year, (Draping Project)
Rashika Agarwal, Diploma Fashion Design First Year, (Draping Project)Rashika Agarwal, Diploma Fashion Design First Year, (Draping Project)
Rashika Agarwal, Diploma Fashion Design First Year, (Draping Project)
 

Dernier

Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 

Dernier (20)

Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 

Yash Agarwal ,3rd Year BCA ,Project on C++ Language