SlideShare a Scribd company logo
1 of 23
A quick Revision
Changing HTML Elements using JS
<body>
<p id=“SCCI">Seek the peak</p>
</body>
Before
<body>
<p id=“SCCI">Seek the peak</p>
<script>
document.getElementById(“SCCI").innerHTML =
“Be your own hero";
</script>
</body>
Changing HTML Elements using JS
After
Pop up code
function div_show() {
document.getElementById(‘id').style.display = "block";
}
function div_hide(){
document.getElementById(‘id').style.display = "none";
}
Validation in JS
function check_empty() {
if (document.getElementById('name').value == "" ||
document.getElementById('email').value == "" ||
document.getElementById('msg').value == "") {
alert("Fill All Fields !");
} else {
document.getElementById('form').submit();
alert("Form Submitted Successfully...");
}
}
Validation in JS
Validation in JS
How to connect to a
DATABASE?
<?php
$conn = mysqli_connect("localhost", "root", "",
"devology");
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
?>
SQL
SELECT * FROM Table_name;
SELECT column1,2,3 FROM Table_name
<?php
$sql = "SELECT id, user_name, email
FROM teams";
$result = mysqli_query($conn, $sql);
?>
INSERT INTO Tabel_name(Column1,2,3)
VALUES(‘value1’,’2’,’3’);
<?php
$sql = "INSERT INTO teams(user_name,
password, email, phone_number)
VALUES (‘AssemSalem', 'Devology',
‘asemsalem@gmail.com‘, ‘01116877970')";
$result = mysqli_query($conn, $sql);
?>
UPDATE Tabel_name
SET column1=‘value1’, column2=‘value2’
WHERE column3=‘value3’;
<?php
$sql = "UPDATE teams SET
user_name=‘MahmoudBahaa'
WHERE password= 'Devology' ";
$result = mysqli_query($conn, $sql);
?>
DELETE FROM Tabel_name
WHERE some_column=‘some_column’;
<?php
$sql = "DELETE FROM teams
WHERE user_name= ‘AssemSalem' ";
$result = mysqli_query($conn, $sql);
?>
Any Questions?
Thank you!

More Related Content

What's hot

Introduction to React and MobX
Introduction to React and MobXIntroduction to React and MobX
Introduction to React and MobXAnjali Chawla
 
You Can Kick-Ass Too, AtlasCamp US 2012
You Can Kick-Ass Too, AtlasCamp US 2012You Can Kick-Ass Too, AtlasCamp US 2012
You Can Kick-Ass Too, AtlasCamp US 2012Atlassian
 
MVVM Magic in SharePoint 2010 using Knockoutjs!
MVVM Magic in SharePoint 2010 using Knockoutjs!MVVM Magic in SharePoint 2010 using Knockoutjs!
MVVM Magic in SharePoint 2010 using Knockoutjs!jhendrix88
 
Streaming Data Pipelines with MongoDB and Kafka at ao.com
Streaming Data Pipelines with MongoDB and Kafka at ao.comStreaming Data Pipelines with MongoDB and Kafka at ao.com
Streaming Data Pipelines with MongoDB and Kafka at ao.comMongoDB
 

What's hot (7)

Introduction to React and MobX
Introduction to React and MobXIntroduction to React and MobX
Introduction to React and MobX
 
You Can Kick-Ass Too, AtlasCamp US 2012
You Can Kick-Ass Too, AtlasCamp US 2012You Can Kick-Ass Too, AtlasCamp US 2012
You Can Kick-Ass Too, AtlasCamp US 2012
 
Web storage
Web storageWeb storage
Web storage
 
MVVM Magic in SharePoint 2010 using Knockoutjs!
MVVM Magic in SharePoint 2010 using Knockoutjs!MVVM Magic in SharePoint 2010 using Knockoutjs!
MVVM Magic in SharePoint 2010 using Knockoutjs!
 
Introduction to j_query
Introduction to j_queryIntroduction to j_query
Introduction to j_query
 
Client Web
Client WebClient Web
Client Web
 
Streaming Data Pipelines with MongoDB and Kafka at ao.com
Streaming Data Pipelines with MongoDB and Kafka at ao.comStreaming Data Pipelines with MongoDB and Kafka at ao.com
Streaming Data Pipelines with MongoDB and Kafka at ao.com
 

Viewers also liked

SCCI'15 - Markative - Session5 - Designing concepts
SCCI'15 - Markative - Session5 - Designing conceptsSCCI'15 - Markative - Session5 - Designing concepts
SCCI'15 - Markative - Session5 - Designing conceptsSCCI-CU
 
SCCI'15 - Markative - session 7 - Advertising
SCCI'15 - Markative - session 7 - AdvertisingSCCI'15 - Markative - session 7 - Advertising
SCCI'15 - Markative - session 7 - AdvertisingSCCI-CU
 
SCCI'15 - Markative - Photography
SCCI'15 - Markative - PhotographySCCI'15 - Markative - Photography
SCCI'15 - Markative - PhotographySCCI-CU
 
SCCI'15 - markative - session 3 - Consumer behavior
SCCI'15 - markative - session 3 - Consumer behaviorSCCI'15 - markative - session 3 - Consumer behavior
SCCI'15 - markative - session 3 - Consumer behaviorSCCI-CU
 
SCCI'15 - Markative - Session 8 - marketing plan
SCCI'15 - Markative - Session 8 - marketing planSCCI'15 - Markative - Session 8 - marketing plan
SCCI'15 - Markative - Session 8 - marketing planSCCI-CU
 
SCCI'15-Soft-skills-session 6- Goal setting
SCCI'15-Soft-skills-session 6- Goal settingSCCI'15-Soft-skills-session 6- Goal setting
SCCI'15-Soft-skills-session 6- Goal settingSCCI-CU
 
SCCI'15-Soft-skills-session 8-How to be effective.
SCCI'15-Soft-skills-session 8-How to be effective.SCCI'15-Soft-skills-session 8-How to be effective.
SCCI'15-Soft-skills-session 8-How to be effective.SCCI-CU
 

Viewers also liked (7)

SCCI'15 - Markative - Session5 - Designing concepts
SCCI'15 - Markative - Session5 - Designing conceptsSCCI'15 - Markative - Session5 - Designing concepts
SCCI'15 - Markative - Session5 - Designing concepts
 
SCCI'15 - Markative - session 7 - Advertising
SCCI'15 - Markative - session 7 - AdvertisingSCCI'15 - Markative - session 7 - Advertising
SCCI'15 - Markative - session 7 - Advertising
 
SCCI'15 - Markative - Photography
SCCI'15 - Markative - PhotographySCCI'15 - Markative - Photography
SCCI'15 - Markative - Photography
 
SCCI'15 - markative - session 3 - Consumer behavior
SCCI'15 - markative - session 3 - Consumer behaviorSCCI'15 - markative - session 3 - Consumer behavior
SCCI'15 - markative - session 3 - Consumer behavior
 
SCCI'15 - Markative - Session 8 - marketing plan
SCCI'15 - Markative - Session 8 - marketing planSCCI'15 - Markative - Session 8 - marketing plan
SCCI'15 - Markative - Session 8 - marketing plan
 
SCCI'15-Soft-skills-session 6- Goal setting
SCCI'15-Soft-skills-session 6- Goal settingSCCI'15-Soft-skills-session 6- Goal setting
SCCI'15-Soft-skills-session 6- Goal setting
 
SCCI'15-Soft-skills-session 8-How to be effective.
SCCI'15-Soft-skills-session 8-How to be effective.SCCI'15-Soft-skills-session 8-How to be effective.
SCCI'15-Soft-skills-session 8-How to be effective.
 

Similar to SCCI'15 - Devology - Session 9 - a quick revision on designing and developing.

The Principle of Hybrid App.
The Principle of Hybrid App.The Principle of Hybrid App.
The Principle of Hybrid App.musart Park
 
HTML5 and Mobile
HTML5 and MobileHTML5 and Mobile
HTML5 and Mobiledoodoofish
 
Javascript basic programs
Javascript basic programsJavascript basic programs
Javascript basic programsDigital Shende
 
Entity framework db model的驗證機制 20130914
Entity framework db model的驗證機制 20130914Entity framework db model的驗證機制 20130914
Entity framework db model的驗證機制 20130914LearningTech
 
Building iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" DominoBuilding iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" DominoRob Bontekoe
 
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...Ayes Chinmay
 
Google
GoogleGoogle
Googlesoon
 
計算機概論20161212
計算機概論20161212計算機概論20161212
計算機概論20161212志宇 許
 
Devoxx 2014-webComponents
Devoxx 2014-webComponentsDevoxx 2014-webComponents
Devoxx 2014-webComponentsCyril Balit
 
Top Ten Web Defenses - DefCamp 2012
Top Ten Web Defenses  - DefCamp 2012Top Ten Web Defenses  - DefCamp 2012
Top Ten Web Defenses - DefCamp 2012DefCamp
 
The Future of CSS with Web components
The Future of CSS with Web componentsThe Future of CSS with Web components
The Future of CSS with Web componentsdevObjective
 
The Future of CSS with Web Components
The Future of CSS with Web ComponentsThe Future of CSS with Web Components
The Future of CSS with Web ComponentsColdFusionConference
 
Form demoinplaywithmysql
Form demoinplaywithmysqlForm demoinplaywithmysql
Form demoinplaywithmysqlKnoldus Inc.
 
Building Reusable Custom Elements With Angular
Building Reusable Custom Elements With AngularBuilding Reusable Custom Elements With Angular
Building Reusable Custom Elements With AngularIlia Idakiev
 
Assignment4
Assignment4Assignment4
Assignment4H K
 

Similar to SCCI'15 - Devology - Session 9 - a quick revision on designing and developing. (20)

The Principle of Hybrid App.
The Principle of Hybrid App.The Principle of Hybrid App.
The Principle of Hybrid App.
 
22 j query1
22 j query122 j query1
22 j query1
 
Java script cookies
Java script   cookiesJava script   cookies
Java script cookies
 
Jquery introduction
Jquery introductionJquery introduction
Jquery introduction
 
J query1
J query1J query1
J query1
 
HTML5 and Mobile
HTML5 and MobileHTML5 and Mobile
HTML5 and Mobile
 
Javascript basic programs
Javascript basic programsJavascript basic programs
Javascript basic programs
 
Entity framework db model的驗證機制 20130914
Entity framework db model的驗證機制 20130914Entity framework db model的驗證機制 20130914
Entity framework db model的驗證機制 20130914
 
Building iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" DominoBuilding iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" Domino
 
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
 
Google
GoogleGoogle
Google
 
計算機概論20161212
計算機概論20161212計算機概論20161212
計算機概論20161212
 
Devoxx 2014-webComponents
Devoxx 2014-webComponentsDevoxx 2014-webComponents
Devoxx 2014-webComponents
 
2.java script dom
2.java script  dom2.java script  dom
2.java script dom
 
Top Ten Web Defenses - DefCamp 2012
Top Ten Web Defenses  - DefCamp 2012Top Ten Web Defenses  - DefCamp 2012
Top Ten Web Defenses - DefCamp 2012
 
The Future of CSS with Web components
The Future of CSS with Web componentsThe Future of CSS with Web components
The Future of CSS with Web components
 
The Future of CSS with Web Components
The Future of CSS with Web ComponentsThe Future of CSS with Web Components
The Future of CSS with Web Components
 
Form demoinplaywithmysql
Form demoinplaywithmysqlForm demoinplaywithmysql
Form demoinplaywithmysql
 
Building Reusable Custom Elements With Angular
Building Reusable Custom Elements With AngularBuilding Reusable Custom Elements With Angular
Building Reusable Custom Elements With Angular
 
Assignment4
Assignment4Assignment4
Assignment4
 

More from SCCI-CU

SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.
SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.
SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.SCCI-CU
 
SCCI'15 - Devology - Session 7 - Data and Databases
SCCI'15 - Devology - Session 7 - Data and DatabasesSCCI'15 - Devology - Session 7 - Data and Databases
SCCI'15 - Devology - Session 7 - Data and DatabasesSCCI-CU
 
SCCI'15 - Devology - Session 6 - Servers and PHP
SCCI'15 - Devology - Session 6 - Servers and PHPSCCI'15 - Devology - Session 6 - Servers and PHP
SCCI'15 - Devology - Session 6 - Servers and PHPSCCI-CU
 
SCCI'15 - Devology - Session 5 - How to make my own website?
SCCI'15 - Devology - Session 5 - How to make my own website?SCCI'15 - Devology - Session 5 - How to make my own website?
SCCI'15 - Devology - Session 5 - How to make my own website?SCCI-CU
 
SCCI'15 - Markative - session 5 - Inbound marketing
SCCI'15 - Markative - session 5 - Inbound marketingSCCI'15 - Markative - session 5 - Inbound marketing
SCCI'15 - Markative - session 5 - Inbound marketingSCCI-CU
 
SCCI'15 - Markative - session 4 - Direct marketing
SCCI'15 - Markative - session 4 - Direct marketingSCCI'15 - Markative - session 4 - Direct marketing
SCCI'15 - Markative - session 4 - Direct marketingSCCI-CU
 
SCCI'15 - SoftSkills - Session 4 presentation skills
SCCI'15 - SoftSkills - Session 4 presentation skillsSCCI'15 - SoftSkills - Session 4 presentation skills
SCCI'15 - SoftSkills - Session 4 presentation skillsSCCI-CU
 
SCCI'15 - Devology - Session 4 Javascript
SCCI'15 - Devology - Session 4 JavascriptSCCI'15 - Devology - Session 4 Javascript
SCCI'15 - Devology - Session 4 JavascriptSCCI-CU
 
SCCI'15 - soft-skills - Session 3- self-awareness
SCCI'15 - soft-skills - Session 3- self-awarenessSCCI'15 - soft-skills - Session 3- self-awareness
SCCI'15 - soft-skills - Session 3- self-awarenessSCCI-CU
 
SCCI'15 - Techsolve - Session 3 - Problem Solving
SCCI'15 - Techsolve - Session 3 - Problem SolvingSCCI'15 - Techsolve - Session 3 - Problem Solving
SCCI'15 - Techsolve - Session 3 - Problem SolvingSCCI-CU
 
SCCI'15 - Devology - Session 2 - UI&CSS
SCCI'15 - Devology - Session 2 - UI&CSSSCCI'15 - Devology - Session 2 - UI&CSS
SCCI'15 - Devology - Session 2 - UI&CSSSCCI-CU
 
SCCI'15 - Devology - Session 1 - Introduction The Internet & HTML
SCCI'15 - Devology - Session 1 - Introduction The Internet & HTMLSCCI'15 - Devology - Session 1 - Introduction The Internet & HTML
SCCI'15 - Devology - Session 1 - Introduction The Internet & HTMLSCCI-CU
 
SCCI'15 - Soft Skills - Session 1 - Interviewing Skills
SCCI'15 - Soft Skills - Session 1 - Interviewing SkillsSCCI'15 - Soft Skills - Session 1 - Interviewing Skills
SCCI'15 - Soft Skills - Session 1 - Interviewing SkillsSCCI-CU
 
SCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
SCCI'15 - Investeneur, Techsolve - Session2 - EnterpeneurshipSCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
SCCI'15 - Investeneur, Techsolve - Session2 - EnterpeneurshipSCCI-CU
 
SCCI'15 - Investeneur - Session1 - Starting a business
SCCI'15 - Investeneur - Session1 - Starting a businessSCCI'15 - Investeneur - Session1 - Starting a business
SCCI'15 - Investeneur - Session1 - Starting a businessSCCI-CU
 
SCCI'15 - TechSolve - session 1- Ideas and Introduction to project management
SCCI'15 - TechSolve - session 1- Ideas and Introduction to project managementSCCI'15 - TechSolve - session 1- Ideas and Introduction to project management
SCCI'15 - TechSolve - session 1- Ideas and Introduction to project managementSCCI-CU
 

More from SCCI-CU (16)

SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.
SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.
SCCI'15 - Devology - Session 7 - UX&Steps to make a good website.
 
SCCI'15 - Devology - Session 7 - Data and Databases
SCCI'15 - Devology - Session 7 - Data and DatabasesSCCI'15 - Devology - Session 7 - Data and Databases
SCCI'15 - Devology - Session 7 - Data and Databases
 
SCCI'15 - Devology - Session 6 - Servers and PHP
SCCI'15 - Devology - Session 6 - Servers and PHPSCCI'15 - Devology - Session 6 - Servers and PHP
SCCI'15 - Devology - Session 6 - Servers and PHP
 
SCCI'15 - Devology - Session 5 - How to make my own website?
SCCI'15 - Devology - Session 5 - How to make my own website?SCCI'15 - Devology - Session 5 - How to make my own website?
SCCI'15 - Devology - Session 5 - How to make my own website?
 
SCCI'15 - Markative - session 5 - Inbound marketing
SCCI'15 - Markative - session 5 - Inbound marketingSCCI'15 - Markative - session 5 - Inbound marketing
SCCI'15 - Markative - session 5 - Inbound marketing
 
SCCI'15 - Markative - session 4 - Direct marketing
SCCI'15 - Markative - session 4 - Direct marketingSCCI'15 - Markative - session 4 - Direct marketing
SCCI'15 - Markative - session 4 - Direct marketing
 
SCCI'15 - SoftSkills - Session 4 presentation skills
SCCI'15 - SoftSkills - Session 4 presentation skillsSCCI'15 - SoftSkills - Session 4 presentation skills
SCCI'15 - SoftSkills - Session 4 presentation skills
 
SCCI'15 - Devology - Session 4 Javascript
SCCI'15 - Devology - Session 4 JavascriptSCCI'15 - Devology - Session 4 Javascript
SCCI'15 - Devology - Session 4 Javascript
 
SCCI'15 - soft-skills - Session 3- self-awareness
SCCI'15 - soft-skills - Session 3- self-awarenessSCCI'15 - soft-skills - Session 3- self-awareness
SCCI'15 - soft-skills - Session 3- self-awareness
 
SCCI'15 - Techsolve - Session 3 - Problem Solving
SCCI'15 - Techsolve - Session 3 - Problem SolvingSCCI'15 - Techsolve - Session 3 - Problem Solving
SCCI'15 - Techsolve - Session 3 - Problem Solving
 
SCCI'15 - Devology - Session 2 - UI&CSS
SCCI'15 - Devology - Session 2 - UI&CSSSCCI'15 - Devology - Session 2 - UI&CSS
SCCI'15 - Devology - Session 2 - UI&CSS
 
SCCI'15 - Devology - Session 1 - Introduction The Internet & HTML
SCCI'15 - Devology - Session 1 - Introduction The Internet & HTMLSCCI'15 - Devology - Session 1 - Introduction The Internet & HTML
SCCI'15 - Devology - Session 1 - Introduction The Internet & HTML
 
SCCI'15 - Soft Skills - Session 1 - Interviewing Skills
SCCI'15 - Soft Skills - Session 1 - Interviewing SkillsSCCI'15 - Soft Skills - Session 1 - Interviewing Skills
SCCI'15 - Soft Skills - Session 1 - Interviewing Skills
 
SCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
SCCI'15 - Investeneur, Techsolve - Session2 - EnterpeneurshipSCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
SCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
 
SCCI'15 - Investeneur - Session1 - Starting a business
SCCI'15 - Investeneur - Session1 - Starting a businessSCCI'15 - Investeneur - Session1 - Starting a business
SCCI'15 - Investeneur - Session1 - Starting a business
 
SCCI'15 - TechSolve - session 1- Ideas and Introduction to project management
SCCI'15 - TechSolve - session 1- Ideas and Introduction to project managementSCCI'15 - TechSolve - session 1- Ideas and Introduction to project management
SCCI'15 - TechSolve - session 1- Ideas and Introduction to project management
 

Recently uploaded

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
“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
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
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
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
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
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 

Recently uploaded (20)

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
“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...
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
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
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
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
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 

SCCI'15 - Devology - Session 9 - a quick revision on designing and developing.