Answer:
D. placeholder
Placeholder are like the field you enter your username and passwords and etc. They can be easily understood my the name itself!
Hope this is the correct answer!
Bye!
Answer:
DDR3 SDRAM having twice rate of data transferring as compared to DDR2 SDRAM both have 240 pin connection. DDR3 memory power consumption is 40 % less as compared to DDR2. both are transfers data on a 64 data bits wide bus. The physical difference occur in both type a cut is present at bottom along pin in DDR2 it is occur probably in center and In DDR3 it is occur at left through center.
The python program that creates a Bankaccount class for a Bank ATM that is made up of the customers and has a deposit and withdrawal function is given below:
<h3>Python Code</h3>
# Python program to create Bankaccount class
# with both a deposit() and a withdraw() function
class Bank_Account:
def __init__(self):
self.balance=0
print("Hello!!! Welcome to the Deposit & Withdrawal Machine")
def deposit(self):
amount=float(input("Enter amount to be Deposited: "))
self.balance += amount
print("\n Amount Deposited:",amount)
def withdraw(self):
amount = float(input("Enter amount to be Withdrawn: "))
if self.balance>=amount:
self.balance-=amount
print("\n You Withdrew:", amount)
else:
print("\n Insufficient balance ")
def display(self):
print("\n Net Available Balance=",self.balance)
# Driver code
# creating an object of class
s = Bank_Account()
# Calling functions with that class object
deposit()
s.withdraw()
s.display()
Read more about python programming here:
brainly.com/question/26497128
#SPJ1
Answer:
t = [0:0.01:4];
x = 5*t - 10;
y = 25442 - 120*t + 144;
d = x.^2 + y.^2;
min = 1e+14;
for k = 1:length(t)
if d(k) < min
min = da(k);
tmin = t(k);
end
end
disp('The minimum distance is: ')
disp(sqrt(min))
disp('and it occurs at t = ')
disp(tmin)Output:
>> withLoop
The minimum distance is:
2.5106e+04
and it occurs at t =
4
Explanation: