ajaaaieisslslqlqlqqpqlkek3k2l2ll2llllww
Answer:
a. Maximum size of file = 8.003 GB
Explanation:
<u>a. Maximum size of file</u>
= (6 * 2 KB) + (2048 * 2 KB) + (2048 * 2048 * 2 KB)
= 12kb + 4096 Kb + 8388608 kb
= 8392716 kb
8392716/1024 mb = 8196.01 MB
8196.01 /1024 GB= 8.003 GB
<u>b. According to above calculation</u>
For 8 GB 6 direct, 1 single and 1 double indirect block requires
so
for 32 GB
24 direct Block
4 single and 4 double indirect block requires
Answer:
current_price = int(input("Enter the current price: "))
last_months_price = int(input("Enter the last month's price: "))
print("This house is $" + str(current_price))
print("The change is $" + str(current_price - last_months_price) + " since last month")
print("The estimated monthly mortgage is ${:.2f}".format((current_price * 0.051) / 12))
Explanation:
Ask the user to enter the current price and last month's price
Print the current price
Print the change in the price, subtract the last month's price from the current price
Print the estimated monthly mortgage, use the given formula to calculate, in required format
Answer:
Answered below
Explanation:
//Program in Java
class MyInfo{
public static void main (String args []){
myFullName("John", "Doe");
myAgeMajorGPA(20, "Biology", 4.3);
}
public void myFullName(String initialName, String middleName){
System.out.println(initialName);
System.out.print(middleName);
}
public void myAgeMajorGPA(int age, String major, double GPA){
System.out.println(age);
System.out.println(GPA);
System.out.print(major);
}
}