Answer:
1) Construction
2) Purpose
3) Purpose
4) Support
5) Support
Explanation:
Will the website be built by a programmer at a company?<u> construction</u>
What type of content will be on the website? <u>purpose</u>
Will the website be used to share family pictures or as a professional site for posting news? <u>purpose</u>
Will customers be making secure transactions on the website? <u>support</u>
How extensive of a control panel, or location of login and website control, will be needed? <u>support</u>
<u>OAmalOHopeO</u>
Answer: Incomplete question
Explanation: The question attached is incomplete and incoherent, possible solution of this will be difficult to assume. Take adequate time to post complete questions.
Regards.
The text will post to your phone when it gets turned on
Answer:
The program in C++ is as follows:
#include <iostream>
#include <vector>
using namespace std;
int main(){
vector<int> nums;
int num;
cin>>num;
while(num != -1){
nums.push_back(num);
cin>>num; }
for (auto i = nums.begin(); i != nums.end(); ++i){
cout << *i <<endl; }
return 0;
}
Explanation:
This declares the vector
vector<int> nums;
This declares an integer variable for each input
int num;
This gets the first input
cin>>num;
This loop is repeated until user enters -1
while(num != -1){
Saves user input into the vector
nums.push_back(num);
Get another input from the user
cin>>num; }
The following iteration print the vector elements
<em> for (auto i = nums.begin(); i != nums.end(); ++i){
</em>
<em> cout << *i <<endl; }
</em>
Answer:
The correct answer to the given question is option D) Any or all of the above.
Explanation:
A posting error is a type of error which is related to ledger and would include the errors like -
Posting wrong amount on the right side of account
Posting right amount on the wrong side of right account
Posting an amount twice and posting omission
Posting wrong amount to wrong side of right account
Posting correct amount on wrong account on right side
So by knowing all the given above points, it is quite clear that the correct option is D.