Speed Typing Test
Please Refer to the below image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/speed-typing-test-output.gif
I want an exact output as in this Image link with proofs & use bootstrap 4.5
Instructions:
Clock Image:
Html,Css,Javascript program for Bookmark Maker
Please Refer to this below image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/bookmark-maker-output.gif
I want an exact output as in this Image link with proofs & use bootstrap 4.5
Instructions:
Warning
Html,Css & javascript program for Time Converter
Please Refer to this below image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/time-converter-output.gif
I want an exact output as in this image link with proof and use bootstrap 4.5
Instructions:
Note
Search Item in a Mart Given an array
mart of objects in the prefilled code and categoryOfItem, item as inputs, create a JS promise,
resolve with "Item Found" text, if the
categoryOfItem matches with the category and the corresponding items list includes the item
reject with "Category Not Found" text, if the
categoryOfItem does not match with any catergory in the mart
reject with "Item Not Found" text, if the
items list does not include item
Use async/await and try/catch blocks.
Quick Tip
You can use array methods find() and includes().
Input
The first line of input contains a string categoryOfItem
The second line of input contains a number item
Sample Input 1
pulses
green gram
Sample Output 1
Item Found
function main() {
const categoryOfItem = readLine();
const item = readLine();
const mart = [
{
category:"pulses",
items: ["green gram", "green peas", "Turkish gram"]
},
}
//Add a function in the event listener that post the LATlng to a python file
function initMap() {
const myLatlng = { lat: -33., lng: 18 };
const map = new google.maps.Map(document.getElementById("map"), {
zoom: 4,
center: myLatlng,
});
// Create the initial InfoWindow.
let infoWindow = new google.maps.InfoWindow({
content: "Click the map to get Lat/Lng!",
position: myLatlng,
});
infoWindow.open(map);
// Configure the click listener.
map.addListener("click", (mapsMouseEvent) => {
// Close the current InfoWindow.
infoWindow.close();
// Create a new InfoWindow.
infoWindow = new google.maps.InfoWindow({
position: mapsMouseEvent.latLng,
});
infoWindow.setContent(
JSON.stringify(mapsMouseEvent.latLng.toJSON(), null, 2)
);
infoWindow.open(map);
});
}
Write a program that asks the user to enter a number between 1 and 100 in a form. If the
number is less than 10, display “That’s really small.” If it’s between 10 and 50, say “not too big.”
If it’s more than 50, display “That’s a big one!”
Time Converter
Refer to the below image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/time-converter-output.gif
Instructions:
Quick Tip
Note
Use this Background image:
Book Search
In this assignment, let's build a Book Search page by applying the concepts we learned till now.
Refer to the below image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/book_search_output.gif
Instructions:
Use this Background image:
https://assets.ccbp.in/frontend/dynamic-webapps/book-search-bg.png
Speed Typing Test
In this assignment, let's build a Speed Typing Test using Html,Css, Javascript
Refer to the below image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/speed-typing-test-output.gif
Instructions:
Clock Image: