Answer:
It is not possible to download RAM onto your computer.
Explanation:
RAM (Random-Access Memory) are physical objects installed onto your computer in the form of some sort of chip. Please do not attempt to download RAM from the internet, you may end up with malicious software on your computer. The only way to get more RAM is by installing more onto your computer or by looking at guides that can explain how to free up some RAM that may already be in use by an application.
Answer:
The required formula to get the value of the cell K6 i.e., total cost of the rental based on the daily rate, cost of gas, amount of discount, and number of days rented can be given as follows:
K6 =E6*G6*(1-H6)-J6
Explanation:
In the above formula, the value of the cell E6 (#Days rented) is being multiplied with the cell G6 (Daily rate), amount of discount (H6) subtracted from 1 and subtract the cell value J6 (Cost of gas) from the resulted value of the expression E6*G6*(1-H6).
Copy the above formula to the range K7:K32 to fill all the values. The resulted excel sheet will be shown as follows:
Following are the code in java to reverse any string without using reverse function.
import java.util.*; // import package
class Main // class
{
public static void main(String args[]) // main class in java
{
String s, r = ""; // string variable
Scanner out = new Scanner(System.in); // scanner classes to take input
System.out.println("Enter a string to reverse");
s = out.nextLine(); // input string
int l1 = s.length(); // finding length of string
l1=l1-1;
for ( int i = l1 ; i >= 0 ; i-- ) // for loop to reverse any string
{
r = r + s.charAt(i);
}
System.out.println(" The Reverse String is: "+r); // print reverse string
}
}
Explanation:
firstly we input any string ,finding the length of that string then after that iterating over the loop by using for loop and last display that reverse string
output
Enter a string to reverse
san ran
The Reverse String is: nar nas
Answer: >>>
Explanation:
just finished the test and got this right