Answer:
Artificial intelligence
Explanation:
Artificial intelligence will help to receive real time feedback. Artificial intelligence can be explained as attempting to give computers the power to do those things for which human being needs intelligence. It is developing machines that think and work like humans.
Artificial intelligence can be used to get real time feedbacks and are useful for obtaining accurate insights. Artificial intelligence is accurately able to access performance and also give the right feedback
You didn't specify a language, so here it is in C++.
#include <iostream>
#include <ctime>
int main()
{
srand(time(NULL));
int random, guess;
random = rand() % 100 + 1;
std::cout << "Random number generated!\nGuess the number: ";
std::cin >> guess;
if (guess == random)
std::cout << "Yes!";
else
std::cout << "No!";
return 0;
}
Answer:
UV filter, This filter blocks UV light and removes the blue cast from images taken in very bright sunny conditions. ... With old film cameras it was often necessary to use a UV filter because film is extremely sensitive to UV light.
Answer: Password protected
Explanation: Package is the namespace which carries the set of all the related classes and related interfaces. Package class has the right to access the package members. If a package is built and is kept for the future use then it should be made secured so there can be no unauthorized access of the class that package contains,therefore it should be password protected. This will help the class and the members to be in security an can be accessed by authority in future.