SlideShare a Scribd company logo
1 of 46
HW_6-1/build.xml
Builds, tests, and runs the project HW_6-1.
HW_6-1/manifest.mf
Manifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build
HW_6-1/nbproject/build-impl.xml
Must set src.dir
Must set test.src.dir
Must set build.dir
Must set dist.dir
Must set build.classes.dir
Must set dist.javadoc.dir
Must set build.test.classes.dir
Must set build.test.results.dir
Must set build.classes.excludes
Must set dist.jar
Must set javac.includes
No tests executed.
Must set JVM to use for profiling in profiler.info.jvm
Must set profiler agent JVM arguments in
profiler.info.jvmargs.agent
Must select some files in the IDE or set javac.includes
To run this application from the command line without
Ant, try:
java -cp "${run.classpath.with.dist.jar}" ${main.class}
To run this application from the command line without
Ant, try:
java -jar "${dist.jar.resolved}"
Must select one file in the IDE or set run.class
Must select one file in the IDE or set run.class
Must select one file in the IDE or set debug.class
Must select one file in the IDE or set debug.class
Must set fix.includes
This target only works when run from inside the NetBeans
IDE.
Must select one file in the IDE or set profile.class
This target only works when run from inside the NetBeans
IDE.
This target only works when run from inside the NetBeans
IDE.
This target only works when run from inside the NetBeans
IDE.
Must select one file in the IDE or set run.class
Must select some files in the IDE or set test.includes
Must select one file in the IDE or set run.class
Must select one file in the IDE or set applet.url
Must select some files in the IDE or set javac.includes
Some tests failed; see details above.
Must select some files in the IDE or set test.includes
Some tests failed; see details above.
Must select some files in the IDE or set test.class
Must select some method in the IDE or set test.method
Some tests failed; see details above.
Must select one file in the IDE or set test.class
Must select one file in the IDE or set test.class
Must select some method in the IDE or set test.method
Must select one file in the IDE or set applet.url
Must select one file in the IDE or set applet.url
HW_6-1/nbproject/genfiles.properties
build.xml.data.CRC32=f89e461b
build.xml.script.CRC32=c43df769
[email protected]
# This file is used by a NetBeans-based IDE to track changes in
generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will
never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=f89e461b
nbproject/build-impl.xml.script.CRC32=3ec6035e
nbproject/[email protected]
HW_6-1/nbproject/project.properties
build.classes.dir=${build.dir}/classes
build.classes.excludes=**/*.java,**/*.form
# This directory is removed when the project is cleaned:
build.dir=build
build.generated.dir=${build.dir}/generated
build.generated.sources.dir=${build.dir}/generated-sources
# Only compile against the classpath explicitly listed here:
build.sysclasspath=ignore
build.test.classes.dir=${build.dir}/test/classes
build.test.results.dir=${build.dir}/test/results
# Uncomment to specify the preferred debugger connection
transport:
#debug.transport=dt_socket
debug.classpath=
${run.classpath}
debug.test.classpath=
${run.test.classpath}
# This directory is removed when the project is cleaned:
dist.dir=dist
dist.jar=${dist.dir}/HW_6-1.jar
dist.javadoc.dir=${dist.dir}/javadoc
excludes=
includes=**
jar.compress=false
javac.classpath=
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=false
javac.source=1.5
javac.target=1.5
javac.test.classpath=
${javac.classpath}:
${build.classes.dir}:
${libs.junit.classpath}:
${libs.junit_4.classpath}
javadoc.additionalparam=
javadoc.author=false
javadoc.encoding=${source.encoding}
javadoc.noindex=false
javadoc.nonavbar=false
javadoc.notree=false
javadoc.private=false
javadoc.splitindex=true
javadoc.use=true
javadoc.version=false
javadoc.windowtitle=
jaxbwiz.endorsed.dirs="${netbeans.home}/../ide12/modules/ext/
jaxb/api"
main.class=HW6_1.readAndWriteFileInfo
manifest.file=manifest.mf
meta.inf.dir=${src.dir}/META-INF
platform.active=default_platform
run.classpath=
${javac.classpath}:
${build.classes.dir}
# Space-separated list of JVM arguments used when running the
project
# (you may also define separate properties like run-sys-
prop.name=value instead of -Dname=value
# or test-sys-prop.name=value to set system properties for unit
tests):
run.jvmargs=
run.test.classpath=
${javac.test.classpath}:
${build.test.classes.dir}
source.encoding=UTF-8
src.dir=src
test.src.dir=test
HW_6-1/nbproject/project.xml
org.netbeans.modules.java.j2seproject
HW_6-1
1.6.5
HW_6-1/src/HW6_1/readAndWriteFileInfo.javaHW_6-
1/src/HW6_1/readAndWriteFileInfo.javapackage HW6_1;
import java.util.Scanner;
import java.io.*;
publicclass readAndWriteFileInfo
{
publicstaticvoid main(String[] args)throwsIOException
{
String name;
String address;
String city;
String state;
String cityState;
String zip;
int age;
int commaPosition;
//declare the file object and open the file "student_info.txt";
File myFile =newFile("student_info.txt");
if(!myFile.exists())
{
System.out.println("Unable to open student_info.txt");
System.exit(0);
}
//declare the Scanner object and connect it to the file object
Scanner inputFile =newScanner(myFile);
//read from the input file
//info for one person is input/output each iteration
while(inputFile.hasNext())
{
name = inputFile.nextLine();
address = inputFile.nextLine();
cityState = inputFile.nextLine();
zip = inputFile.nextLine();
age = inputFile.nextInt();
inputFile.nextLine();//discard newline
//separate city and state
commaPosition = cityState.indexOf(',');
city = cityState.substring(0, commaPosition);
state = cityState.substring(commaPosition +1);
//output information to the output file
// make a call to writeInfo with all appropriate information.
}
//close the file
inputFile.close();
}
/**
* writes each data item to the screen on one line, in columns
* @param name
* @param address
* @param cityStateZip
* @param age
*/
publicstaticvoid writeInfo(String name,String address,String cit
y,String state,String zip,int age)
{
}
}
HW_6-1/student_info.txt
Mary Madalinski
3434 Whiteford Road
Ottawa Lake, Michigan
45267
12
Virginia Rodriguez
456 Main Street
Dayton, Ohio
45404
8
Darla Busbee
3824 Corey Road
Toledo, Ohio
43613
9
Gary King
343 Carriage Hill Drive
Toledo, Ohio
43613
10

More Related Content

Similar to HW_6-1build.xml Builds, tests, and runs the project HW.docx

Question IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docxQuestion IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docxaudeleypearl
 
Head First Zend Framework - Part 1 Project & Application
Head First Zend Framework - Part 1 Project & ApplicationHead First Zend Framework - Part 1 Project & Application
Head First Zend Framework - Part 1 Project & ApplicationJace Ju
 
Presto Testing Tools: Benchto & Tempto (Presto Boston Meetup 10062015)
Presto Testing Tools: Benchto & Tempto (Presto Boston Meetup 10062015)Presto Testing Tools: Benchto & Tempto (Presto Boston Meetup 10062015)
Presto Testing Tools: Benchto & Tempto (Presto Boston Meetup 10062015)Matt Fuller
 
Custom deployments with sbt-native-packager
Custom deployments with sbt-native-packagerCustom deployments with sbt-native-packager
Custom deployments with sbt-native-packagerGaryCoady
 
JavaOne 2016: Life after Modularity
JavaOne 2016: Life after ModularityJavaOne 2016: Life after Modularity
JavaOne 2016: Life after ModularityDanHeidinga
 
Javascript unit testing, yes we can e big
Javascript unit testing, yes we can   e bigJavascript unit testing, yes we can   e big
Javascript unit testing, yes we can e bigAndy Peterson
 
gUIsInterfacebuild.xml Builds, tests, and runs the pro.docx
gUIsInterfacebuild.xml      Builds, tests, and runs the pro.docxgUIsInterfacebuild.xml      Builds, tests, and runs the pro.docx
gUIsInterfacebuild.xml Builds, tests, and runs the pro.docxwhittemorelucilla
 
How to run java program without IDE
How to run java program without IDEHow to run java program without IDE
How to run java program without IDEShweta Oza
 
Gradle - time for a new build
Gradle - time for a new buildGradle - time for a new build
Gradle - time for a new buildIgor Khotin
 
Lab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docx
Lab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docxLab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docx
Lab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docxcroysierkathey
 
You've done the Django Tutorial, what next?
You've done the Django Tutorial, what next?You've done the Django Tutorial, what next?
You've done the Django Tutorial, what next?Andy McKay
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to javaRakesh Singh
 
Gradle talk, Javarsovia 2010
Gradle talk, Javarsovia 2010Gradle talk, Javarsovia 2010
Gradle talk, Javarsovia 2010Tomek Kaczanowski
 
Automation Frame works Instruction Sheet
Automation Frame works Instruction SheetAutomation Frame works Instruction Sheet
Automation Frame works Instruction SheetvodQA
 
Introduction To Ant
Introduction To AntIntroduction To Ant
Introduction To AntRajesh Kumar
 

Similar to HW_6-1build.xml Builds, tests, and runs the project HW.docx (20)

Maven
MavenMaven
Maven
 
Question IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docxQuestion IYou are going to use the semaphores for process sy.docx
Question IYou are going to use the semaphores for process sy.docx
 
Head First Zend Framework - Part 1 Project & Application
Head First Zend Framework - Part 1 Project & ApplicationHead First Zend Framework - Part 1 Project & Application
Head First Zend Framework - Part 1 Project & Application
 
Presto Testing Tools: Benchto & Tempto (Presto Boston Meetup 10062015)
Presto Testing Tools: Benchto & Tempto (Presto Boston Meetup 10062015)Presto Testing Tools: Benchto & Tempto (Presto Boston Meetup 10062015)
Presto Testing Tools: Benchto & Tempto (Presto Boston Meetup 10062015)
 
Custom deployments with sbt-native-packager
Custom deployments with sbt-native-packagerCustom deployments with sbt-native-packager
Custom deployments with sbt-native-packager
 
Maven2交流
Maven2交流Maven2交流
Maven2交流
 
JavaOne 2016: Life after Modularity
JavaOne 2016: Life after ModularityJavaOne 2016: Life after Modularity
JavaOne 2016: Life after Modularity
 
Javascript unit testing, yes we can e big
Javascript unit testing, yes we can   e bigJavascript unit testing, yes we can   e big
Javascript unit testing, yes we can e big
 
gUIsInterfacebuild.xml Builds, tests, and runs the pro.docx
gUIsInterfacebuild.xml      Builds, tests, and runs the pro.docxgUIsInterfacebuild.xml      Builds, tests, and runs the pro.docx
gUIsInterfacebuild.xml Builds, tests, and runs the pro.docx
 
How to run java program without IDE
How to run java program without IDEHow to run java program without IDE
How to run java program without IDE
 
Build Scripts
Build ScriptsBuild Scripts
Build Scripts
 
Gradle - time for a new build
Gradle - time for a new buildGradle - time for a new build
Gradle - time for a new build
 
Lab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docx
Lab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docxLab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docx
Lab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docx
 
You've done the Django Tutorial, what next?
You've done the Django Tutorial, what next?You've done the Django Tutorial, what next?
You've done the Django Tutorial, what next?
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
 
Java Intro
Java IntroJava Intro
Java Intro
 
Gradle talk, Javarsovia 2010
Gradle talk, Javarsovia 2010Gradle talk, Javarsovia 2010
Gradle talk, Javarsovia 2010
 
Jdbc
JdbcJdbc
Jdbc
 
Automation Frame works Instruction Sheet
Automation Frame works Instruction SheetAutomation Frame works Instruction Sheet
Automation Frame works Instruction Sheet
 
Introduction To Ant
Introduction To AntIntroduction To Ant
Introduction To Ant
 

More from adampcarr67227

You are a project manager and believe that your initiative would be .docx
You are a project manager and believe that your initiative would be .docxYou are a project manager and believe that your initiative would be .docx
You are a project manager and believe that your initiative would be .docxadampcarr67227
 
You are a project manager at a food agricultural organization and yo.docx
You are a project manager at a food agricultural organization and yo.docxYou are a project manager at a food agricultural organization and yo.docx
You are a project manager at a food agricultural organization and yo.docxadampcarr67227
 
You are a nursing educator and you are given an assignment to teach .docx
You are a nursing educator and you are given an assignment to teach .docxYou are a nursing educator and you are given an assignment to teach .docx
You are a nursing educator and you are given an assignment to teach .docxadampcarr67227
 
You are a paralegal working at law office of James Adams, Esq. On No.docx
You are a paralegal working at law office of James Adams, Esq. On No.docxYou are a paralegal working at law office of James Adams, Esq. On No.docx
You are a paralegal working at law office of James Adams, Esq. On No.docxadampcarr67227
 
you are a paralegal working at the law office of Smith & Smith. The .docx
you are a paralegal working at the law office of Smith & Smith. The .docxyou are a paralegal working at the law office of Smith & Smith. The .docx
you are a paralegal working at the law office of Smith & Smith. The .docxadampcarr67227
 
You are a police officer who has been selected to participate in a p.docx
You are a police officer who has been selected to participate in a p.docxYou are a police officer who has been selected to participate in a p.docx
You are a police officer who has been selected to participate in a p.docxadampcarr67227
 
You are a newly-minted, tax-paying and law-abiding, permanent res.docx
You are a newly-minted, tax-paying and law-abiding, permanent res.docxYou are a newly-minted, tax-paying and law-abiding, permanent res.docx
You are a newly-minted, tax-paying and law-abiding, permanent res.docxadampcarr67227
 
You are a new university police chief in a medium-sized city, an.docx
You are a new university police chief in a medium-sized city, an.docxYou are a new university police chief in a medium-sized city, an.docx
You are a new university police chief in a medium-sized city, an.docxadampcarr67227
 
You are a native speaker of French living in a mainly English speaki.docx
You are a native speaker of French living in a mainly English speaki.docxYou are a native speaker of French living in a mainly English speaki.docx
You are a native speaker of French living in a mainly English speaki.docxadampcarr67227
 
You are a new high school teacher, and have been captured at the end.docx
You are a new high school teacher, and have been captured at the end.docxYou are a new high school teacher, and have been captured at the end.docx
You are a new high school teacher, and have been captured at the end.docxadampcarr67227
 
You are a member of the Human Resource Department of a medium-sized .docx
You are a member of the Human Resource Department of a medium-sized .docxYou are a member of the Human Resource Department of a medium-sized .docx
You are a member of the Human Resource Department of a medium-sized .docxadampcarr67227
 
You are a network analyst on the fly-away team for the FBIs cyberse.docx
You are a network analyst on the fly-away team for the FBIs cyberse.docxYou are a network analyst on the fly-away team for the FBIs cyberse.docx
You are a network analyst on the fly-away team for the FBIs cyberse.docxadampcarr67227
 
You are a member of the senior management staff at XYZ Corporation. .docx
You are a member of the senior management staff at XYZ Corporation. .docxYou are a member of the senior management staff at XYZ Corporation. .docx
You are a member of the senior management staff at XYZ Corporation. .docxadampcarr67227
 
You are a member of the senior hospital administration. You become a.docx
You are a member of the senior hospital administration. You become a.docxYou are a member of the senior hospital administration. You become a.docx
You are a member of the senior hospital administration. You become a.docxadampcarr67227
 
YOU ARE A MEMBER OF THE SENIOR HOSPITAL ADMINISTRATI.docx
YOU ARE A MEMBER OF THE SENIOR HOSPITAL ADMINISTRATI.docxYOU ARE A MEMBER OF THE SENIOR HOSPITAL ADMINISTRATI.docx
YOU ARE A MEMBER OF THE SENIOR HOSPITAL ADMINISTRATI.docxadampcarr67227
 
You are a member of the Human Resource Department of a medium-si.docx
You are a member of the Human Resource Department of a medium-si.docxYou are a member of the Human Resource Department of a medium-si.docx
You are a member of the Human Resource Department of a medium-si.docxadampcarr67227
 
You are a member of the American Indian tribe. Think about how your .docx
You are a member of the American Indian tribe. Think about how your .docxYou are a member of the American Indian tribe. Think about how your .docx
You are a member of the American Indian tribe. Think about how your .docxadampcarr67227
 
You are a juvenile justice consultant creating a proposal that w.docx
You are a juvenile justice consultant creating a proposal that w.docxYou are a juvenile justice consultant creating a proposal that w.docx
You are a juvenile justice consultant creating a proposal that w.docxadampcarr67227
 
You are a journalist and you have been sent off to write a story abo.docx
You are a journalist and you have been sent off to write a story abo.docxYou are a journalist and you have been sent off to write a story abo.docx
You are a journalist and you have been sent off to write a story abo.docxadampcarr67227
 
You are a juvenile court probation officer. You have a choice of.docx
You are a juvenile court probation officer. You have a choice of.docxYou are a juvenile court probation officer. You have a choice of.docx
You are a juvenile court probation officer. You have a choice of.docxadampcarr67227
 

More from adampcarr67227 (20)

You are a project manager and believe that your initiative would be .docx
You are a project manager and believe that your initiative would be .docxYou are a project manager and believe that your initiative would be .docx
You are a project manager and believe that your initiative would be .docx
 
You are a project manager at a food agricultural organization and yo.docx
You are a project manager at a food agricultural organization and yo.docxYou are a project manager at a food agricultural organization and yo.docx
You are a project manager at a food agricultural organization and yo.docx
 
You are a nursing educator and you are given an assignment to teach .docx
You are a nursing educator and you are given an assignment to teach .docxYou are a nursing educator and you are given an assignment to teach .docx
You are a nursing educator and you are given an assignment to teach .docx
 
You are a paralegal working at law office of James Adams, Esq. On No.docx
You are a paralegal working at law office of James Adams, Esq. On No.docxYou are a paralegal working at law office of James Adams, Esq. On No.docx
You are a paralegal working at law office of James Adams, Esq. On No.docx
 
you are a paralegal working at the law office of Smith & Smith. The .docx
you are a paralegal working at the law office of Smith & Smith. The .docxyou are a paralegal working at the law office of Smith & Smith. The .docx
you are a paralegal working at the law office of Smith & Smith. The .docx
 
You are a police officer who has been selected to participate in a p.docx
You are a police officer who has been selected to participate in a p.docxYou are a police officer who has been selected to participate in a p.docx
You are a police officer who has been selected to participate in a p.docx
 
You are a newly-minted, tax-paying and law-abiding, permanent res.docx
You are a newly-minted, tax-paying and law-abiding, permanent res.docxYou are a newly-minted, tax-paying and law-abiding, permanent res.docx
You are a newly-minted, tax-paying and law-abiding, permanent res.docx
 
You are a new university police chief in a medium-sized city, an.docx
You are a new university police chief in a medium-sized city, an.docxYou are a new university police chief in a medium-sized city, an.docx
You are a new university police chief in a medium-sized city, an.docx
 
You are a native speaker of French living in a mainly English speaki.docx
You are a native speaker of French living in a mainly English speaki.docxYou are a native speaker of French living in a mainly English speaki.docx
You are a native speaker of French living in a mainly English speaki.docx
 
You are a new high school teacher, and have been captured at the end.docx
You are a new high school teacher, and have been captured at the end.docxYou are a new high school teacher, and have been captured at the end.docx
You are a new high school teacher, and have been captured at the end.docx
 
You are a member of the Human Resource Department of a medium-sized .docx
You are a member of the Human Resource Department of a medium-sized .docxYou are a member of the Human Resource Department of a medium-sized .docx
You are a member of the Human Resource Department of a medium-sized .docx
 
You are a network analyst on the fly-away team for the FBIs cyberse.docx
You are a network analyst on the fly-away team for the FBIs cyberse.docxYou are a network analyst on the fly-away team for the FBIs cyberse.docx
You are a network analyst on the fly-away team for the FBIs cyberse.docx
 
You are a member of the senior management staff at XYZ Corporation. .docx
You are a member of the senior management staff at XYZ Corporation. .docxYou are a member of the senior management staff at XYZ Corporation. .docx
You are a member of the senior management staff at XYZ Corporation. .docx
 
You are a member of the senior hospital administration. You become a.docx
You are a member of the senior hospital administration. You become a.docxYou are a member of the senior hospital administration. You become a.docx
You are a member of the senior hospital administration. You become a.docx
 
YOU ARE A MEMBER OF THE SENIOR HOSPITAL ADMINISTRATI.docx
YOU ARE A MEMBER OF THE SENIOR HOSPITAL ADMINISTRATI.docxYOU ARE A MEMBER OF THE SENIOR HOSPITAL ADMINISTRATI.docx
YOU ARE A MEMBER OF THE SENIOR HOSPITAL ADMINISTRATI.docx
 
You are a member of the Human Resource Department of a medium-si.docx
You are a member of the Human Resource Department of a medium-si.docxYou are a member of the Human Resource Department of a medium-si.docx
You are a member of the Human Resource Department of a medium-si.docx
 
You are a member of the American Indian tribe. Think about how your .docx
You are a member of the American Indian tribe. Think about how your .docxYou are a member of the American Indian tribe. Think about how your .docx
You are a member of the American Indian tribe. Think about how your .docx
 
You are a juvenile justice consultant creating a proposal that w.docx
You are a juvenile justice consultant creating a proposal that w.docxYou are a juvenile justice consultant creating a proposal that w.docx
You are a juvenile justice consultant creating a proposal that w.docx
 
You are a journalist and you have been sent off to write a story abo.docx
You are a journalist and you have been sent off to write a story abo.docxYou are a journalist and you have been sent off to write a story abo.docx
You are a journalist and you have been sent off to write a story abo.docx
 
You are a juvenile court probation officer. You have a choice of.docx
You are a juvenile court probation officer. You have a choice of.docxYou are a juvenile court probation officer. You have a choice of.docx
You are a juvenile court probation officer. You have a choice of.docx
 

Recently uploaded

Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
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
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
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
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 

Recently uploaded (20)

Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
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
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
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
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 

HW_6-1build.xml Builds, tests, and runs the project HW.docx