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
HTML
<!DOCTYPE html>
<html>
<head></head>
<body>
Your code
</body>
</html>
Instructions
Achieve the design with HTML, CSS, and functionality with JS
Create an HTML & CSS quick-reference guide that covers all of the tags we've covered so far (and a few extras) with a description of how to use them and code examples.
Create a new index.html file and include the following:
Nature View
The goal of this coding exam is to quickly get you off the ground with the media feature orientation with different values
Refer to the below images
In portrait mode
https://assets.ccbp.in/frontend/content/intermediate-rwd/nature-view-op-portrait.png
In landscape mode
https://assets.ccbp.in/frontend/content/intermediate-rwd/nature-view-op-landscape.png
Use the image URL given below.
Responsive Header
Refer to the below images
Extra Small (Size < 576px), Small (767 >= 576px):
https://assets.ccbp.in/frontend/content/intermediate-rwd/responsive-header-op-mobile-v2.png
Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px):
https://assets.ccbp.in/frontend/content/intermediate-rwd/responsive-header-op-desktop.png
Use the image URLs given below.
Responsive Layout
Refer to the below image
Extra Small (Size < 576px), Small (Size >= 576px):
https://assets.ccbp.in/frontend/content/intermediate-rwd/responsive-layout-op-mobile.png
Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px):
https://assets.ccbp.in/frontend/content/intermediate-rwd/responsive-layout-op-desktop.png
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
HTML
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div class="text-center">
<p class="message-text" id="message"></p>
<button onclick="inlineEventListener()" class="btn-primary mb-3">
Button with Inline event listener
</button>
<button id="onEventListenerBtn" class="btn-secondary mb-3">
Button with onevent listener
</button>
<button id="addEventListenerBtn" class="btn-warning mb-3">
Button with addEventListener
</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
HTML
<!DOCTYPE html>
<html>
<head></head>
<body>
<div class="text-center">
<p class="timer">
<span id="minutes">00</span>:<span id="seconds">00</span>
</p>
<button class="bg-start-button button" id="startBtn">
Start
</button>
<button class="bg-stop-button button" id="stopBtn">
Stop
</button>
</div>
</body>
</html>
Remove Item in Local Storage
The goal of this coding exam is to quickly get you off the ground with
Remove Item In Localstorge
Use the below reference image
https://assets.ccbp.in/frontend/content/dynamic-webapps/removeItem-in-localStorage-op.gif
HTML
<!DOCTYPE html>
<html>
<head></head>
<body>
<div class="display-username text-center">
<p>Hello, <span id="name">Varun</span>!</p>
<p>Update your Name</p>
<input id="inputValue" placeholder="Write your name here" />
<br />
<button class="btn-primary save-button" id="saveBtn">
Save to Local Storage
</button>
<button class="btn-secondary reset-button" id="resetBtn">Reset</button>
</div>
</body>
</html>
a) Give a brief overview of the evolution of the Intel X86 architecture from its introduction in 1978 up to these
day.
[20]
b) What is an embedded system and provide two examples (Briefly describe the examples) [05]
c) Explain the reasons why technology keeps of changing rapidly.
[10]
d) Based on your research, do you believe that in the next coming century, the world will be ruled by robots and why. [10]