D. Pen Too is not contained in a slide show tool bar.
 
        
                    
             
        
        
        
Answer:
cout << "Num: " << songNum << endl; 
cout << songNum << endl; 
cout << songNum << " songs" << endl;
Explanation:
Since you did not provide the whole code and each statement has an error, it seems the name of the variable is songNum. Depending on these, you can see the corrections below:
cout << "Num: " << <u>songnum</u> << endl;   → cout << "Num: " << songNum << endl;
The name of the variable must be written correctly.
- - -
cout << <u>int</u> songNum << endl;  →  cout << songNum << endl;
Declaration of the variable must be done before printing it.
- - -
cout << <u>songNum " songs" </u><< endl;  →  cout << songNum  << "songs" << endl;
There must be "<<" signs between each part while printing.
 
        
             
        
        
        
Answer:
its B. negotiation
Explanation:
1. I got it right on the exam :)
2. negotiation resolves in problem solving. you work together with others to solve problems, together which is negotiating/ talking things through to figure out an answer/ outcome.
Hope this helps! :))
Have an awesome day!!