Answer:
2
Explanation:
User submit quantity 2. with Color : Red Blue Green
Formula is
Force=pressure x area
So the answer would be
400 x 55= 22000N
Go to file>export as and it will allow you to change it to other files.
Answer:
Tuning. See explanation below.
Explanation:
Tuning
By definition the tuning is: "the process of adjusting an IDPS to maximize its efficiency in detecting true positives, while minimizing both false positives and false negatives."
And this process is the improvement of system performance in computer science. Usually is related to optimization of a process, when we us tunning, we can follow these steps:
a) Identify which numeric values are acceptable and improve the parameters
b) Take a measure for the system originally and without the tunning in order to have an initial comparative measure
c) Understand that each process have a critical path, we need to identify it.
d) Modify parts who not improve the efficiency of the algorithm
e) Check the performace when we apply modifications
Answer:
MIPS Code:
.data
newline: .asciiz "\n" #newline variable
.text
MAINLOOP:
li $v0, 5 #syscall to get user interger and store in $v0
syscall
add $a0, $zero, $v0 #moving the user input to $a0 from $v0
beq $a0, 0, EXIT #branching to EXIT when $a0 is 0
li $v0, 1 #syscall to print integer in $a0
syscall
li $v0, 4 #syscall to print newline
la $a0, newline
syscall
j MAINLOOP #jumping to MAINLOOP
EXIT:
Sample Output:
6
6
7
7
3
3
0