Answer:
The Operating System allocates resources when a program need them. When the program terminates, the resources are de-allocated, and allocated to other programs that need them
A. Citing sources for documents you found on the web
Netstat
Type netstat -a to get a complete overview.
Answer:
Change this code:
return <View style={[styles.container, backgroundColor: this.state.bg]}/>
for this code:
return <View style={[styles.container, {backgroundColor: this.state.bg}]}/>
Answer: True
Explanation:
In Linux, a single quote around a string will prevent the shell from interpreting any metacharacter.