Oh I got this! I'm a professional photographer! The answer is Leaning to se the background before taking the photograph.
Plz mark brainliest! So glad I could help, and Have an AWESOME day!!!
Answer:
Copy: Ctrl + C.
Cut: Ctrl + X.
Paste: Ctrl + V.
Maximize Window: F11 or Windows logo key + Up Arrow.
Task View: Windows logo key + Tab.
Switch between open apps: Windows logo key + D.
Shutdown options: Windows logo key + X.
Lock your PC: Windows logo key + L.
Explanation:
This is for windows. Most of these can be replaced by the command key instead of the control key on mac.
The slide layout option will help determine the overall look of her presentation.
<h3>Which option in a presentation program is vital?</h3>
Slide layouts is known to be a function that is made of all the tools in regards to formatting, positioning, and others used in a slide and it is one that have all of the content that is seen on a slide.
Hence, The slide layout option will help determine the overall look of her presentation.
Learn more about presentation from
brainly.com/question/2189162
#SPJ1
Answer:
#include <iostream>
#include <vector>
using namespace std;
void swapFrontBack(vector<int>& nums) {
if(nums.size() < 2) {
return;
}
swap(nums[0], nums[nums.size()-1]);
}
void printit(vector<int>& arr) {
for(int i = 0; i < arr.size(); i++) {
cout << arr[i] << " ";
}
cout << endl;
}
int main() {
vector<int> num1;
swapFrontBack(num1);
printit(num1);
num1.push_back(1);
swapFrontBack(num1);
printit(num1);
num1.push_back(2);
swapFrontBack(num1);
printit(num1);
vector<int> num2(10, 1);
num2[9] = 2;
swapFrontBack(num2);
printit(num2);
return 0;
}
Explanation: