Answer:
D)
Explanation:
At first the two members just want to create the presentation but work together and agree to share the research and work together on creating the presentation.
The conflict resolution is more than agree upon problem, identify issue or brainstorm solutions. The answer is D) negotiate a solution.
Explanation:
(a^2 + 3a +5) × (a + 7)
= a^3 + 7a^2 + 3a^2 + 21a + 5a + 35
= a^3 + 10a^2 + 26a + 35
a hard drive is a metal disk constantly spinning while powered on.
The data is written with a metal scratching the data onto the wheel.
Answer:
There are two ways to print 1 to 1000
- Using Loops.
- Using Recursion.
Explanation:
Using loops
for(int i=1;i<=1000;i++)
{
cout<<i<<" ";
}
Using recursion
Remember you can implement recursion using a function only.
void print(int n)
{
if(n==0)
return;
print(n-1);
cout<<n<<" "';
}
you should pass 1000 as an argument to the function print.