In the case above, the command-line tool should he use to stop the application based on its process id is e option
What is the use of ps command?
The ps command is known to be one that helps enables a person to be able to look at the status of any kind of active processes on a system, and also that of display technical information in regards to the processes. 
Note that In the case above, the command-line tool should he use to stop the application based on its process id is e option
Learn more about command-line tool from
brainly.com/question/3737699
#SPJ1
 
        
             
        
        
        
Answer:
TACACS+
Explanation:
Terminal Access Controller Access-Control System Plus (TACACS+) is a protocol that provides detailed accounting information and flexible administrative control over the authentication, authorization, and accounting process. 
 
        
             
        
        
        
Answer:
Following are the statement is given below
if(updateDirection ==1) // check condition 
{
++numUsers; // increments the value 
}
else
{
--numUsers; // decrement the value 
}
Explanation:
Following are the description of statement 
- Check the condition in the if block .If the "updateDirection" variable is 1 then then control moves to the if block otherwise control moves to the else block statement.
- In the if  block the statement is "++numUsers" it means it increment the value by 1 .
- In the else block the statement is "--numUsers" it means it decrement  the value by 1 .
 
        
             
        
        
        
Answer:
FOR i% = 1 TO 100
  IF ((i%\3) = i%/3) AND ((i%\7) = i%/7)  THEN
    PRINT i%
  END IF
NEXT i%
Explanation:
Of course using MOD would be cleaner, but another way to check if a number is integer divisable is to compare the outcome of an integer division to the outcome of a floating-point division. If they are equal, the division is an integer division.
The program outputs:
21
42
63
84
 
        
             
        
        
        
Complete question :
Sue is planning a theme park trip for her husband, herself, and her three children. She has a budget of $500. Adult tickets cost $55 each, and child tickets cost $25 each. Which formula should go in cell B4?
Answer:
=E1B1+E2B2
Explanation:
Cost of adult ticket = $55
Child ticket = $25
Number of adult = 2
Number of children = 3
Assume :
Cost of adult ticket = $55 = E1
Child ticket = $25 = E2
Number of adult = 2 = B1
Number of children = 3 = B2
The formula that should go into cell B5 in other to calculate total amount :
Total should be :
($55*2) + ($25*3)
=E1B1+E2B2