Yes, a text file with a .txt extension can be read by Linux/Unix/Mac as they are ASCII unformatted.
Answer: C) Medium size projects
Explanation:
The template for organize SRS is given by the American Department of Defense and NASA should be used for medium size projects. As, SRS is the key component of the marshall center and NASA provides its space surveillance requirement to the U.S. Basically, NASA is stands for the national aeronautics and space administration and it is a independent agency for united states.
Answer:
Flavors [4]..............
All are A. oldest rock is all ways on bottom. an earthquake cracks the ground and radioactive decay occurs when molecules of atoms are weak aka lose mass.
Answer:
This program is written in C++. The explanation of the code is given below in the explanation section.
Explanation:
#include <iostream>
using namespace std;
//factorial calculation
int fact(int n) {
if (n == 0 || n == 1)
return 1;
else
return n * fact(n - 1);
}
int main() {
int n, r, comb; /* n represent number of people (population), r represent the number of selection from population and combination represent number of ways or combination */
cout<<"Enter n : ";// prompt user to enter population i.e. total number of people
cin>>n;//store into n
cout<<"\nEnter r : ";//prompt user to enter number of selection from population
cin>>r;
comb = fact(n) / (fact(r) * fact(n-r));// calcuate combination- number of differnt ways to form a committe
cout << "\nCombination : " << comb; //show the result
return 0;
}