prigoana.com/CS/ProblemSolvingProcess/index.html
EduardSkibidiGooner 0ddf2af191 x
2024-09-29 20:25:54 +03:00

100 lines
3.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="../../favicon.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Problem Solving Process Poster</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #080709; /* Dark background for body */
color: #e0ceed; /* Light text color */
}
.poster {
width: 210mm;
height: 297mm;
margin: 0 auto;
padding: 20mm;
background-color: #151217; /* Dark background for poster */
color: #e0ceed; /* Light text color */
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
h1 {
text-align: center;
color: #b657ff; /* Lilac color for header */
margin-bottom: 30px;
font-size: 26px;
font-weight: bold;
}
h2 {
color: #a29dfa; /* Softer lilac color */
border-bottom: 2px solid #b657ff; /* Lilac border */
padding-bottom: 10px;
margin-top: 30px;
font-size: 20px;
}
p {
font-size: 14px;
line-height: 1.8;
color: #e0ceed; /* Light text color */
}
.section {
margin-bottom: 20px;
}
.example {
background-color: #211d26; /* Dark lilac tone for example box */
padding: 15px;
border-radius: 8px;
margin-top: 15px;
border: 1px solid #3b3442; /* Darker purple border */
}
.example p {
margin: 5px 0;
}
</style>
</head>
<body>
<div style="height: 20mm;"></div>
<div class="poster">
<h1>Problem Solving Process</h1>
<div class="section">
<h2>1. Define</h2>
<p><strong>Definition:</strong> Clearly understand and define the problem. Identify the root cause and gather all the necessary information.</p>
<div class="example">
<p><strong>Example:</strong> The machine on the assembly line keeps stopping randomly.</p>
<p><strong>Define:</strong> Understand that the issue is the machines unexpected stops. Gather data on when and how it happens.</p>
</div>
</div>
<div class="section">
<h2>2. Prepare</h2>
<p><strong>Definition:</strong> Plan potential solutions. Brainstorm ideas, gather resources, and consider possible approaches.</p>
<div class="example">
<p><strong>Example:</strong> Brainstorm possible causes like faulty wiring, overheating, or software glitches. Plan to inspect the machine's components and test each hypothesis.</p>
</div>
</div>
<div class="section">
<h2>3. Try</h2>
<p><strong>Definition:</strong> Implement the solution. Test the planned solution in a controlled environment or apply it step by step.</p>
<div class="example">
<p><strong>Example:</strong> Test by replacing a faulty component or adjusting software settings. Monitor if the machine stops unexpectedly after the changes.</p>
</div>
</div>
<div class="section">
<h2>4. Reflect</h2>
<p><strong>Definition:</strong> Assess the outcome of the solution. Did it work? What could be improved? Reflect on how effective the solution was.</p>
<div class="example">
<p><strong>Example:</strong> After a week of testing, determine whether the machine continues to operate smoothly. If it still malfunctions, revisit the Prepare phase for further investigation.</p>
</div>
</div>
</div>
</body>
</html>