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.
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
https://assets.ccbp.in/frontend/content/dynamic-webapps/ccbp-login-op.gif
Achieve the given functionality using JS
Bike Search
The goal of this coding exam is to quickly get you off the ground with HTML search input element and Bootstrap spinner
Use the below reference image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/bike-search-op.gif
Instructions
Add the id searchInput to the HTML input element
Achieve the design with HTML, CSS, and functionality with JS
Random Activity
The goal of this coding exam is to quickly get you off the ground with the DOM Manipulations.
Refer to the below image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/random-activity-output.gif
Achieve the given functionality using JS.
Keyboard Events
The goal of this coding exam is to quickly get you off the ground with Keydown event
Use the below reference image
https://assets.ccbp.in/frontend/content/dynamic-webapps/keyboard-event-op.gif
Achieve the given functionality using JS
Favourite Place
The goal of this coding exam is to quickly get you off the ground with HTML radio input elements
Use the below reference image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/favourite-place-op.gif
Achieve the design with HTML, CSS, and functionality with JS
Note
All syntaxes of Event Listeners
The goal of this coding exam is to quickly get you off the ground with All Syntaxes Of Event Listeners
Use the below reference image.
https://assets.ccbp.in/frontend/content/dynamic-webapps/all-syntaxes-of-event-listeners-op.gif
Achieve the given functionality using JS
Showing loading text with setTimeout
The goal of this coding exam is to quickly get you off the ground with the setTimeout.
Refer to the below image.
https://assets.ccbp.in/frontend/content/react-js/showing-loading-text-with-setTimeout-op.gif
Achieve the given functionality using JS.
When the HTML button element is clicked
HTML
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div class="text-center">
<button id="button" class="button" >
Show Loading for 1 sec
</button>
</div>
</body>
</html>
Hourly Stop Watch
The goal of this coding exam is to quickly get you off the ground with the clearInterval and setInterval.
Refer to the below image.
https://assets.ccbp.in/frontend/content/react-js/hourly-stop-watch-op.gif
Achieve the given functionality using JS.
The timer should be initiated at 0.
Note
This is a one hour timer. The maximum time is one hour.
Clear Interval
The goal of this coding exam is to quickly get you off the ground with the clearInterval.
Refer to the below image.
https://assets.ccbp.in/frontend/content/react-js/clear-interval-op.gif
Achieve the given functionality using JS.
HTML
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div class="text-center">
<p id="counter" class="paragraph">0</p>
<button id="clearCount" class="clear-interval-button">Clear Interval</button>
</div>
</body>
</html>
CSS
.clear-interval-button {
border-radius: 10px;
margin-top: 10px;
padding: 15px;
background-color: #0275d8;
color: white;
border: none;
outline: none !important;
}
.paragraph {
font-size: 50px;
}