Euronet test --> Follow Java point MCQs (https://www.javatpoint.com/cpp-mcq-part-2#) Same questions found in https://mcqsets.com/downloads/download-c-mcq-questions-pdf/ Coding question 1 int main() { vector<string> str; str.push_back("Camel"); str.push_back("Horse"); str.push_back("Goat"); for(auto i= str.rbegin(); i != str.rend(); i++) { cout << *i <<std::endl; swap(str[0], *i); } cout << str[2] <<std::endl; } Coding question 2 number N is given as input , such that 1< = N <= 100, Find Number X such that X is divisible by N and sum of digits of X is equal to N (hint: X != N) Coding question 3 int main() { std::ios::sync_with_stdio(false); vector<int> v{2,3,4,2}; for(auto i: v) { i--; } for(const auto &i: v) { cout << i-1 <<std::en...