Hardware is the answer.
Software is not really tangible
Operating system is software
Input is not truly 'physical'
Answer:
Direct plagiarism- the word-for-word transcription of a section of someone else’s work, without attribution and without quotation marks
Self-plagiarism- when a student submits his or her own previous work, or mixes parts of previous works, without permission from all professors involved
Mosaic Plagiarism- when a student borrows phrases from a source without using quotation marks, or finds synonyms for the author’s language while keeping to the same general structure and meaning of the original
You need a sd card so you can store it and use it later
Something like the following. Also you need to give what language you are using. Anyways, you should be able to convert this to your language of choice.
<script type="text/javascript">
function checkGeneration() {
var gen = ["Baby Boomer ","Generation X","Xennials","Generation Y"];
var reversestr = "";
var getyear = window.prompt("Enter a 3 digit number: ");
if (parseInt(getyear) <= 1964) {
alert(gen[0]);
} else if(parseInt(getyear) <= 1979) {
alert(gen[1]);
} else if(parseInt(getyear) <= 1985) {
alert(gen[2]);
} else if(parseInt(getyear) <= 1995) {
alert(gen[3]);
}
}
checkGeneration();
</script>