To Change the Drop Shadow Just Go to effects on the photo go to drop shadow than change the spread and Distinse and Opasity.
<span>When a person goes to set up a direct deposit slip from their checking checking they will need several things. They person will need the routing number to the financial institution and the checking account number from the financial institution. Both of these can be found on the bottom of a check. The person will also need to know the full name of the bank they are using. If the person has a debit card only, they will need to contact the bank to get their specific information to set up the direct deposit.</span><span />
Answer:
i also want to know the answer
Explanation:
Answer:
Option 1: Finds the position of the largest value in a
Explanation:
Given the codes as follows:
- int[] a = {6, 1, 9, 5, 12, 3};
- int len = a.length;
- int x = 0;
- for (int i = 1; i < len; i++)
- {
- if (a[i] > a[x])
- x = i;
- }
-
- System.out.println(x);
The code is intended to find a largest value in the array, a. The logic is as follows:
- Define a variable to hold an index where largest value positioned. At the first beginning, just presume the largest value is held at index zero, x = 0. (Line 3)
- Next, compare the value location in next index. If the value in the next index is larger, update the index-x to the next index value (Line 4 - 8). Please note the for-loop traverse the array starting from index 1. This is to enable the index-1 value can be compared with index-0 and then followed with index-2, index-3 etc.
- After completion of the for-loop, the final x value will be the index where the largest value is positioned.
- Print the position of the largest value (Line 10)
Answer:
Explanation:
print('Enter 10 temperatures')
sum = 0
for i in range(10):
S = float(input())
sum = sum + S
print('The sum is: ',sum)
First, we print a comment asking the ten temperatures, then we declare the variable sum = 0.
We create a for cycle where the user must enter the temperatures, 10 in this case, then we must do the operation, summing the 10 numbers.
In the last step, we print the result with the variable sum.