For the answer to the question above asking that by <span>Pressing the Ctrl+Home keys moves the insertion point to the?</span>
The answer is A. beginning of a document.
I assume you are talking about Microsoft Excel 2007 version?
Because it isn't indicated on the question
This is the task mangier panel or i guess as they are calling it the task panel.
you can access this with control, alt, delete.
Journal!
Adjusting entries are changes to journal entries you've already recorded.
Answer:
Explanation:
For the first iteration of i for loop 1 to n, the j for loop will run from 2 to n times. i.e. n-1 times.
For the second iteration of i for loop, the j for loop will run from 3 to n times. i.e. n-2 times.
From the third to the last iteration of i for loop, the j for loop will run n-1 to n times. i.e. 2 times.
From the second to the last iteration of i for loop, the j for loop will run from n to n times. i.e. 1 time.
For the last iteration of i for loop, the j for loop will run 0 times because i+1 >n.
Hence the equation looks like below:
1 + 2 + 3 + ...... + (n-2) + (n-1) = n(n-1)/2
So the number of total iterations is n(n-1)/2.
There are two operations per loop, i.e. Comparison and Multiplication, so the iteration is 2 * n(n-1)/2 = n ^2 - n
So f(n) = n ^ 2 - n
f(n) <= n ^ 2 for n > 1
Hence, The algorithm is O(n^2) with C = 1 and k = 1.
Answer:
Option 4 is the correct answer to the above question.
Explanation:
In the Linux operating system, The etc folder is listed on the root directory. When any user wants to go in the root directory of the Linux operating system from anywhere, then he needs to follow the command of the name of the folder where he wants to go with the '/' symbols. The above question states that the user wants to go to the etc folder of the root directory, then he needs to press the command '/etc' with the help of cd command because cd command is used to open any folder. So the option 4 is the correct, while the other is not because--
- Option 1 states about cd which gives the error.
- Option 2 states about cd /home/mary/etc which take the user to the etc folder which is in the mary folder.
- Option 3 states about the cd etc which is used to take the user on the etc folder which is in the current folder.
- Option 5 states about the cd\etc which gives the error.