Search
 
SCRIPT & CODE EXAMPLE
 

HTML

assignment-1

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.
Comment

Assignment 1

var counter = 0;

function plus() {
  counter += 1;
  document.getElementById("counter").innerHTML = counter;
}

function minus() {
  if(counter > 0){
    counter -= 1;
  }
  document.getElementById("counter").innerHTML = counter;
}
Comment

Assignment 1

.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;
}
Comment

Assignment 1

<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
Comment

assignment-1

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.
Comment

assignment-1

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.
Comment

PREVIOUS NEXT
Code Example
Html :: how put h:putputText in center of div 
Html :: openGraph 1 
Html :: pros/cons of using `.createElement()` and `append()` vs. `.innerHTML`? 
Html :: how to convert button into link in html 
Html :: week days in table format in html 
Html :: a open to other tab 
Html :: HTML Computer Code Elements 
Html :: simple canvas car game 
Html :: html get button text 
Html :: react three fiber text font family 
Html :: jnbvtfvghbjklk;oojhv 
Html :: html table fixe layout 
Html :: XSLT group following siblings that follow a tag with generated ID 
Html :: EgQSovLEGMb3spAGIhBB1Si11KUheY5Knc9YT5LMMgFy 
Html :: exemple liens hypertextes 
Html :: clickable skype link 
Html :: Cannot play media. No decoders for requested formats: text/html 
Html :: paragraphe en html 
Html :: best html books 
Html :: how to code cards deck with tab collapse 
Html :: input[type=time] datalist 
Html :: html mobile does not show pdf with object 
Html :: what is com.apple.parsecd 
Html :: what is base_body.html in open edx 
Html :: ionic grid no margin 
Html :: How can React read a session SET in PHP 
Html :: html drag and drag prograssive bar 
Html :: learn html 
Html :: data-url html 
Html :: html web page examples with source code 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =