Answer:
101.1
Explanation:
Keep in mind that octal has 8 numbers
Step 1: Split your number in 2 parts (integer part and decimal part):
- integer part 65
 - decimal part 0.125
 
Step 2: Convert the decimal part. For this step you need to multiply your decimal part and 8 (8 correspond the octal base) and get the integer part until you need it:
       0.125 * 8 =  1
So your decimal part correspond to number 1 in octal = (1)8
Step 3: Convert integer part: for this step you need to divide your integer part by 8 until you can and get the remainder
       65 / 8 = 8 remainder 1
         8 / 8 = 1 remainder 0
          1 / 8 = 0 remainder 1
Step 4: join the remainders from bottom to top and get the integer part
             101
Step 5: join the integer part and the decimal part to get the octal convertion
               101.1
 
        
             
        
        
        
Answer:
its D. in the calendar view, click the view tab, and click they overlay button. 
Explanation:
i just got it right on edge 2020
 
        
                    
             
        
        
        
Answer:
- import math  
 - 
 - def standard_deviation(aList):
 -     sum = 0
 -     for x in aList:
 -         sum += x  
 -     
 -     mean = sum / float(len(aList))
 - 
 -     sumDe = 0
 - 
 -     for x in aList:
 -         sumDe += (x - mean) * (x - mean)
 -     
 -     variance = sumDe / float(len(aList))
 -     SD = math.sqrt(variance)
 - 
 -     return SD  
 - 
 - print(standard_deviation([3,6, 7, 9, 12, 17]))
 
Explanation:
The solution code is written in Python 3.
Firstly, we need to import math module (Line 1).
Next, create a function standard_deviation that takes one input parameter, which is a list (Line 3). In the function, calculate the mean for the value in the input list (Line 4-8). Next, use the mean to calculate the variance (Line 10-15). Next, use sqrt method from math module to get the square root of variance and this will result in standard deviation (Line 16). At last, return the standard deviation (Line 18).
We can test the function using a sample list (Line 20) and we shall get 4.509249752822894
If we pass an empty list, a ZeroDivisionError exception will be raised.
 
        
             
        
        
        
Hi pupil here's your answer ::
➡➡➡➡➡➡➡➡➡➡➡➡➡
Column A Column B 
1》CD = Optical Storage Devices 
2》Hard Disk = Magnetic Storage Device 
3》Flash Memory = Solid State Storage 
⬅⬅⬅⬅⬅⬅⬅⬅⬅⬅⬅⬅⬅
Hope this helps. . . . . . .
        
             
        
        
        
Answer:
Explanation:
The following code is written in Python. It asks the user to enter the current balance and the annual interest rate. It then calculates the monthly interest rate and uses that to detect the interest that will be earned for the next month. Finally, printing that to the screen. A test output can be seen in the attached picture below.
balance = int(input("Enter current Balance: "))
interest = int(input("Enter current annual interest %: "))
interest = (interest / 12) / 100
next_month_interest = balance * interest
print('$ ' + str(next_month_interest))