tutorbin

web designing and development homework help

Boost your journey with 24/7 access to skilled experts, offering unmatched web designing and development homework help

tutorbin

Trusted by 1.1 M+ Happy Students

Recently Asked web designing and development Questions

Expert help when you need it
  • Q1:A React Project to develop a web application in which Customer can login into the System (no need to implement login module) and in his Nav bar he/She has Reserve Table button. Once the customer clicks on that button a Page will appear which gives access to the customer to reserve a table. The Page should look like,See Answer
  • Q2:Overview : "Russel Street Medical" is a website are happy with your work and want you to continue developing their website. UPDATE ONE (Page 2): To bypass client-side validation, include this submit button in your forms: <button formnovalidate>Submit without validation</button> UPDATE TWO (Page 1): Clarifications regarding the administration.php page: 1. It should be accessible by all website visitors and display a log in form by default. 2. Only logged in users (ie authorised staff) should see bookings and an "add administrator" facility. Website Expansion and Code Practice: You will need to create more PHP files: • tools.php: a file that contains functions common to all pages and to reduce webpage clutter. • administration.php: a webpage that shows a login screen to all users by default and administration information to authorised users, eg patient booking requests and an add user facility. • appointments.txt: a spreadsheet that you will write to using fputcsv () and read from using fgetcsv (). • accessattempts.txt: a spreadsheet that you will write to using fputcsv () • users.txt: a spreadsheet that you will write to using fputcsv () and read from using fgetcsv ().See Answer
  • Q3:✓ Details • This phase involves the development/implementation of the Blog using WordPress and using React. • Refer to your project document for any additional instructions to be followed. See Answer
  • Q4:Topic: Website for Artificial Intelligence (Al) to introduce Al technologies, Al jobs and Al companies. Tasks: Design and implement a responsive website for Al using the following: 1. ASP.NET Core Web App (Model-View-Controller) template in Visual Studio 2022 (Community, Mac or Code). Language: C#. 2. HTML5, CSS3, Bootstrap and media query for responsive web design. 3. JavaScript and jQuery for interactive website. 4. PyScript for displaying table and diagrams from a .CSV data file using Python.See Answer
  • Q5: React Web application A React Web application in which Customer visits the website and post a review. Here its the restaurant website, when customer visits the restaurant website (No need to implement login module). He/she see the post a Review navbar. When I click on post a Review button, the in which customer can leave a review button in Review page opens about restaurant. The review is mostly like Google review, but here for posting a review, the form should ask name, number of stars (1 to 5), and description of review and finally image. Aftes these 4 values after Should be Posted page. Like that how many Reviews one above the other. giving the review review button form without refreshing. I give all should a be posted The page looks likes this. clicking Clicking Submit well below theSee Answer
  • Q6:Assignment 2 Web Design and Programming Step 1: User and Role Step 2: Entity Framework Step 3: Customising 5 files in Companies folder Step 4: Customising 2 files in Home folder Step 5: Designing 2 files in Home folderSee Answer
  • Q7:Writing a Server Application Tasks In this task you are asked to demonstrate how a web server can be coded to serve dynamic pages. Specifically, the server application is to provide a page that displays if the visitor is a Winner of a Competition or not. The selection of a win/no-win can be based on a simple random number selection (i.e., 1 in 3 chance). This page is to be served through a defined web address (or route) such as http://localhost: 3000/competition. Follow the steps below to complete this task: 1. Create your own local directory (or you can use the same local directory created in Task 8.1). 2. Use express module to create a Node.js application (i.e., using the index.js from your Task 8.1 or creating a new expressserver.js) that will set a local web server. The server listens to the port 3000. 3. Modify your index.js (or expressServer.js) file to: o remove the hardcoded response for the GET on the route (as done in Task 8.1P) and change it to serve pages form the public_html folder, as done in previous weeks (sample of this code is shown in the snippet below) o add a route handler for a GET request on /competition. This would enable access to http://localhost: 3000/competition using a web browser. The handler for this route would then choose a random number (say out of 3) and if it equals 3 then display a 'win', otherwise display a 'no win' message. These messages, along with a statistics (tally) of wins & losses, should be provided a new webpage. 4. Run the command node. (to run the index.js) or node expressServer.js in a Command Prompt (Windows) or Terminal (Mac OS) within your local directory to make the server work. 5. Use the provided index.html file to access your newly created /competition route handler (or access it directly through http://localhost: 3000/competition), the Home page should appear like this:See Answer
  • Q8:7.1P: String Objects Tasks In this task you will be exploring the Javascript built-in String Object, along with some of its common methods for doing useful work. To complete this task, you are asked to create a simple form that obtains from the user three inputs (an input string, a substring, and index value). Your code should then, based on this input, provide the output from various string object operations. The actual layout/design of the web page is left up to you, but an example of one that can be used for reference is shown below: What will you submit? You should submit: • Screen-shot of the web page with valid input and substring. • Screen-shot of the web page with valid input and non-existent substring. • Your HTML file. • Your JavaScript file.See Answer
  • Q9:7.2P: Event Handler and Dynamic Page Tasks You are required to complete the following tasks using JavaScript: 1. Prompt the user to enter their name into a text box (e.g., Michael). 2. Include a Button object that when clicked modifies the content of the page to display an appropriate greeting message. o The current time of day should be used to personalise the message, for example, Good Morning, Good Day, Good Afternoon, or Good Evening) along with the input name (e.g., "Good Morning Michael") based on the hour of the day. • Also include the time and date, showing the number of hours and minutes into the day, along with the day of the week, date, month and year; as shown below. 3. Implement the onmouseover event handler for the welcome message paragraph to change the style of the welcome paragraph (background colour to yellow). 4. Implement onmouseout effects to change the style of a paragraph back to its original background colour. What will you submit? You should submit: • HTML file with Javascript code. • Screen-shot of the web page showing the output for Step 1. • Screen-shot of the web page showing the output for Step 2. • Screen-shot of the web page showing the output for Step 3. • Screen-shot of the web page showing the output for Step 4.See Answer
  • Q10:Web, mobile and cloud technologies Assignment description Develop a web-based project to maintain security groups and their members in order to apply system security policy. The system user could sign in as an employee, or system administrator.See Answer
  • Q11:Web, mobile and cloud technologies Assignment description Develop a web-based project to maintain security groups and their members in order to apply system security policy. The system user could sign in as an employee, or system administrator.See Answer
  • Q12:User Validation by Using Database Tasks In this task you are required to implement a NodeJS server that stores user details in a database for the (fictitious) Deakin Chess Club. As part of this task you will need to implement a simple Login page. Here the data pasted from the login page can be validated against the data stored in the database on the server.See Answer
  • Q13:Server Database for Website Project Task In this task, you are required to create a web server that implements a simple Comments Server, with an interface to a simple database (file) and accepts requests from a user (client browser). These requests include a GET to display the contents of the database, and a POST to store a new record in the database. The database structure (schema) should support a record with the following fields:See Answer
  • Q14:Demonstrate skills/techniques learned from earlier assignments. Demonstrate the use of the Object.keys() method to get the ids from the object. Demonstrate using the keys of an object and a "for of" loop to read each record in the object. Demonstrate the use of querySelector to read a node from the DOM. Demonstrate creating new DOM nodes using createElement() and adding them to a DOM fragment using appendChild(). Demonstrate adding the DOM fragment to the DOM.See Answer
  • Q15:Part 1: apiRequest First, you will implement apiRequest, a small wrapper function around fetch() that will simplify making API requests. Setup: Accessing the API You will be sending requests to an API running on our server. To get started, go to our API setup page, where you will be given a personalized API URL. This allows you to make edits to your own database, without conflicting with others. Write this URL into js/apirequest.js, and be sure that all requests you make to our server begin with that URL.See Answer
  • Q16:Part 2: User class Next, you will implement a User class, a data model that represents a user in our social media app. Open the API specification, which describes all of the endpoints the API supports. You will probably want to keep this page open as a reference while implementing the class.See Answer
  • Q17:Part 3: App class Your final task is to incorpate the User class you've written into the app. index.html and css/index.css have been written for you, and your code must work with the HTML provided. We have started the implementation of the App class in js/app.js. Here are the parts of the app we have written already: • The "List Users" button is fully hooked up. Once your apiRequest function is working, it should be functional, displaying a list of users in your database in an alert. • The _loadProfile helper method has been started. It fills in the user ID in the sidebar and the parts of the new post form, as well as wiping out the current feed. • The _displayPost helper method is complete. It takes a Post instance and adds it to the feed.See Answer
  • Q18:Moe's score is 20 Curly's score is 40 Section 4: Derived Class Results: Baseball scoring The scores for Cubs vs Braves: Cubs's score is 2 Braves's score is 3 The current inning is 1.5 Outs: 1 Strikes: 2 Fouls: 3 Balls: 1 Directions for Submitting Your Assessment The source code file is the file in your project that contains the code you wrote. You will only need to submit the source code file for your program and not the entire project folder or any additional project files. Below are listed the file extensions for the source code file for each language: .cs file for C# java file for Java .php and .js files for Web Development Naming Your Project and Source Code File While you can change your file name later, it will be simpler with less chance of confusion if you name your new project and code file with the following naming convention when you create it. The code files should be saved as: IT232_YourLastName_M5. The source code file and the project name can be the same./nSection 4: 1. Enter the comment with the section title as described above. 2. Write code to test the sub-class. This can be done multiple ways and should be when thoroughly testing your code. However, for this Assessment's output, we will use the following method: a. Print "Section 4: Derived Class Results: Baseball scoring" to the console followed by a blank line. b. Instantiate an object called gameTwo, from the baseball class, passing "Cubs" and "Braves" as the teams, (or teams of your choosing), to the constructor. (Note: If you choose to use different team names, be sure you substitute them below for 'Cubs' or 'Braves'. c. The following method calls should be done in order to guarantee the correct results. i. ii. iii. iv. V. vi. vii. viii. ix. Call the addScore() method to advance the Cubs' score by 2. Call the advOuts() method three times. Call the addScore() method to advance the Braves' score by 3. Call the advOuts() method once. Call the advStrikes() method once. Call the advFouls() method thrice. Call the advBalls() method once. Call the listAllScores() method to print the game and scores. Also, print a blank line to the console. Use the appropriate get methods to print the current inning, outs, strikes, fouls, and balls. EXPECTED OUTPUT Assessment 10 - Classes and Inheritance Section 3: Base Class Results After Adding The scores for Canasta: Larry's score is 20 Moe's score is 35 Curly's score is 45 Section 3: Base Class Results After Subtracting The scores for Canasta: Larry's score is 20/ng. Include a public method, advFouls(), to add one to the number of fouls. If the number of strikes is less than 2, advFouls() should also add one to strikes. i. h. Include a public method, getFouls(), to return the current number of fouls. Include a public method, advBalls(), to add one to the number of balls. If the number of balls reaches 4, reset balls, strikes and fouls. (This means the player has been given a walk to first base but does not guarantee and runs were scored. k. j. Include a public method, getBalls(), to return the current number of balls. Include a public method, getInning(), to return the current inning. Include two constructors. The first one is a default constructor. The second is a constructor method which will accept the name of the home team followed by the name of the visiting team. It will then call the setGame() and pass it a combined name such as "Cubs vs Braves". It will also call the addName() method to add the two teams to the players property. I. Section 3: 1. Enter the comment with the section title as described above. 2. Write code to test the base class. This can be done multiple ways and should be when throughly testing your code. However, for this Assessment's output, we will use the following method: a. Print to the console the message, "Assessment 10 - Classes and Inheritance" followed by a blank line. b. Print "Section 3: Base Class Results After Adding" to the console followed by a blank line. c. Instantiate an object called gameOne, from the scoreKeeper class, passing "Canasta" as the game name to the constructor. d. Call the addName() method three times to add the players, "Larry", "Moe", and "Curly". e. Print a blank line to the console for ease of reading. f. Call the object's addScore() method three times. Once for Larry adding 20 points to his score. A second time for Moe adding 35 points to Curly's score. Then a third time for Curly, adding 45 points to Curly's score. g. Using the listAllScores() method, print a report of the players and their respective scores to the console. h. Call the object's subScore() method twice. Once for Moe subtracting 15 points from his score. The second time, subtract 5 points from Curly's score. i. Print "Section 3: Base Class Results After Subtracting" to the console followed by a blank line j. Using the listAllScores() method, print a report of the players and their respective scores to the console. k. Print two blank lines to the console./n2. Create a base class called scoreKeeper. a. Include a private property called gamePlayed to contain the name of the game being played. b. Add a private property which will allow for any number of players. A dictionary or dynamic array would be a good option. The container will hold the names and scores of the players. c. Include a new public method, addName(), to accept a player's name and insert it into the container. (Note: If the container you used does not have an add method to easily add a value, you will need to include code to determine the next available position.) d. e. f. g. h. Include a public method, subScore(), to update a player's score by passing it the player's name and the points to be subtracted. Return the updated score. Include a new public method, listAllScores(), to print the name of the game being played, the names of each player and their respective scores. j. Include two constructors. The first one is a default constructor. The second is a constructor method which will accept the name of the game and call the set Game(). i. Include a public method, getPlayerName(), to accept the number of the player and return the player's name. Include a public method setGame() to update the gamePlayed property by passing it a string containing the name of the game. Include a public method getGame() to retrieve the name of the game. Include a public method, addScore(), to update a player's score by passing it the player's name and the points to be added. Return the updated score. Section 2: 1. Enter the comment with the section title as described above. 2. Some games have additional information that must be monitored during play. Create a sub-class called baseball that inherits from the base class scoreKeeper. a. Add private integer properties for fouls, balls, strikes, and outs. b. Add a private decimal property to hold the inning number. Whole numbers will indicate the top of the inning and half numbers will indicate the bottom. e.g. 5.5 would indicate the bottom of the 5th c. Include a public method, advOuts(), to add 1 to the number of outs. If the number of outs reaches 3, reset balls, strikes, fouls and outs to 0 and add .5 to innings. d. Include a public method, getOuts(), to return the current number of outs. e. Include a public method, advStrikes(), to add 1 to the number of strikes. If the number of strikes reaches 3, call advOuts(). f. Include a public method, getStrikes(), to return the current number of strikes./nThis Competency Assessment assesses the following outcome(s): Course Outcome practiced in this assessment: IT232M5: Examine object-oriented programming concepts. Purpose The purpose of this assessment is to provide you with an opportunity to demonstrate knowledge of creating classes, instantiating objects from those classes, and expanding the functionality of a class through inheritance. Assessment Instructions In this scenario, your group has been tasked with creating a score keeping program for games. You have been assigned to create and test the classes necessary. You will create a single, console program with multiple sections. In it, you will create a base class and an inherited class. Then you will write code to instantiate objects from each class and test their functionality. Please keep in mind that with all the Assessments in this course, any given scenarios are hypothetical and intended solely to demonstrate specific skills. Challenge: Once you have created the following console program and tested it to make sure all of its specifications work, why not go back and try creating a GUI to use the derived class? (This challenge does not count as part of your assessment grade and is not required.) Assessment Requirements Note: If your language of choice is Web Development, you will need to complete the exercises in both PHP and JavaScript. Using the language in which you have chosen to focus: C#, Java, Web Development languages (PHP and JavaScript), please complete the following Assessment: The program for this Assessment will consist of four sections, each headed by the three-line comment below: //************* *** //**** Assessment 5 Section X //******* (where X stands for the portion of the Assessment to follow.) Section 1: ********* 1. Enter the comment with the section title as described above.See Answer
  • Q19:LAMP Exercise In this lab, you will develop a student database and an interface to communicate with this database. Create a database and a table = student_grades • Create an html interface that you can insert a new record, delete a record and display the whole table When you record a new student, you should ask the student name, midterm exam 1, midterm exam 2, and final exam scores • When you display the records, you should display the students name and their average scores = (midterm exam 1 + midterm exam 2 + 2*final exam) / 4 You will use CGI Programming syntax that you have learned in the lecture. To connect the database check exercise 1. • To create a communication between .html file and .py file, check exercise 2 and 3 * Submit your project files to GitHub **Submit your project screen shot, ICF and Github link to CanvasSee Answer
  • Q20:Instructions User Stories: index.html Responsive Web Design styles.css 1. Your tribute page should have a main element with a corresponding id of main, which contains all other elements 2. You should see an element with an id of title which contains a string (i.e. text), that describes the subject of the tribute page (e.g. "Dr. Norman Borlaug") 3. You should see either a figure or a div element with an id of img-div 4. Within the #img-div element, you should see an img element with a corresponding id="image" 5. Within the #img-div element, you should see an element with a corresponding id="img-caption" that contains textual content describing the image shown in #img-div 6. You should see an element with a corresponding id="tribute-info", which contains textual content describing the subject of the tribute page 7. You should see an a element with a corresponding id="tribute-link" which links to an outside site, that contains additional information about the subject of the tribute page. HINT: You must give your element an attribute of target and set it to _blank in order for your link to open in a new tab 8. Your #image should use max-width and height|/nResponsive Web Design Instructions index.html styles.css element with a corresponding | id="img-caption" | that contains textual content describing the image shown in #img-div 6. You should see an element with a corresponding |id="tribute-info", which contains textual content describing the subject of the tribute page 7. You should see an a element with a corresponding id="tribute-link", which links to an outside site, that contains additional information about the subject of the tribute page. HINT: You must give your element an attribute of target and set it to _blank in order for your link to open in a new tab 8. Your #image should use max-width and height properties to resize responsively, relative to the width of its parent element, without exceeding its original size 9. Your img element should be centered within its parent element Fulfill the user stories and pass all the tests below to complete this project. Give it your own personal style. Happy Coding! Note: Be sure to add <link rel="stylesheet" href="styles.css"> in your HTML to link your stylesheet and apply your CSSSee Answer

TutorBin Testimonials

I got my Web Designing And Development homework done on time. My assignment is proofread and edited by professionals. Got zero plagiarism as experts developed my assignment from scratch. Feel relieved and super excited.

Joey Dip

I found TutorBin Web Designing And Development homework help when I was struggling with complex concepts. Experts provided step-wise explanations and examples to help me understand concepts clearly.

Rick Jordon

TutorBin experts resolve your doubts without making you wait for long. Their experts are responsive & available 24/7 whenever you need Web Designing And Development subject guidance.

Andrea Jacobs

I trust TutorBin for assisting me in completing Web Designing And Development assignments with quality and 100% accuracy. Experts are polite, listen to my problems, and have extensive experience in their domain.

Lilian King

I got my Web Designing And Development homework done on time. My assignment is proofread and edited by professionals. Got zero plagiarism as experts developed my assignment from scratch. Feel relieved and super excited.

Joey Dip

I found TutorBin Web Designing And Development homework help when I was struggling with complex concepts. Experts provided step-wise explanations and examples to help me understand concepts clearly.

Rick Jordon

TutorBin helping students around the globe

TutorBin believes that distance should never be a barrier to learning. Over 500000+ orders and 100000+ happy customers explain TutorBin has become the name that keeps learning fun in the UK, USA, Canada, Australia, Singapore, and UAE.