Personal Web Page Generator
Write a
Enter your name: Julie Taylor
Describe yourself: I am a computer science major, a member of the Jazz club, and I hope to work as a mobile app developer after I graduate.
Once the user has entered the requested input, the program should create an HTML file, containing the input, for a simple Web page. Here is an example of the HTML content, using the sample input previously shown:
<html>
<head>
</head>
<body>
<center>
<hl>Julie Taylor</hl>
</center>
<hr />
I am a computer science major, a member of the Jazz club, and I hope to work as a mobile app developer after I graduate.
<hr />
</body>
</html>
Want to see the full answer?
Check out a sample textbook solutionChapter 6 Solutions
Starting Out with Python (4th Edition)
Additional Engineering Textbook Solutions
Starting Out with Java: From Control Structures through Data Structures (4th Edition) (What's New in Computer Science)
Java: An Introduction to Problem Solving and Programming (8th Edition)
Objects First with Java: A Practical Introduction Using BlueJ (6th Edition)
Introduction to Java Programming and Data Structures, Comprehensive Version (11th Edition)
- File math.html contains a form that has to be processed with a PHP program that you will write. Perform the following tasks: 1. Show the name of your PHP program and your name in the form. 2. Replace the fixed + sign in the form with a textbox, so that the user can enter + or -. 3. Write and test a PHP program that will do the following: a. Validate that the operation in the textbox corresponds to the operation selected by the radio button in the operation radio button group. b. Validate that the operands are integers with values corresponding to the selection in the grade radio button group. c. Check that the result entered by the user is a correct integer. If so, send a message to the browser and ask for another submission of the form. If not, send to browser an error message and request resubmission of the form. d. Keep track of the number of correct and incorrect answers of the user during the session and include both in the messages that acknowledge a correct result or…arrow_forwardName SearchIn the Chap07 folder of the Student Sample Programs, you will find the followingfiles:• GirlNames.txt—This file contains a list of the 200 most popular names given to girls born in the United States from 2000 through 2009.• BoyNames.txt—This file contains a list of the 200 most popular names given to boys born in the United States from 2000 through 2009.Create an application that reads the contents of the two files into two separatearrays or Lists. The user should be able to enter a boy’s name, a girl’s name, orboth, and the application should display messages indicating whether the nameswere among the most populararrow_forwardCategory ART_AND_DESIGN Rating Reviews App Photo Editor & Candy Camera & Grid & ScrapBook Coloring book moana U Launcher Lite – FREE Live Cool Themes, Hide Apps ART_AND_DESIGN Sketch - Draw & Paint FIND SEARCH 4.1 159 The FIND function returns the position (as a number) of one text string inside another. When the text is not found, FIND ART_AND_DESIGN 3.9 967 4.7 87510 returns a #VALUE error. ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN ART_AND_DESIGN 4.5 215644 Pixel Draw - Number Art Coloring Book Paper flowers instructions 4.3 967 The SEARCH function returns the location of one text string inside another. SEARCH returns the position of the first 4.4 167 character of find_text inside within_text. Unlike FIND, SEARCH allows wildcards, and is not case-sensitive. Smoke Effect…arrow_forward
- CSC1250L Sample Exam 1 Spring 2020-2021 Write a program that prompts the user to enter the name, the number of children, and the basic salary of an employee. The program will then: Calculate the bonus: Calculate the new salary: Apply a tax of 10% and find the paid salary: The program will then display all the information nceded as shown in the sample run below Sample Run: Enter the name of the employee: Jamal Enter the number of children of the employee: 4 Enter the salary of the employee (in $: 1500 The calculated bonus is $100 for 4 children. The new salary is $1600.0 The paid salary for Jamal is $1 440.0 SONYarrow_forwardAn expression that uses data from one or more fields. * O Data type O Hyperlink O Calculatedarrow_forwardGroup 2/12 Problem – Population Create an application that predicts the approximate size of a population of organisms. The application should use textboxes to allow the user to enter the starting number of organisms, the average daily population increase (as a percentage), and the number of days the organisms will be left to multiply. Use a ListBox to display the population size for each day of the simulation. If the user clicks the Save button, save the current prediction to a file. Group 3/7 Problem – Dice Simulatorarrow_forward
- Adding Students to a Club Create an application that displays a list of student names in a ListBox. Use a second empty ListBox to represent the members of a student club. Use a button labeled Addto copy member names from the general list to the club list. Use a button labeled Remove to remove a student from the club list. Keep a running count of the number of names in the club list. The application should perform the following error-checking:• Do not permit the same person’s name to be added twice.• Avoid throwing an exception if the user clicks the Add button before having selected a student name.• Avoid a runtime error if the user clicks the Remove selected member button, without having selected a member name In "Starting out with visual basic 8th edition programming challenge 5"arrow_forwardBlock elements are normally displayed without starting a new line. * False O Truearrow_forward1. Creating Employee Data ( Page 625)Create an application that allows the user to enter the following employee data: First Name, Middle Name, Last Name, Employee Number, Department, Telephone Number, Telephone Extension, and E-mail Address. The valid values for department are Accounting, Administration, Marketing, MIS, and Sales. Once the data is entered, the user should be able to save it to a file. Figure 9-30 shows an example of the application’s form. The form shown in Figure 9-30 has a combo box for selecting the department; a Save Record button, which writes the record to a file; a Clear button, which clears the text boxes; and an Exit button. Write code in the Form_Load event handler that allows the user to enter the name of the file. If the file does not exist, a new one will be created. If the file already exists, the input data will be appended to the file. ******** Make sure to test your project by entering a new text file name, and then to confirm you are appending data to…arrow_forward
- Function for button "Publishing Date": • Name this function by your last name (for example, function yamoutl)). When the user clicks on the button "Publishing Date" (after filling all the textboxes), the current date and time will be printed after the text "Published on:" CSCI375 Grades Exam-1 (70 Exam-2 98 Project 86 Exam-3 80 Show the Grades Your Grades: Exam-1 - 78, Exam-2 - 98, Project - 85, Exam-3 - 80 Publishing Date Published on: 5/10/2021, 5:39:08 PM Change Background Colorarrow_forwardStrings and string manipulation Part A: Building upon an Existing Solution Redesign the solution in the following manner. Ask the user for their name and their email addresses before you display the results of the conversions. When the user enters their email address search the string for the @ symbol. If the symbol is not found, ask the user to re-enter their email address till they get it right. When you display the conversion output to the user, you must include the user’s name in the output. Part B: Write Something New! Write a complete and syntactically correct Python program to solve the following problem: Input a date in numeric format from the user e.g. mm/dd/yy. Examine the month entered by the user, if it is larger than 12 or smaller than 1, issue an error message and ask for input again. Perform similar validation tests for the date and year. Year must be 2015. (Any other year is invalid). In addition, the year must only be two digits long.. Once all input has been…arrow_forwardSum of Numbers in a String Create an application that lets the user enter a string containing series of numbers separated by commas. Here is an example of valid input: 7,9,10,2,18,6 The program should calculate and display the sum of all the numbers.arrow_forward
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTProgramming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage LearningMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,