Answer:
adjusted exponential smoothing; linear regression.
Explanation:
A time series can be defined as a technique used in statistical analysis and it involves indexing sets of data elements in a timely or successive order i.e sequentially.
Two time series techniques that are appropriate when the data display a strong upward or downward trend are adjusted exponential smoothing and linear regression.
An adjusted exponential smoothing is a statistical technique used for forecasting through the calculation of the weighted average of an actual value.
Answer:
The function in Python is as follows:
def d2x(d, x):
if d > 1 and x>1 and x<=9:
output = ""
while (d > 0):
output+= str(d % x)
d = int(d / x)
output = output[::-1]
return output
else:
return "Number/Base is out of range"
Explanation:
This defines the function
def d2x(d, x):
This checks if base and range are within range i.e. d must be positive and x between 2 and 9 (inclusive)
if d >= 1 and x>1 and x<=9:
This initializes the output string
output = ""
This loop is repeated until d is 0
while (d > 0):
This gets the remainder of d/x and saves the result in output
output+= str(d % x)
This gets the quotient of d/x
d = int(d / x) ----- The loop ends here
This reverses the output string
output = output[::-1]
This returns the output string
return output
The else statement if d or x is out of range
<em> else:</em>
<em> return "Number/Base is out of range"</em>
<em />
V = √P*R
RED
It doesn't really do anything active wise but it is used to reduce current flows, adjust signal levels, and to divide voltage.
Answer:
hardware and software is the answer
a) Cut/copy and paste allows you to select a section of text and insert a new copy of that text. You can also transfer data from one place to another.
b) Save is when you keep your work for later and it will be the same as you left it. Think of it like putting a bookmark in your book. Save as lets you name the files.
c) Close and Exit just let you leave the program, saying you are finished working with it and want to do something else.