SlideShare une entreprise Scribd logo
1  sur  48
Submitted By
Kuldeep Singh
BCA –3rd Year
Dezyne E’ cole College
106/10, Civil Lines, Ajmer
Tel: 0145-2624679
www.dezyneecole.com
2015-2016
Acknowledgement
This application on “C Language, VB Programming” was developed at
Dezyne E’cole College.
During the making of this project I have learnt a lot and I thank my mentor
Mr. Tarun Sharma for helping us during the making of project.
I thank my college “Dezyne E’cole College” for having conducted this
“Identity” exhibition for helping us to bring out our skill.
With due Regards,
Kuldeep Singh
BCA 3rd Year
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
Table Printing
C Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
#include<stdio.h>
#include<conio.h>
#include<dos.h>
void main()
{
int a=0,input=11;
int n=0,tmp=0,m=0,i;
char ch;
clrscr();
textcolor(12);
gotoxy(25,8);
cprintf("==============================
==========");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
Source Code
Table Printing
C Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(55,14);
cprintf(" ||");
gotoxy(25,15);
cprintf("=============================
===========");
gotoxy(27,9);
printf(" Table Printing n");
gotoxy(27,12);
printf(" Enter num:: n");
gotoxy(41,12);
scanf("%d",&a);
if(a!=0)
{
clrscr();
textcolor(12);
gotoxy(25,8);
cprintf("=============================
===========");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
gotoxy(25,15);
cprintf("||");
gotoxy(25,16);
cprintf("||");
gotoxy(25,17);
cprintf("||");
Table Printing
C Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(25,18);
cprintf("||");
gotoxy(25,19);
cprintf("||");
gotoxy(25,20);
cprintf("||");
gotoxy(25,21);
cprintf("||");
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
gotoxy(55,14);
cprintf(" ||");
gotoxy(55,15);
cprintf(" ||");
gotoxy(55,16);
cprintf(" ||");
gotoxy(55,17);
cprintf(" ||");
gotoxy(55,18);
cprintf(" ||");
gotoxy(55,19);
cprintf(" ||");
gotoxy(55,20);
cprintf(" ||");
gotoxy(55,21);
cprintf(" ||");
gotoxy(25,22);
cprintf("==============================
==========");
Table Printing
C Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
textcolor(15);
gotoxy(27,9);
cprintf(" Table Printing n");
for(i=1;i<=10;i++)
{
n=i*a;
gotoxy(34,input);
input++;
cprintf("%d * %d = %dnnn",a,i,n);
}
}
textcolor(10);
gotoxy(34,40);
cprintf("Do you want to Continue(Y/N)");
if(getch()=='y')
{
main();
}
else
{
exit(0);
}
getch();
}
Table Printing
C Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
Palindrome Number
C Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
Palindrome Number
C Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
Source Code
#include<stdio.h>
#include<conio.h>
void main()
{
int n=0,m=0,r=0,tmp=0;
clrscr();
textcolor(12);
gotoxy(25,8);
cprintf("==============================
==========");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
gotoxy(55,14);
cprintf(" ||");
gotoxy(25,15);
cprintf("==============================
==========");
Palindrome Number
C Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(27,10);
cprintf(" Check Num is Palandrom or
Not");
gotoxy(27,12);
textcolor(15);
cprintf(" Enter Num:-");
cscanf("%d",&n);
tmp=n;
while(n>0)
{
m=n%10;
r=r*10+m;
n=n/10;
}
if(tmp==r)
{ clrscr();
gotoxy(25,8);
cprintf("============================
============");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
Palindrome Number
C Programming
Palindrome Number
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
gotoxy(55,14);
cprintf(" ||");
gotoxy(25,15);
cprintf("==============================
==========");
gotoxy(27,10);
cprintf(" Entered Num:-
%d",tmp);
gotoxy(27,12);
textcolor(15);
cprintf(" Number is
Palandrom");
getch();
}
else
{ clrscr();
gotoxy(25,8);
cprintf("==============================
==========");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
C Programming
Palindrome Number
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
gotoxy(55,14);
cprintf(" ||");
gotoxy(25,15);
cprintf("=============================
===========");
gotoxy(27,10);
cprintf(" Entered Num:-
%d",tmp);
gotoxy(27,12);
textcolor(15);
cprintf(" Number is not
Palandrom");
getch();
}
getch();
}
C Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
Garment Shop
VB Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
Module
Public rs As ADODB.Recordset
Public con As ADODB.Connection
Sub connect()
Set rs = New ADODB.Recordset
Set con = New ADODB.Connection
con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=.Garment.mdb;Persist Security Info=False"
rs.Open "select * from garment;", con, adOpenKeyset,
adLockOptimistic
End Sub
Source Code
Form
Dim l As ListItem
Dim total As Integer
Private Sub Combo1_Click()
Call connect
Do Until rs.EOF
If Combo1.Text = rs.Fields(0) Then
Text1.Text = rs.Fields(1)
End If
rs.MoveNext
Loop
Text2.SetFocus
End Sub
Private Sub Command1_Click()
Set l = ListView1.ListItems.Add(, , Combo1.Text)
l.SubItems(1) = Text1.Text
l.SubItems(2) = Text2.Text
l.SubItems(3) = Text3.Text
End Sub
Garment Shop
VB Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
Private Sub Command2_Click()
Combo1.Text = ""
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
End Sub
Private Sub Command3_Click()
Unload Me
End Sub
Private Sub Command4_Click()
Set l = ListView1.ListItems.Add(, , " ")
Set l = ListView1.ListItems.Add(, , " ")
Set l = ListView1.ListItems.Add(, , " ")
l.SubItems(2) = "Total Amount "
l.SubItems(3) = Text4.Text
End Sub
Private Sub Form_Load()
Call connect
Do Until rs.EOF
Combo1.AddItem (rs.Fields(0))
rs.MoveNext
Loop
End Sub
Private Sub Text2_Change()
Call connect
Do Until rs.EOF
If Val(Text2.Text) > Val(rs.Fields(2)) Then
MsgBox "Stock Out"
Text2.Text = ""
Else
Text3.Text = Val(Text1.Text) * Val(Text2.Text)
End If
rs.MoveNext
Loop
End Sub
Garment Shop
VB Programming
Kuldeep Singh
Bachelor of Computer
Application
Final Year
Dezyne E’cole College
www.dezyneecole.com
Private Sub Text2_LostFocus()
total = Val(Text3.Text)
Text4.Text = total + Val(Text4.Text)
End Sub
Garment Shop
VB Programming
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
ATM Machine
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Armstrong Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
33
Armstrong Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
34
Armstrong Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Armstrong Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Armstrong Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Armstrong Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Armstrong Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Perfect Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Perfect Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Perfect Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Perfect Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Perfect Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
int s=0;
cout<<"Enter number : ";
cin>>n;
for(i=1;i<n;i++)
{
if(n%i==0)
{
s=s+i;
}
}
if(s==n)
{
gotoxy(30,10);
cout<<"Number is Perfect";
}
else
{
gotoxy(30,10);
cout<<"Number Not Perfect";
}
}
void f2()
{
clrscr();
wel();
gotoxy(30,8);
long int i,n,l;
int s;
cout<<"Enter limit : ";
cin>>l;
int xc=26,yc=10;
for(i=1;i<=l;i++)
{
s=0;
for(n=1;n<i;n++)
{
if(i%n==0)
{
s=s+n;
}
Perfect Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
}
if(s==i)
{
gotoxy(xc,yc);
cout<<i<<" ";
xc+=5;
if(xc>=50)
{
xc=26;
yc+=2;
}
}
}
}
void f3()
{
clrscr();
wel();
float f=0.5;
gotoxy(28,7);
cout<<"Starting Limit : ";
cin>>n;
gotoxy(28,8);
cout<<"Ending Limit : ";
cin>>l;
int xc=30,yc=10,s;
for(int i=n;i<=l;i++)
{
s=0;
for(int j=1;j<i;j++)
{
if(i%j==0)
{
s=s+j;
}
}
Perfect Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Perfect Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com
Perfect Calculator
Pinkle Makhijani
Bachelor of Computer
Application
I I Year
Dezyne E’cole College
www.dezyneecole.com

Contenu connexe

En vedette

C language mini project By Arbab Ahmed
C language mini project By Arbab AhmedC language mini project By Arbab Ahmed
C language mini project By Arbab AhmedArbab Ahmed
 
STUDENT RECORD MANAGEMENT SYSTEM (1)
STUDENT RECORD MANAGEMENT SYSTEM (1)STUDENT RECORD MANAGEMENT SYSTEM (1)
STUDENT RECORD MANAGEMENT SYSTEM (1)Juliet Nandutu
 
Admission system development
Admission system developmentAdmission system development
Admission system developmentJahurul Islam
 
C programming project by navin thapa
C programming project by navin thapaC programming project by navin thapa
C programming project by navin thapaNavinthp
 
School management system
School management systemSchool management system
School management systemSoumya Behera
 
School management system
School management systemSchool management system
School management systemasd143
 
College admission management system
College admission management systemCollege admission management system
College admission management systemMitesh Patel
 
School admission process management system (Documention)
School admission process management system (Documention)School admission process management system (Documention)
School admission process management system (Documention)Shital Kat
 

En vedette (9)

C language mini project By Arbab Ahmed
C language mini project By Arbab AhmedC language mini project By Arbab Ahmed
C language mini project By Arbab Ahmed
 
STUDENT RECORD MANAGEMENT SYSTEM (1)
STUDENT RECORD MANAGEMENT SYSTEM (1)STUDENT RECORD MANAGEMENT SYSTEM (1)
STUDENT RECORD MANAGEMENT SYSTEM (1)
 
Admission system development
Admission system developmentAdmission system development
Admission system development
 
C programming project by navin thapa
C programming project by navin thapaC programming project by navin thapa
C programming project by navin thapa
 
School management system
School management systemSchool management system
School management system
 
School management system
School management systemSchool management system
School management system
 
College admission management system
College admission management systemCollege admission management system
College admission management system
 
School admission process management system (Documention)
School admission process management system (Documention)School admission process management system (Documention)
School admission process management system (Documention)
 
School Management System
School Management SystemSchool Management System
School Management System
 

Similaire à Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne E'cole College

Ram Prasad , BCA Third Year
Ram Prasad , BCA Third YearRam Prasad , BCA Third Year
Ram Prasad , BCA Third YearDezyneecole
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearDezyneecole
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearDezyneecole
 
Amit Kumar Yadav , BCA Third Year
Amit Kumar Yadav ,  BCA Third YearAmit Kumar Yadav ,  BCA Third Year
Amit Kumar Yadav , BCA Third YearDezyneecole
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearDezyneecole
 
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole CollegeDinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole Collegedezyneecole
 
Sachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearSachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearDezyneecole
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Yeardezyneecole
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearDezyneecole
 
computer science project
computer science projectcomputer science project
computer science projectRoshan Bastia
 
Akshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearAkshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearDezyneecole
 
Kajal Gaharwal , BCA Third Year
Kajal Gaharwal , BCA Third YearKajal Gaharwal , BCA Third Year
Kajal Gaharwal , BCA Third YearDezyneecole
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Yeardezyneecole
 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDezyneecole
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearDezyneecole
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearDezyneecole
 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Yeardezyneecole
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearDezyneecole
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Yeardezyneecole
 
Rakesh Bijawat , BCA Third Year
Rakesh Bijawat , BCA Third YearRakesh Bijawat , BCA Third Year
Rakesh Bijawat , BCA Third YearDezyneecole
 

Similaire à Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne E'cole College (20)

Ram Prasad , BCA Third Year
Ram Prasad , BCA Third YearRam Prasad , BCA Third Year
Ram Prasad , BCA Third Year
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
 
Amit Kumar Yadav , BCA Third Year
Amit Kumar Yadav ,  BCA Third YearAmit Kumar Yadav ,  BCA Third Year
Amit Kumar Yadav , BCA Third Year
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
 
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole CollegeDinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
 
Sachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearSachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third Year
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
 
computer science project
computer science projectcomputer science project
computer science project
 
Akshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearAkshay Sharma , BCA Third Year
Akshay Sharma , BCA Third Year
 
Kajal Gaharwal , BCA Third Year
Kajal Gaharwal , BCA Third YearKajal Gaharwal , BCA Third Year
Kajal Gaharwal , BCA Third Year
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third Year
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Year
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
 
Rakesh Bijawat , BCA Third Year
Rakesh Bijawat , BCA Third YearRakesh Bijawat , BCA Third Year
Rakesh Bijawat , BCA Third Year
 

Plus de dezyneecole

Gracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second YearGracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second Yeardezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Yeardezyneecole
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Yeardezyneecole
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Yeardezyneecole
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Yeardezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Yeardezyneecole
 
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
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
 

Plus de dezyneecole (20)

Gracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second YearGracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second Year
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
 
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
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)
 

Dernier

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 

Dernier (20)

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 

Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne E'cole College

  • 1. Submitted By Kuldeep Singh BCA –3rd Year Dezyne E’ cole College 106/10, Civil Lines, Ajmer Tel: 0145-2624679 www.dezyneecole.com 2015-2016
  • 2. Acknowledgement This application on “C Language, VB Programming” was developed at Dezyne E’cole College. During the making of this project I have learnt a lot and I thank my mentor Mr. Tarun Sharma for helping us during the making of project. I thank my college “Dezyne E’cole College” for having conducted this “Identity” exhibition for helping us to bring out our skill. With due Regards, Kuldeep Singh BCA 3rd Year
  • 3. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com Table Printing C Programming
  • 4. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com #include<stdio.h> #include<conio.h> #include<dos.h> void main() { int a=0,input=11; int n=0,tmp=0,m=0,i; char ch; clrscr(); textcolor(12); gotoxy(25,8); cprintf("============================== =========="); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); Source Code Table Printing C Programming
  • 5. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com gotoxy(55,14); cprintf(" ||"); gotoxy(25,15); cprintf("============================= ==========="); gotoxy(27,9); printf(" Table Printing n"); gotoxy(27,12); printf(" Enter num:: n"); gotoxy(41,12); scanf("%d",&a); if(a!=0) { clrscr(); textcolor(12); gotoxy(25,8); cprintf("============================= ==========="); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); gotoxy(25,15); cprintf("||"); gotoxy(25,16); cprintf("||"); gotoxy(25,17); cprintf("||"); Table Printing C Programming
  • 6. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com gotoxy(25,18); cprintf("||"); gotoxy(25,19); cprintf("||"); gotoxy(25,20); cprintf("||"); gotoxy(25,21); cprintf("||"); gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); gotoxy(55,14); cprintf(" ||"); gotoxy(55,15); cprintf(" ||"); gotoxy(55,16); cprintf(" ||"); gotoxy(55,17); cprintf(" ||"); gotoxy(55,18); cprintf(" ||"); gotoxy(55,19); cprintf(" ||"); gotoxy(55,20); cprintf(" ||"); gotoxy(55,21); cprintf(" ||"); gotoxy(25,22); cprintf("============================== =========="); Table Printing C Programming
  • 7. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com textcolor(15); gotoxy(27,9); cprintf(" Table Printing n"); for(i=1;i<=10;i++) { n=i*a; gotoxy(34,input); input++; cprintf("%d * %d = %dnnn",a,i,n); } } textcolor(10); gotoxy(34,40); cprintf("Do you want to Continue(Y/N)"); if(getch()=='y') { main(); } else { exit(0); } getch(); } Table Printing C Programming
  • 8. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com Palindrome Number C Programming
  • 9. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com Palindrome Number C Programming
  • 10. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com Source Code #include<stdio.h> #include<conio.h> void main() { int n=0,m=0,r=0,tmp=0; clrscr(); textcolor(12); gotoxy(25,8); cprintf("============================== =========="); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); gotoxy(55,14); cprintf(" ||"); gotoxy(25,15); cprintf("============================== =========="); Palindrome Number C Programming
  • 11. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com gotoxy(27,10); cprintf(" Check Num is Palandrom or Not"); gotoxy(27,12); textcolor(15); cprintf(" Enter Num:-"); cscanf("%d",&n); tmp=n; while(n>0) { m=n%10; r=r*10+m; n=n/10; } if(tmp==r) { clrscr(); gotoxy(25,8); cprintf("============================ ============"); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); Palindrome Number C Programming
  • 12. Palindrome Number Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); gotoxy(55,14); cprintf(" ||"); gotoxy(25,15); cprintf("============================== =========="); gotoxy(27,10); cprintf(" Entered Num:- %d",tmp); gotoxy(27,12); textcolor(15); cprintf(" Number is Palandrom"); getch(); } else { clrscr(); gotoxy(25,8); cprintf("============================== =========="); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); C Programming
  • 13. Palindrome Number Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); gotoxy(55,14); cprintf(" ||"); gotoxy(25,15); cprintf("============================= ==========="); gotoxy(27,10); cprintf(" Entered Num:- %d",tmp); gotoxy(27,12); textcolor(15); cprintf(" Number is not Palandrom"); getch(); } getch(); } C Programming
  • 14. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com Garment Shop VB Programming
  • 15. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com Module Public rs As ADODB.Recordset Public con As ADODB.Connection Sub connect() Set rs = New ADODB.Recordset Set con = New ADODB.Connection con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=.Garment.mdb;Persist Security Info=False" rs.Open "select * from garment;", con, adOpenKeyset, adLockOptimistic End Sub Source Code Form Dim l As ListItem Dim total As Integer Private Sub Combo1_Click() Call connect Do Until rs.EOF If Combo1.Text = rs.Fields(0) Then Text1.Text = rs.Fields(1) End If rs.MoveNext Loop Text2.SetFocus End Sub Private Sub Command1_Click() Set l = ListView1.ListItems.Add(, , Combo1.Text) l.SubItems(1) = Text1.Text l.SubItems(2) = Text2.Text l.SubItems(3) = Text3.Text End Sub Garment Shop VB Programming
  • 16. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com Private Sub Command2_Click() Combo1.Text = "" Text1.Text = "" Text2.Text = "" Text3.Text = "" End Sub Private Sub Command3_Click() Unload Me End Sub Private Sub Command4_Click() Set l = ListView1.ListItems.Add(, , " ") Set l = ListView1.ListItems.Add(, , " ") Set l = ListView1.ListItems.Add(, , " ") l.SubItems(2) = "Total Amount " l.SubItems(3) = Text4.Text End Sub Private Sub Form_Load() Call connect Do Until rs.EOF Combo1.AddItem (rs.Fields(0)) rs.MoveNext Loop End Sub Private Sub Text2_Change() Call connect Do Until rs.EOF If Val(Text2.Text) > Val(rs.Fields(2)) Then MsgBox "Stock Out" Text2.Text = "" Else Text3.Text = Val(Text1.Text) * Val(Text2.Text) End If rs.MoveNext Loop End Sub Garment Shop VB Programming
  • 17. Kuldeep Singh Bachelor of Computer Application Final Year Dezyne E’cole College www.dezyneecole.com Private Sub Text2_LostFocus() total = Val(Text3.Text) Text4.Text = total + Val(Text4.Text) End Sub Garment Shop VB Programming
  • 18. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 19. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 20. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 21. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 22. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 23. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 24. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 25. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 26. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 27. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 28. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 29. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 30. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 31. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 32. ATM Machine Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 33. Armstrong Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com 33
  • 34. Armstrong Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com 34
  • 35. Armstrong Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 36. Armstrong Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 37. Armstrong Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 38. Armstrong Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 39. Armstrong Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 40. Perfect Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 41. Perfect Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 42. Perfect Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 43. Perfect Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 44. Perfect Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com int s=0; cout<<"Enter number : "; cin>>n; for(i=1;i<n;i++) { if(n%i==0) { s=s+i; } } if(s==n) { gotoxy(30,10); cout<<"Number is Perfect"; } else { gotoxy(30,10); cout<<"Number Not Perfect"; } } void f2() { clrscr(); wel(); gotoxy(30,8); long int i,n,l; int s; cout<<"Enter limit : "; cin>>l; int xc=26,yc=10; for(i=1;i<=l;i++) { s=0; for(n=1;n<i;n++) { if(i%n==0) { s=s+n; }
  • 45. Perfect Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com } if(s==i) { gotoxy(xc,yc); cout<<i<<" "; xc+=5; if(xc>=50) { xc=26; yc+=2; } } } } void f3() { clrscr(); wel(); float f=0.5; gotoxy(28,7); cout<<"Starting Limit : "; cin>>n; gotoxy(28,8); cout<<"Ending Limit : "; cin>>l; int xc=30,yc=10,s; for(int i=n;i<=l;i++) { s=0; for(int j=1;j<i;j++) { if(i%j==0) { s=s+j; } }
  • 46. Perfect Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 47. Perfect Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com
  • 48. Perfect Calculator Pinkle Makhijani Bachelor of Computer Application I I Year Dezyne E’cole College www.dezyneecole.com