Answer:
"cost, schedule, technical, and organizational feasibility schedule" is the correct option.
Explanation:
A technical feasibility is the study of the concerned about the specifying software and tools which satisfy the users' need. It is also the process of thinking for which business technologies are important to bring labours, transportation, and materials.
An organizational feasibility is the study of the information of the professional background and about the skills which are necessary for the contribution in the business.
The element, from the following options, which is opened when the find command is clicked is the search pane.
What is find command?
Find command is the command which is used to find the list of files and their location.
Find command can be used in different manners-
- To find the different files in a system.
- Find command can find the files by their name, size, date or other information related to the required document.
- This command can be modified with the requirement of the search.
The options for the given problem are-
- Navigation Pane Insert- It is used to show the navigation pane in word or similar space.
- Hyperlink dialog box-This open, when the insert hyperlink command is clicked.
- Bookmark dialog box-This opens, when the bookmark command is clicked.
- Search Pane- Search pane is opens, when the find commond is clicked.
Thus, the element, from the following options, which is opened when the find command is clicked is the search pane.
Learn more about the find command here:
brainly.com/question/25243683
Hi,
I changed your program using some of the concepts you were trying to use. Hopefully you can see how it works:
#include <string>
#include <iostream>
#include <sstream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
short T;
cin >> T;
cin.ignore();
string str[100];
for(int i=0; i<T; i++)
{
getline(cin, str[i]);
}
for (int i = 0; i < T; i++)
{
stringstream ss(str[i]);
string tmp;
vector<string> v;
while (ss >> tmp)
{
// Let's capitalize it before storing in the vector
if (!tmp.empty())
{
transform(begin(tmp), end(tmp), std::begin(tmp), ::tolower);
tmp[0] = toupper(tmp[0]);
}
v.push_back(tmp);
}
if (v.size() == 1)
{
cout << v[0] << endl;
}
else if (v.size() == 2)
{
cout << v[0][0] << ". " << v[1] << endl;
}
else
{
cout << v[0][0] << ". " << v[1][0] << ". " << v[2] << endl;
}
}
return 0;
}