Imagine you have been employed to build a single-page web application that manages a study plan for the Web Development module on the Creative Computing course. Use HTML and CSS to mock-up what this application would look like, without adding any interactivity. You must include:
Use the below reference image:
https://assets.ccbp.in/frontend/content/dynamic-webapps/ccbp-login-op.gif
JAVASCRIPT Code
let myFormEl = document.getElementById("myForm");
let nameEl = document.getElementById("name");
let nameErrMsgEl = document.getElementById("nameErrMsg");
let passwordEl = document.getElementById("password");
let passwordErrMsgEl = document.getElementById("passwordErrMsg");
let resultErrMsgEl = document.getElementById("resultMsg");
nameEl.addEventListener("blur", function(event) {
if (event.target.value === "") {
nameErrMsgEl.textContent = "Required*";
} else {
nameErrMsgEl.textContent = "";
}
});
passwordEl.addEventListener("blur", function(event) {
if (event.target.value === "") {
passwordErrMsgEl.textContent = "Required*";
} else {
passwordErrMsgEl.textContent = "";
}
});
Create a PHP page, with the standard HTML ,
and <body> tags.<br/><br/><br/>Save your file with the .php extension.<br/><br/><br/>Inside the <body> tag, create a PHP section and create<br/>several variables regarding on the student information example<br/>Student_FirstName, Student_MiddleName, Student_Lastname, address, course, year, and motto will show as a text in the browser.<br/>
Library Management
Build a Library Management page .
Image:https://assets.ccbp.in/frontend/content/dynamic-webapps/library-management-output-v1.gif
HTTP Requests & Responses
Background Image:
https://assets.ccbp.in/frontend/dynamic-webapps/book-search-bg.png
Example:
https://apis.ccbp.in/book-store?title=IndiaQuery ParameterValuetitleValue of the searchInput element. Example: India
It should pass test conditions:
When a value is provided in the HTML input element with id searchInput and Enter Key is pressed, an HTTP GET request should be made to the Books URL with the query parameter 'title' as the value of the searchInput element
When the HTTP GET request is successful, then the searchResults element should consist of HTML image elements with src attribute value as the value of key 'imageLink' and HTML paragraph elements with text content as the value of key 'author' from HTTP response
Library Management
In this assignment, let's build a Library Management page by applying the concepts we learned till now.
Image:https://assets.ccbp.in/frontend/content/dynamic-webapps/library-management-output-v1.gif
HTTP Requests & Responses
Example:
https://apis.ccbp.in/book-store?title=IndiaQuery ParameterValuetitleValue of the searchInput element. Example: India
It should pass test conditions:
When a value is provided in the HTML input element with id searchInput and Enter Key is pressed, an HTTP GET request should be made to the Books URL with the query parameter 'title' as the value of the searchInput element
When the HTTP GET request is successful, then the searchResults element should consist of HTML image elements with src attribute value as the value of key 'imageLink' and HTML paragraph elements with text content as the value of key 'author' from HTTP response
In this assignment, let's build a Bookmark Maker by applying the concepts we learned till now.use the
Html,css, JavaScript.
Product of array Items
given an array integers,write JS program to get the product of the integers in the given array.
input
the input will be containing single line integers.
output
the output should be single line containing the product as shown in sample outputs.
input1
[1,2,3]
output1
[1 * 2 * 3 = 6]
input2
[-1, -2, -3]
output2
[-1*-2*-3 = -6]
Note: The Output should be displayed as [1 * 2 * 3 = 6]
"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++];
}
function main() {
let integers = JSON.parse(readLine());
/* Please do not modify anything above this line */
/* Write your code here and log the output */
}
CCBP Login
The goal of this coding exam is to quickly get you off the ground with CCBP Login Page
Use the below reference image:(final output)
https://assets.ccbp.in/frontend/content/dynamic-webapps/ccbp-login-op.gif
Capital and Country
The goal of this coding exam is to quickly get you off the ground with HTML select element
Reference image:(final output)
https://assets.ccbp.in/frontend/content/dynamic-webapps/capital-and-country-op.gif
Test cases:
pass the above all test cases....
Capital and Country
The goal of this coding exam is to quickly get you off the ground with HTML select element
Use the below reference image
https://assets.ccbp.in/frontend/content/dynamic-webapps/capital-and-country-op.gif
Achieve the design with HTML, CSS, and functionality with JS
Warning
Do not delete the prefilled code in JS.
Note
HTML option element should consist of selected as an attribute for the value newDelhi by default.
Javascript:
let countries = {
paris: "France",
london: "United Kingdom",
newYork: "USA",
newDelhi: "India"
};