Answer:
#include <iostream>
#include <vector>
#include <iomanip>
#include <string.h>
#include <string>
#include <algorithm>
using namespace std;
bool strEqual(const string& str1, const string& str2)
{
//check each characters by case insensitive
return std::equal(str1.begin(), str1.end(),
str2.begin(), str2.end(),
[](char str1, char str2) {
return tolower(str1) == tolower(str2);
});
}
unsigned GetWordFrequency(vector<string>& vec,const string& str)
{
//return the number of occurrences of the search word in the
unsigned res=0;//the numbers of occurences
for(auto itr:vec)
{
if(strEqual(itr,str))
res++;
}
return res;
}
int main()
{
int size=0;
cin>>size;
vector<string>vec;
for(int i=0;i<size;i++)
{
string str;
cin>>str;
vec.push_back(str);
}
cout<<"Output:"<<endl;
for(auto itr: vec)
{
cout<<itr<<" - "<<GetWordFrequency(vec,itr)<<endl;
}
return 0;
}
Explanation:
Answer:
This ain't the exact code but it can be used as a template.
Explanation:
var myQuestion = [
{
question: "What is 10/2?",
answers: {
a: '3',
b: '5',
c: '115'
},
correctAnswer: 'b'
},
{
Hope it kinda helps.
Answer:
<em>Imposed project deadlines.</em>
Explanation:
The term of project management imposed deadline<em> refers mainly to the calendar-based dividing line used to determine a fixed time or date on which the project management team has projected and/or developed that the particular schedule of work and/or schedule of work events.</em>