60 sec. = 1 min.
3,600 sec = 1 hr.
(60 sec x 60 minutes) 86,400 sec= 24 hr.
(3,600 x 24) Given : 16,000 (bytes per seconds, for mp3 )
86,400 X 16,000 = 1,382,400,000 bytes for 24 hrs.
1,382,400,000 = 1,382.4 mega bytes (Mb.) for 24 hrs of music
Looking for how many days are in 1,000,000 Mb.
1,000,000 / 1,382.4 = 723.379629 Days worth of music.
Answer:
#include <iostream>
using namespace std;
int main()
{
int rows, width, height, spaces, stars; // declare values
cout << "enter width" << endl;
cin >> width;
cout << "enter height" << endl;
cin >> height;
for (int row = 0; row < height; ++row) {
for (int col = height + row; col > 0; --col) {
if (height % 6 == 1) {
cout << "Impossible shape!" << endl;
return 0;
}
cout << " ";
}
for (int col = 0; col < (width - 2 * row); ++col) {
cout << "*";
spaces += 1;
stars -= 2;
}
cout << endl;
Answer:
1) Choose Slide
2) Transition Tab
3) Transition To This Slide
4) Select New Transition
Explanation:
There are 4 main steps that Evie needs to take in order to accomplish this. First, she needs to choose the slide that she wants to apply the transition to. Secondly, she needs to click on the Transitions Tab at the top of the application. Thirdly, she needs to go to the "Transition to this Slide" section of the tab. Lastly, she needs to choose one of the available animation/transitions from the list of options. This will apply that transition effect to that slide, so that when she switches to that slide it performs the animation.
Answer:
RAX = 333000h (16 bits with preceding zeros removed)
RDX = 20h (also 16 bits with preceding zeros removed)
Explanation:
The "div" opcode in the assembly language source code is used to divide operands. It accepts a divisor ( the denominator) and divides the content of the AX register. The result is saved in the AX register while the remainder (if any) is saved in the DX register. If the DX register holds any data, the data is replaced with the divisor remnant.
The code above divides the content of the RAX register with the divisor variable and saves the result and remainder in the RAX and RDX respectively.
Answer:
a. cd into the nested directories/ nested - level - 1 / directory using an absolute path
Explanation:
The directory is a location on the hard disk, which is also called a folder. It contains the files and also contains the other directories called sub directories.
A path to a file is merged with a slash and determines the file or directory in the operating system. An absolute path is the location file or directory from the actual file system
The directory's absolute path starts with a slash, and all slashed in the directory separates the directions.
All directions in the absolute path are written on the left side. The last name in the path may belong to the file, and the pwd command can determine the current directory.
The relative path is the location of the file. It begins with the working directory. An absolute path is unambiguous and working with deeply nested directories.
There are two commands which are used such as
- cd is used for changing directory
- pwd is used for the working directory
We easily navigate the file system with the help of an absolute path.