Answer:
Option D i.e., NTFS.
Explanation:
That technician James may install the latest drive on such a computer. He would also need to customize read attributes from particular local data, and compose expanded characteristics of particular files. NTFS file systems permit you to adjust certain settings in such a Windows environment
So, the following option is correct according to the following scenario.
- Option(a) is incorrect because It is the file structure that is required to organize information on such a Mac Os hdd.
- Option (b) is incorrect because using Ext4 to change essential file system DS such as those intended that hold file information.
- Option(c) is incorrect because It maintains record of most of the documents they have and helps the system find those files on the drive.
Creating a list of keywords and using them throughout your
site helps move pages up the ranks of search engines like Bing or Google. They
also attract website visitors. Technically, maintaining a list of keywords
while creating a webpage is important in search engine optimization.
Answer:
#include<iostream>
using namespace std;
int lcm(int m, int n) {
int a;
a = (m > n) ? m: n;
while (true) {
if (a % m == 0 && a % n == 0)
return a;
++a;
}
}
int gcd(int m, int n) {
int r = 0, a, b;
a = (m > n) ? m : n;
b = (m < n) ? m : n;
r = b;
while (a % b != 0) {
r = a % b;
a = b;
b = r;
}
return r;
}
int main(int argc, char **argv) {
cout << "Enter the two numbers: ";
int m, n;
cin >> m >> n;
cout << "The LCM of two numbers is: " << lcm(m, n) << endl;
cout << "The GCD of two numbers is: " << gcd(m, n) << endl;
return 0;
}
Explanation: