Pre-Questions:
1.Unix-like systems are operating systems that behave in a manner-like Unix operating systems
2.POSIX is an operating system specified by IEEE computer society for compatibility between operating systems
Answers:
1. An opearating system acts as an interface between user and hardware.
2. The operating system ensures that hardware is working appropriately.These hardware include RAM,CPU,I/O devices,Keybords and monitors.
3. android
4.windows
Resources:
* https://en.wikipedia.org/wiki/Unix-like
* https://en.wikipedia.org/wiki/POSIX
Post-Questions:
* How does the kernel work?
* How different are Macs from Linux?
Feedback:
Most of this material made sense (except for the kernel diagram) but I don't understand this weird format.
I sure hope you have some sort of master plan for this.
var counter = 0;
function plus() {
counter += 1;
document.getElementById("counter").innerHTML = counter;
}
function minus() {
if(counter > 0){
counter -= 1;
}
document.getElementById("counter").innerHTML = counter;
}
.container{
display: flex;
align-items: center;
justify-content: center;
}
.input-box{
height: 40px;
width: 100px;
border: 1px solid #ddd;
display: flex;
align-items: center;
justify-content: space-between;
}
button{
background: transparent;
border: 0;
cursor: pointer;
font-size: 15px;
padding: 5px 10px;
}
p{
padding: 5px 10px;
}
<div class="container">
<div class="input-box">
<button type="button" onclick="minus()" style="font-size: 20px;">-</button>
<p id="counter">0</p>
<button type="button" onclick="plus()">+</button>
</div>
</div>
Run code snippet
Pre-Questions:
1.Unix-like systems are operating systems that behave in a manner-like Unix operating systems
2.POSIX is an operating system specified by IEEE computer society for compatibility between operating systems
Answers:
1. An opearating system acts as an interface between user and hardware.
2. The operating system ensures that hardware is working appropriately.These hardware include RAM,CPU,I/O devices,Keybords and monitors.
3. android
4.windows
Resources:
* https://en.wikipedia.org/wiki/Unix-like
* https://en.wikipedia.org/wiki/POSIX
Post-Questions:
* How does the kernel work?
* How different are Macs from Linux?
Feedback:
Most of this material made sense (except for the kernel diagram) but I don't understand this weird format.
I sure hope you have some sort of master plan for this.
Pre-Questions:
1.
2.
Answers:
1.
2.
3.
4.
Resources:
* https://en.wikipedia.org/wiki/Unix-like
* https://en.wikipedia.org/wiki/POSIX
Post-Questions:
* How does the kernel work?
* How different are Macs from Linux?
Feedback:
Most of this material made sense (except for the kernel diagram) but I don't understand this weird format.
I sure hope you have some sort of master plan for this.