subject
Computers and Technology, 16.07.2021 03:30 AM28

* USE WINDOWS TERMINAL MODE COMMANDS ONLY * * USE ANY EDITOR TO CREATE THE FOLLOWING PROGRAM * 4 - Worth 1.00 points. - Using Windows terminal commands, create a Windows batch file named: 3.bat - Using a Windows editor, append the following data to your *.bat file USING MULTI-LINE COMMENTS (labels, goto) or single line comments: Author : Your Name Course : OS section. Example OS1, OS2 OS3, OS4 Professor : Michael Robinson Program # : Number and program Purpose/Description { A brief description of the program } Due Date : MM/DD/ Certification: I hereby certify that this work is my own and none of it is the work of any other person. /5) Worth 4 points. Using Windows batch Scripting. topic: Creating and using the variables FirstNumber and SecondNumber, Implement division by 0, with error trapping, using if and sumilating while loops Using the NOTEPAD editor, append to your *.bat file, all the commands needed so that when you execute your bat file, it will produce the following: How:a) using ANY Windows editor, append to your .bat file commands that will do the following:b) Append your name and CURRENT running date and time to a NEW file called results. txt "CURRENT running date" means, when the program is executed the CURRENT running time will be appended to your results. txt filec) Using the variables: FirstNumber and SecondNumber, use a while loop. d) Ask the user to enter the FirstNumber. e) If the user enters the value 66 for this FirstNumber, you must exit THIS Linux Shell Scripting SECTION immediately. f) Ask the user to enter the SecondNumber. g) If the user enters the value 33 for this SecondNumber, you must exit THIS Linux Shell Scripting SECTION immediately. h) If the SecondNumber is ZERO inform the user that you CAN NOT divide by ZERO, and ask for a correct SecondNumber only, KEEPING YOUR FirstNumber. i) If the SecondNumber is NOT a zero, divide FirstNumber by SecondNumber then display all numbers on this computation using labels, and append all numbers on this computation using labels to the results. txt file. example: 4 divided by 1 = 4Rename your *bat file to *baUpload your Windows *ba program to canvas. fiu. edu and bring a printed and STAPLED copy of this program on the due date.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 04:30
Ryan is working on the layout of her web page. she needs to figure out where her header, navigation bar, text, and images should go. what technique can her?
Answers: 1
question
Computers and Technology, 22.06.2019 23:30
Select all that apply. which of the following are proofreading options included in microsoft word? spell check find replace grammar check formatting check
Answers: 1
question
Computers and Technology, 23.06.2019 01:40
Writing a modular program in visual c++. i am new to this and not sure what i am missing. i am getting the following error: baddate.cpp: in function ‘int main()’: baddate.cpp: 50: 3: error: ‘else’ without a previous ‘if’elsehere are the instructions and code: writing a modular program in c++in this lab, you add the input and output statements to a partially completed c++ program. when completed, the user should be able to enter a year, a month, and a day. the program then determines if the date is valid. valid years are those that are greater than 0, valid months include the values 1 through 12, and valid days include the values 1 through 31.notice that variables have been declared for you.write the simulated housekeeping() function that contains the prompts and input statements to retrieve a year, a month, and a day from the user.include the output statements in the simulated endofjob() function. the format of the output is as follows: month/day/year is a valid date.ormonth/day/year is an invalid date.execute the program entering the following date: month = 5, day = 32, year = 2014. record the output of this program.execute the program entering the following date: month = 9, day = 21, year = 2002. record the output of this /* program name: baddate.cppfunction: this program determines if a date entered by the user is valid.input: interactiveoutput: valid date is printed or user is alerted that an invalid date was entered*/#include bool validatedate(int, int, int); using namespace std; int main(){// declare variablesint year; int month; int day; const int min_year = 0, min_month = 1, max_month = 12, min_day = 1, max_day = 31; bool validdate = true; // this is the work of the housekeeping() method// get the year, then the month, then the daycout< < "enter the year"< > year; cout< < "enter the month"< > month; cout< < "enter the day"< > day; // this is the work of the detailloop() method// check to be sure date is validif(year < = min_year) // invalid yearvaliddate = false; else if (month < min_month || month > max_month) // invalid monthvaliddate = false; else if (day < min_day || day > max_day) // invalid dayvaliddate = false; // this is the work of the endofjob() method// test to see if date is valid and output date and whether it is valid or notif(validdate == true); {// output statementcout<
Answers: 1
question
Computers and Technology, 23.06.2019 12:10
2. fabulously fit offers memberships for$35 per month plus a $50 enrollmentfee. the fitness studio offersmemberships for $40 per month plus a$35 enrollment fee. in how many monthswill the fitness clubs cost the same? what will the cost be?
Answers: 1
You know the right answer?
* USE WINDOWS TERMINAL MODE COMMANDS ONLY * * USE ANY EDITOR TO CREATE THE FOLLOWING PROGRAM * 4 -...
Questions
question
Mathematics, 11.03.2020 04:28