-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretro.html
85 lines (85 loc) · 5.21 KB
/
retro.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<title>Simple HTML Elements</title>
<link rel="stylesheet" href="retro.css"/>
</head>
<body>
<br>
<div class="intro">
<strong>Welcome to a Simple HTML Webpage</strong>
</div>
<br>
<br>
<div class="about">
<strong>About Quantum Computing</strong>
</div>
<br>
<br>
<div class="content">
<div class="head">
<h3>Quantum computer, device that employs properties described by quantum mechanics to enhance computations.</h3>
</div>
<br>
<p>At small scales, physical matter exhibits properties of both particles and waves, and quantum computing leverages this behavior, specifically quantum superposition and entanglement, using specialized hardware that supports the preparation and manipulation of quantum states.
</p>
<p>As early as 1959 the American physicist and Nobel laureate Richard Feynman noted that, as electronic components begin to reach microscopic scales, effects predicted by quantum mechanics occur—which, he suggested, might be exploited in the design of more powerful computers. In particular, quantum researchers hope to harness a phenomenon known as superposition. In the quantum mechanical world, objects do not necessarily have clearly defined states, as demonstrated by the famous experiment in which a single photon of light passing through a screen with two small slits will produce a wavelike interference pattern, or superposition of all available paths.</p>
<p>Classical physics cannot explain the operation of these quantum devices, and a scalable quantum computer could perform some calculations exponentially faster than any modern "classical" computer. In particular, a large-scale quantum computer could break widely used encryption schemes and aid physicists in performing physical simulations; however, the current state of the art is largely experimental and impractical, with several obstacles to useful applications. Moreover, scalable quantum computers do not hold promise for many practical tasks, and for many important tasks quantum speedups are proven impossible.
</p>
<br>
<div class="head">
<h2>About Qubits</h2>
</div>
<br>
<p>The basic unit of information in quantum computing is the qubit, similar to the bit in traditional digital electronics. Unlike a classical bit, a qubit can exist in a superposition of its two "basis" states, which loosely means that it is in both states simultaneously. When measuring a qubit, the result is a probabilistic output of a classical bit, therefore making quantum computers nondeterministic in general. If a quantum computer manipulates the qubit in a particular way, wave interference effects can amplify the desired measurement results. The design of quantum algorithms involves creating procedures that allow a quantum computer to perform calculations efficiently and quickly.</p>
<br>
<div class="head">
<h2>Quantum Information</h2>
</div>
<br>
<p>The qubit serves as the basic unit of quantum information. It represents a two-state system, just like a classical bit, except that it can exist in a superposition of its two states.[39] In one sense, a superposition is like a probability distribution over the two values.[40] However, a quantum computation can be influenced by both values at once, inexplicable by either state individually. In this sense, a "superposed" qubit stores both values simultaneously.
</p>
<br>
<div class="head">
<h2>Consider the Quantum Computing Path as</h2>
</div>
<br>
<img src="quantum_computing_map.png" width="100%">
<br>
<br>
<div class="head">
<h2>Quantum Computer Uses:</h2>
</div>
<br>
<div class="list">
<ul>
<li>AI and Machine Learning (ML)</li>
<br>
<li>Financial Modeling</li>
<br>
<li>Cybersecurity</li>
<br>
<li>Route and Traffic Optimization</li>
<br>
<li>Manufacturing</li>
<br>
<li>Drug and Chemical Research</li>
<br>
<li>Batteries</li>
</ul>
</div>
<br>
<br>
<div class="head">
<h2>Reference for Quantum Computing</h2>
</div>
<br>
<div class="video">
<p>For More Detailed Video, <a href="https://www.youtube.com/watch?v=e3fz3dqhN44" target="_blank">Click Here</a></p>
<p>For More Detailed Article, <a href="https://en.wikipedia.org/wiki/Quantum_computing" target="_blank">Click Here</a></p>
</div>
<br>
<br>
</div>
</body>
</html>