SlideShare a Scribd company logo
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 MobX
Anjali 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 2012
Atlassian
 
Web storage
Web storageWeb storage
Web storage
Junji Manno
 
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
 
Introduction to j_query
Introduction to j_queryIntroduction to j_query
Introduction to j_query
Basavaraj Hampali
 
Client Web
Client WebClient Web
Client Web
Markiyan Matsekh
 
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
MongoDB
 

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 concepts
SCCI-CU
 
SCCI'15 - Markative - session 7 - Advertising
SCCI'15 - Markative - session 7 - AdvertisingSCCI'15 - Markative - session 7 - Advertising
SCCI'15 - Markative - session 7 - Advertising
SCCI-CU
 
SCCI'15 - Markative - Photography
SCCI'15 - Markative - PhotographySCCI'15 - Markative - Photography
SCCI'15 - Markative - Photography
SCCI-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 behavior
SCCI-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 plan
SCCI-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 setting
SCCI-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
 
22 j query1
22 j query122 j query1
22 j query1
Fajar Baskoro
 
Java script cookies
Java script   cookiesJava script   cookies
Java script cookies
AbhishekMondal42
 
Jquery introduction
Jquery introductionJquery introduction
Jquery introduction
musrath mohammad
 
J query1
J query1J query1
J query1
Manav Prasad
 
HTML5 and Mobile
HTML5 and MobileHTML5 and Mobile
HTML5 and Mobiledoodoofish
 
Javascript basic programs
Javascript basic programsJavascript basic programs
Javascript basic programs
Digital 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" Domino
Rob 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-webComponents
Cyril Balit
 
2.java script dom
2.java script  dom2.java script  dom
2.java script dom
PhD Research Scholar
 
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 components
devObjective
 
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
ColdFusionConference
 
Form demoinplaywithmysql
Form demoinplaywithmysqlForm demoinplaywithmysql
Form demoinplaywithmysql
Knoldus Inc.
 
Building Reusable Custom Elements With Angular
Building Reusable Custom Elements With AngularBuilding Reusable Custom Elements With Angular
Building Reusable Custom Elements With Angular
Ilia 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 Databases
SCCI-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 PHP
SCCI-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 marketing
SCCI-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 marketing
SCCI-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 skills
SCCI-CU
 
SCCI'15 - Devology - Session 4 Javascript
SCCI'15 - Devology - Session 4 JavascriptSCCI'15 - Devology - Session 4 Javascript
SCCI'15 - Devology - Session 4 Javascript
SCCI-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-awareness
SCCI-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&CSS
SCCI-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 & HTML
SCCI-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 Skills
SCCI-CU
 
SCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
SCCI'15 - Investeneur, Techsolve - Session2 - EnterpeneurshipSCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
SCCI'15 - Investeneur, Techsolve - Session2 - Enterpeneurship
SCCI-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 business
SCCI-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 management
SCCI-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

"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
chanes7
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBCSTRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
kimdan468
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
Mohammed Sikander
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 

Recently uploaded (20)

"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBCSTRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 

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