Answer:
ICT is the abbreviated form of Information and Communication. It included different technologies like mobile phones, computers, USBs etc.
Following are two precautionary measures which should be observed when using any kind of ICT:
- Use of Antivirus: It can used to protect anything placed inside the technology especially from hacking and viruses which can create many issues.
- Backup Data: Creating a backup of the data stored in the device is important as it can be recalled when the device malfunctions. Backup of the data can be created through using USBs, CDs etc or through cloud storage
Answer:
Structured interviews
Explanation:
An structured interview is an institutionalized method for interviewing work applicants dependent on the particular needs of the activity they are applying for. Up-and-comers are posed similar questions in a similar order, and are altogether looked at on a similar scale
For instance, you can direct them via telephone, over the Internet, utilizing PC programs, for example, Skype, or utilizing videophone. Organized inquiries questions can be open-finished or shut finished.
Answer:
The correct answer is option (A) Applications, Banking Services, Customer Service
Explanation:
Solution
Methods of filing
There are 5 methods of filing:
• Filing by Subject/Category
• Filing in Alphabetical order
• Filing by Numbers/Numerical order
• Filing by Places/Geographical order
• Filing by Dates/Chronological order
In this case, we can fill by Alphabetical order which is given below
Applications, Banking Services, Customer Service
The simulation, player 2 will always play according to the same strategy.
Method getPlayer2Move below is completed by assigning the correct value to result to be returned.
Explanation:
- You will write method getPlayer2Move, which returns the number of coins that player 2 will spend in a given round of the game. In the first round of the game, the parameter round has the value 1, in the second round of the game, it has the value 2, and so on.
#include <bits/stdc++.h>
using namespace std;
bool getplayer2move(int x, int y, int n)
{
int dp[n + 1];
dp[0] = false;
dp[1] = true;
for (int i = 2; i <= n; i++) {
if (i - 1 >= 0 and !dp[i - 1])
dp[i] = true;
else if (i - x >= 0 and !dp[i - x])
dp[i] = true;
else if (i - y >= 0 and !dp[i - y])
dp[i] = true;
else
dp[i] = false;
}
return dp[n];
}
int main()
{
int x = 3, y = 4, n = 5;
if (findWinner(x, y, n))
cout << 'A';
else
cout << 'B';
return 0;
}
Answer:
?
Explanation:
these are instructions to a question?