HTML/JavaScript Web Application Answers

Questions: 680

Answers by our Experts: 648

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Write a PHP program which will ask the user to key a paragraph or sentence. Then it will help the user to count the character that specified by the user.

Example:

Enter your paragraph:

What character you wish to search ?:

How many character in the sentence ?:


Write a PHP program which will ask the user to key a paragraph or sentence. Then it will help the user to count the character that specified by the user.


In this assignment, let's build a Yoga page by applying the concepts we learned till now. You can use the Bootstrap concepts and CCBP UI Kit as well.




5.create a registration form and display the details in the other PHP page.

 

Create a mock registration form for an online retail web site. the form should output the appropriately formatted contents of a valid form and thank the user for submitting. An invalid form should be returned to the user indicating the problems with the submitted data.

Username-max15 char, letters and number only

Password – minimum length 4 char

Email – valid email structure

Date of birth – a customer should be at least 18 years of age

Name- maximum 50 char

Acceptance of terns & conditions

Their choice regarding email promotions to be received if an email address was given



Your organization where you work has won different contracts after responding to Request For Proposals on multimedia projects that involve the designing of websites. These websites should have 4 web pages. 


1)Nkomazi Swing Bungee (NSB is an organization that offer bungee to tourists).


1.1) Develop the website that you chosen and Your website should be developed using the following:

 HTML.

CSS for web styling (use external or internal CSS).

The website should have a table, ordered list, unordered list.




a. Using a while loop, write a program to calculate and print the sum of a given

number of squares. For example, if 5 is input, then the program will print 55, which

equals 1^2 + 2^2 + 3^2 + 4^2 + 5^2.

b. Reimplement this program using a for loop


 Write a program that prints the ASCII character codes for the upper case and lower-case

vowels. Hint: ASCII codes for A, E, I, O, U, a, e, i, o, u are required here


a. Using a while loop, write a program to calculate and print the sum of a given

number of squares. For example, if 5 is input, then the program will print 55, which

equals 12 + 22 + 32 + 42 + 52.

b. Reimplement this program using a for loop.


Write a program that requests the user’s language and then prints a greeting in that language. You must include at least five different languages.


Given an array myArray of numbers, write a function to square the alternate numbers of the myArray, starting from index 0 using the array method map.

Sample Input 1

[ 1, 2, 3, 4, 5 ]

Sample Output 1

[ 1, 2, 9, 4, 25 ]

Sample Input 2

[ 2, 4 ]

Sample Output 2

[ 4, 4 ]

"use strict";


process.stdin.resume();

process.stdin.setEncoding("utf-8");


let inputString = "";

let currentLine = 0;


process.stdin.on("data", (inputStdin) => {

 inputString += inputStdin;

});


process.stdin.on("end", (_) => {

 inputString = inputString.trim().split("\n").map((str) => str.trim());

 main();

});


function readLine() {

 return inputString[currentLine++];

}


/* Please do not modify anything above this line */


function main() {

 const myArray = JSON.parse(readLine());

  

 /* Write your code here */

}





LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS