Answer:
The answer is "turn off auto-renewal"
Explanation:
In the given question it is not defined, which type of subscription it is taking about. so, we assume, it is talking about software subscription and the cancellation of the software can be defined as follows:
-
The application base subscription provides a monthly or yearly service license scheme, which allows customers to purchase the cost per user.
-
In general, users were also obligated to claim for there initial fee soon, which also enables it to use the software and by disabling the auto-renewal option we can cancel our subscription.
Answer:
ps
Explanation:
In Unix and Unix-like operating system, the command used to display the list of processes running in the current shell is ps. For each of these processes, the following details are displayed;
i. <em>PID </em>which indicates the id of the process
ii. <em>TTY </em>which indicates the type of terminal from which the process is running.
iii. <em>TIME</em> which represents the CPU time consumed by the the process and its sub-processes.
iv. <em>CMD</em> which represents the command that runs as the current process.
Answer:
the 256 color icon would be greater in file size.
Explanation:
regardless of how many pixels are in the image, file A has 256 colors meaning the computer has to individually load each one of those colors. it'll probably use a lot of ink if you decide to print it, too.
So here is the code in Python:
n = 0.00 #this is a float because there are some numbers that are decimals.
while n < 20: #n which is 0.00 and while it is lower than 20 if runs the code below
n = n + 1 #it will add 1 to n everything it runs the code.
k = n / 2 #it will divide whatever n is everytime by 2
print(str(n) + '/2: ') # it's printing the number it's on
print(k) # prints the answer for the n.
You can change n to add by any, make n any num instead of 0.00 and you can change the while condition from n < 20 to any other logical statement. If you want to get creative you can take 2 inputs for numbers and make one of them the starting number and other one is the ending number. Also make sure to make n a number lower than you starting point because if you set n as your starting point then it will skip it.