SlideShare a Scribd company logo
1 of 7
1.AES for usingthe java(subjectnetworksecurity)
package aes;
importjava.io.*;
classCaesarCipher
{
publicstaticvoidmain(String[]args) throwsException
{
Stringpt,ct;
intkey=3;
BufferedReaderbr=new BufferedReader(new InputStreamReader(System.in));
System.out.print("EnterPlainText:");
pt = br.readLine().toUpperCase();
ct = doEncrypt(pt,key);
System.out.println("CipherText:" + ct);
pt = doDecrypt(ct,key);
System.out.println("DecryptedPlainText:" + pt);
}
staticString doEncrypt(Stringpt,intkey)
{
char c;
intnum;
StringBuffersb=newStringBuffer(pt);
for(inti=0;i<sb.length();i++)
{
num= sb.charAt(i)-65;
num+=key;
if(num>=26) num-=26;
c = (char)(num+65);
sb.setCharAt(i,c);
}
returnnewString(sb);
}
staticString doDecrypt(Stringct,intkey)
{
returndoEncrypt(ct,26-key).toLowerCase();
}
}
2. blowfishusingthe java
package blowfish;
importjavax.crypto.Cipher;
importjavax.crypto.spec.SecretKeySpec;
importsun.misc.BASE64Decoder;
importsun.misc.BASE64Encoder;
publicclassBlowfish{
publicstaticvoidmain(String[] args) throwsException{
encrypt("edwin","password");
decrypt("6VsVtA/nhHKUZuWWmod/BQ==");
}
private staticvoidencrypt(Stringusername,Stringpassword) throwsException{
byte[] keyData=(username+password).getBytes();
SecretKeySpecsecretKeySpec=newSecretKeySpec(keyData,"Blowfish");
Ciphercipher=Cipher.getInstance("Blowfish");
cipher.init(Cipher.ENCRYPT_MODE,secretKeySpec);
byte[] hasil =cipher.doFinal(password.getBytes());
System.out.println(new BASE64Encoder().encode(hasil));
}
private staticvoid decrypt(Stringstring) throwsException{
byte[] keyData=("edwin"+"password").getBytes();
SecretKeySpecsecretKeySpec=newSecretKeySpec(keyData,"Blowfish");
Ciphercipher=Cipher.getInstance("Blowfish");
cipher.init(Cipher.DECRYPT_MODE,secretKeySpec);
byte[] hasil =cipher.doFinal(new BASE64Decoder().decodeBuffer(string));
System.out.println(new String(hasil));
}
}
3. CaesarCipher
package caesarcipher;
importjava.io.*;
publicclassCaesarCipher
{
publicstaticvoidmain(String[]args) throwsException
{
Stringpt,ct;
intkey=3;
BufferedReaderbr= new BufferedReader(new InputStreamReader(System.in));
System.out.print("EnterPlainText:");
pt = br.readLine().toUpperCase();
ct = doEncrypt(pt,key);
System.out.println("CipherText:" + ct);
pt = doDecrypt(ct,key);
System.out.println("DecryptedPlainText:" + pt);
}
staticString doEncrypt(Stringpt,intkey)
{
char c;
intnum;
StringBuffersb= newStringBuffer(pt);
for(inti=0;i<sb.length();i++)
{
num= sb.charAt(i)-65;
num+=key;
if(num>=26) num-=26;
c = (char)(num+65);
sb.setCharAt(i,c);
}
returnnewString(sb);
}
staticvoiddoDecrypt(Stringct,intkey)
{
returndoEncrypt(ct,26-key).toLowerCase();
}
}
4. package des;
importjava.io.*;
importjavax.crypto.*;
importjava.security.spec.*;
importsun.misc.*;
publicclassDES
{
publicstaticvoidmain(String[]args) throwsException
{
Stringpt,ct;
SecretKeykey;
BufferedReaderbr= new BufferedReader(new InputStreamReader(System.in));
System.out.print("EnterPlainText:");
pt = br.readLine();
key= KeyGenerator.getInstance("DES").generateKey();
ct = doEncrypt(pt,key);
System.out.println("CipherText:" + ct);
pt = doDecrypt(ct,key);
System.out.println("DecryptedPlainText:" + pt);
}
staticString doEncrypt(Stringpt,SecretKeykey)throwsException
{
Cipherc = Cipher.getInstance("DES");
c.init(Cipher.ENCRYPT_MODE,key);
byte[] utf8= pt.getBytes("UTF8");
byte[] enc= c.doFinal(utf8);
Stringstr = newBASE64Encoder().encode(enc);
returnstr;
}
staticString doDecrypt(Stringct,SecretKeykey)throwsException
{
Cipherc = Cipher.getInstance("DES");
c.init(Cipher.DECRYPT_MODE,key);
byte[] enc= newBASE64Decoder().decodeBuffer(ct);
byte[] utf8= c.doFinal(enc);
Stringstr = newString(utf8,"UTF8");
returnstr;
}etwork
}

More Related Content

What's hot

Stackless Python 101
Stackless Python 101Stackless Python 101
Stackless Python 101guest162fd90
 
[Curso Java Basico] Aula 69: Criando varias Threads + metodos isAlive e join
[Curso Java Basico] Aula 69: Criando varias Threads + metodos isAlive e join[Curso Java Basico] Aula 69: Criando varias Threads + metodos isAlive e join
[Curso Java Basico] Aula 69: Criando varias Threads + metodos isAlive e joinLoiane Groner
 
The Ring programming language version 1.5.1 book - Part 24 of 180
The Ring programming language version 1.5.1 book - Part 24 of 180The Ring programming language version 1.5.1 book - Part 24 of 180
The Ring programming language version 1.5.1 book - Part 24 of 180Mahmoud Samir Fayed
 
The Ring programming language version 1.7 book - Part 84 of 196
The Ring programming language version 1.7 book - Part 84 of 196The Ring programming language version 1.7 book - Part 84 of 196
The Ring programming language version 1.7 book - Part 84 of 196Mahmoud Samir Fayed
 
The Ring programming language version 1.10 book - Part 34 of 212
The Ring programming language version 1.10 book - Part 34 of 212The Ring programming language version 1.10 book - Part 34 of 212
The Ring programming language version 1.10 book - Part 34 of 212Mahmoud Samir Fayed
 
Леонид Шевцов «Clojure в деле»
Леонид Шевцов «Clojure в деле»Леонид Шевцов «Clojure в деле»
Леонид Шевцов «Clojure в деле»DataArt
 
Степан Кольцов — Rust — лучше, чем C++
Степан Кольцов — Rust — лучше, чем C++Степан Кольцов — Rust — лучше, чем C++
Степан Кольцов — Rust — лучше, чем C++Yandex
 
Allison Kaptur: Bytes in the Machine: Inside the CPython interpreter, PyGotha...
Allison Kaptur: Bytes in the Machine: Inside the CPython interpreter, PyGotha...Allison Kaptur: Bytes in the Machine: Inside the CPython interpreter, PyGotha...
Allison Kaptur: Bytes in the Machine: Inside the CPython interpreter, PyGotha...akaptur
 
The Ring programming language version 1.6 book - Part 28 of 189
The Ring programming language version 1.6 book - Part 28 of 189The Ring programming language version 1.6 book - Part 28 of 189
The Ring programming language version 1.6 book - Part 28 of 189Mahmoud Samir Fayed
 
Poker, packets, pipes and Python
Poker, packets, pipes and PythonPoker, packets, pipes and Python
Poker, packets, pipes and PythonRoger Barnes
 
The Ring programming language version 1.8 book - Part 31 of 202
The Ring programming language version 1.8 book - Part 31 of 202The Ring programming language version 1.8 book - Part 31 of 202
The Ring programming language version 1.8 book - Part 31 of 202Mahmoud Samir Fayed
 
The Ring programming language version 1.7 book - Part 29 of 196
The Ring programming language version 1.7 book - Part 29 of 196The Ring programming language version 1.7 book - Part 29 of 196
The Ring programming language version 1.7 book - Part 29 of 196Mahmoud Samir Fayed
 
Boostライブラリ一周の旅
Boostライブラリ一周の旅 Boostライブラリ一周の旅
Boostライブラリ一周の旅 Akira Takahashi
 
[Curso Java Basico] Aula 70: Threads: Definindo prioridades
[Curso Java Basico] Aula 70: Threads: Definindo prioridades[Curso Java Basico] Aula 70: Threads: Definindo prioridades
[Curso Java Basico] Aula 70: Threads: Definindo prioridadesLoiane Groner
 

What's hot (20)

PMED Undergraduate Workshop - R Tutorial for PMED Undegraduate Workshop - Xi...
PMED Undergraduate Workshop - R Tutorial for PMED Undegraduate Workshop  - Xi...PMED Undergraduate Workshop - R Tutorial for PMED Undegraduate Workshop  - Xi...
PMED Undergraduate Workshop - R Tutorial for PMED Undegraduate Workshop - Xi...
 
Stackless Python 101
Stackless Python 101Stackless Python 101
Stackless Python 101
 
Vcs28
Vcs28Vcs28
Vcs28
 
Mintz q207
Mintz q207Mintz q207
Mintz q207
 
Five
FiveFive
Five
 
[Curso Java Basico] Aula 69: Criando varias Threads + metodos isAlive e join
[Curso Java Basico] Aula 69: Criando varias Threads + metodos isAlive e join[Curso Java Basico] Aula 69: Criando varias Threads + metodos isAlive e join
[Curso Java Basico] Aula 69: Criando varias Threads + metodos isAlive e join
 
The Ring programming language version 1.5.1 book - Part 24 of 180
The Ring programming language version 1.5.1 book - Part 24 of 180The Ring programming language version 1.5.1 book - Part 24 of 180
The Ring programming language version 1.5.1 book - Part 24 of 180
 
The Ring programming language version 1.7 book - Part 84 of 196
The Ring programming language version 1.7 book - Part 84 of 196The Ring programming language version 1.7 book - Part 84 of 196
The Ring programming language version 1.7 book - Part 84 of 196
 
The Ring programming language version 1.10 book - Part 34 of 212
The Ring programming language version 1.10 book - Part 34 of 212The Ring programming language version 1.10 book - Part 34 of 212
The Ring programming language version 1.10 book - Part 34 of 212
 
Input and Output
Input and OutputInput and Output
Input and Output
 
Леонид Шевцов «Clojure в деле»
Леонид Шевцов «Clojure в деле»Леонид Шевцов «Clojure в деле»
Леонид Шевцов «Clojure в деле»
 
Multi threading
Multi threadingMulti threading
Multi threading
 
Степан Кольцов — Rust — лучше, чем C++
Степан Кольцов — Rust — лучше, чем C++Степан Кольцов — Rust — лучше, чем C++
Степан Кольцов — Rust — лучше, чем C++
 
Allison Kaptur: Bytes in the Machine: Inside the CPython interpreter, PyGotha...
Allison Kaptur: Bytes in the Machine: Inside the CPython interpreter, PyGotha...Allison Kaptur: Bytes in the Machine: Inside the CPython interpreter, PyGotha...
Allison Kaptur: Bytes in the Machine: Inside the CPython interpreter, PyGotha...
 
The Ring programming language version 1.6 book - Part 28 of 189
The Ring programming language version 1.6 book - Part 28 of 189The Ring programming language version 1.6 book - Part 28 of 189
The Ring programming language version 1.6 book - Part 28 of 189
 
Poker, packets, pipes and Python
Poker, packets, pipes and PythonPoker, packets, pipes and Python
Poker, packets, pipes and Python
 
The Ring programming language version 1.8 book - Part 31 of 202
The Ring programming language version 1.8 book - Part 31 of 202The Ring programming language version 1.8 book - Part 31 of 202
The Ring programming language version 1.8 book - Part 31 of 202
 
The Ring programming language version 1.7 book - Part 29 of 196
The Ring programming language version 1.7 book - Part 29 of 196The Ring programming language version 1.7 book - Part 29 of 196
The Ring programming language version 1.7 book - Part 29 of 196
 
Boostライブラリ一周の旅
Boostライブラリ一周の旅 Boostライブラリ一周の旅
Boostライブラリ一周の旅
 
[Curso Java Basico] Aula 70: Threads: Definindo prioridades
[Curso Java Basico] Aula 70: Threads: Definindo prioridades[Curso Java Basico] Aula 70: Threads: Definindo prioridades
[Curso Java Basico] Aula 70: Threads: Definindo prioridades
 

Viewers also liked

Euskal kasuan izandako bizitzeko eskubidearen aurkako urraketen argazkiak, he...
Euskal kasuan izandako bizitzeko eskubidearen aurkako urraketen argazkiak, he...Euskal kasuan izandako bizitzeko eskubidearen aurkako urraketen argazkiak, he...
Euskal kasuan izandako bizitzeko eskubidearen aurkako urraketen argazkiak, he...Irekia - EJGV
 
Eγκατάσταση Fortran
Eγκατάσταση FortranEγκατάσταση Fortran
Eγκατάσταση FortranDimitrios Mataras
 
Sijil penghargaan (1)
Sijil penghargaan (1)Sijil penghargaan (1)
Sijil penghargaan (1)qurratu95
 
Androidでもサクサク動くHTML5ハイブリッドアプリの作り⽅
Androidでもサクサク動くHTML5ハイブリッドアプリの作り⽅Androidでもサクサク動くHTML5ハイブリッドアプリの作り⽅
Androidでもサクサク動くHTML5ハイブリッドアプリの作り⽅アシアル株式会社
 
Catalog MINOX Riflescopes | Optics Trade |
Catalog MINOX Riflescopes | Optics Trade |Catalog MINOX Riflescopes | Optics Trade |
Catalog MINOX Riflescopes | Optics Trade |Optics-Trade
 
Plaquette onet proprete et services
Plaquette onet proprete et servicesPlaquette onet proprete et services
Plaquette onet proprete et servicesaimeric
 
Remote sensing-ieee-2014-projects
Remote sensing-ieee-2014-projectsRemote sensing-ieee-2014-projects
Remote sensing-ieee-2014-projectsVijay Karan
 
VITOGAZ vous informe: Cfbp la solution GPL
VITOGAZ vous informe: Cfbp la solution GPLVITOGAZ vous informe: Cfbp la solution GPL
VITOGAZ vous informe: Cfbp la solution GPLVITOGAZ FRANCE
 

Viewers also liked (16)

Note the Second
Note the SecondNote the Second
Note the Second
 
Euskal kasuan izandako bizitzeko eskubidearen aurkako urraketen argazkiak, he...
Euskal kasuan izandako bizitzeko eskubidearen aurkako urraketen argazkiak, he...Euskal kasuan izandako bizitzeko eskubidearen aurkako urraketen argazkiak, he...
Euskal kasuan izandako bizitzeko eskubidearen aurkako urraketen argazkiak, he...
 
Christmas 2014
Christmas 2014 Christmas 2014
Christmas 2014
 
Eγκατάσταση Fortran
Eγκατάσταση FortranEγκατάσταση Fortran
Eγκατάσταση Fortran
 
paese pe paese
paese pe paesepaese pe paese
paese pe paese
 
Christmas Homework
Christmas HomeworkChristmas Homework
Christmas Homework
 
Tema 1
Tema 1Tema 1
Tema 1
 
Sijil penghargaan (1)
Sijil penghargaan (1)Sijil penghargaan (1)
Sijil penghargaan (1)
 
Androidでもサクサク動くHTML5ハイブリッドアプリの作り⽅
Androidでもサクサク動くHTML5ハイブリッドアプリの作り⽅Androidでもサクサク動くHTML5ハイブリッドアプリの作り⽅
Androidでもサクサク動くHTML5ハイブリッドアプリの作り⽅
 
Catalog MINOX Riflescopes | Optics Trade |
Catalog MINOX Riflescopes | Optics Trade |Catalog MINOX Riflescopes | Optics Trade |
Catalog MINOX Riflescopes | Optics Trade |
 
Plaquette onet proprete et services
Plaquette onet proprete et servicesPlaquette onet proprete et services
Plaquette onet proprete et services
 
Remote sensing-ieee-2014-projects
Remote sensing-ieee-2014-projectsRemote sensing-ieee-2014-projects
Remote sensing-ieee-2014-projects
 
VITOGAZ vous informe: Cfbp la solution GPL
VITOGAZ vous informe: Cfbp la solution GPLVITOGAZ vous informe: Cfbp la solution GPL
VITOGAZ vous informe: Cfbp la solution GPL
 
Branded perfume
Branded perfumeBranded perfume
Branded perfume
 
Grow Your Business
Grow Your BusinessGrow Your Business
Grow Your Business
 
LAUT
LAUTLAUT
LAUT
 

Similar to Network security

Network security
Network securityNetwork security
Network securitybabyangle
 
Java practice programs for beginners
Java practice programs for beginnersJava practice programs for beginners
Java practice programs for beginnersishan0019
 
Java Simple Programs
Java Simple ProgramsJava Simple Programs
Java Simple ProgramsUpender Upr
 
Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
 Problem1 java codeimport java.util.Scanner; Java code to pr.pdf Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
Problem1 java codeimport java.util.Scanner; Java code to pr.pdfanupamfootwear
 
Advanced Java - Practical File
Advanced Java - Practical FileAdvanced Java - Practical File
Advanced Java - Practical FileFahad Shaikh
 
Advanced Java Practical File
Advanced Java Practical FileAdvanced Java Practical File
Advanced Java Practical FileSoumya Behera
 
Cifrado cesar
Cifrado cesarCifrado cesar
Cifrado cesarEIYSC
 
Code javascript
Code javascriptCode javascript
Code javascriptRay Ray
 
information Security.docx
information Security.docxinformation Security.docx
information Security.docxSouravKarak1
 
Java binary subtraction
Java binary subtractionJava binary subtraction
Java binary subtractionCharm Sasi
 
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {Mast...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {Mast...Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {Mast...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {Mast...Mumbai B.Sc.IT Study
 
Java programs
Java programsJava programs
Java programsjojeph
 

Similar to Network security (20)

Network security
Network securityNetwork security
Network security
 
Java practice programs for beginners
Java practice programs for beginnersJava practice programs for beginners
Java practice programs for beginners
 
Java Simple Programs
Java Simple ProgramsJava Simple Programs
Java Simple Programs
 
Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
 Problem1 java codeimport java.util.Scanner; Java code to pr.pdf Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
Problem1 java codeimport java.util.Scanner; Java code to pr.pdf
 
Advanced Java - Practical File
Advanced Java - Practical FileAdvanced Java - Practical File
Advanced Java - Practical File
 
Advanced Java Practical File
Advanced Java Practical FileAdvanced Java Practical File
Advanced Java Practical File
 
Utility.ppt
Utility.pptUtility.ppt
Utility.ppt
 
The Art of Clean Code
The Art of Clean CodeThe Art of Clean Code
The Art of Clean Code
 
Cifrado cesar
Cifrado cesarCifrado cesar
Cifrado cesar
 
Java file
Java fileJava file
Java file
 
Java file
Java fileJava file
Java file
 
Sam wd programs
Sam wd programsSam wd programs
Sam wd programs
 
DCN Practical
DCN PracticalDCN Practical
DCN Practical
 
JAVA.pdf
JAVA.pdfJAVA.pdf
JAVA.pdf
 
Code javascript
Code javascriptCode javascript
Code javascript
 
information Security.docx
information Security.docxinformation Security.docx
information Security.docx
 
Java binary subtraction
Java binary subtractionJava binary subtraction
Java binary subtraction
 
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {Mast...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {Mast...Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {Mast...
Internet Technology (Practical Questions Paper) [CBSGS - 75:25 Pattern] {Mast...
 
Dotnet 18
Dotnet 18Dotnet 18
Dotnet 18
 
Java programs
Java programsJava programs
Java programs
 

Recently uploaded

DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 

Recently uploaded (20)

DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 

Network security