I’m going to assume the ? is dividing and if that’s the case X = 1
Answer: You can use a powerpoint as student for assignments, as an employee for presentations, and personally for taking notes.
Explanation:
Answer:
Botnet is define as the number of the internet connection where each devices in the botnet connection run one and more than one bot in the network. It is basically use to performed DDOS ( Distributed denial of service) attack in the system, steal data and also allow the hacker to access different devices.
The three networked applications that are targeted by the botnet is that:
- Many e-mail applications are basically spammed by the users for entering the login credential by using the fake websites.
- DDOS ( Distributed denial of service) attack is also one of the main application that are attacked by the botnet in the system.
- Many types of banking applications that theft the data or important information which include users login details and credit or debit cards details that are hacked by the attackers in the system.
Answer:
Explanation:
#include <iostream>
using namespace std;
int main()
{
string cwords[8]={"ten", "fading", "post", "card", "thunder", "hinge", "trailing", "batting"};
string temp="";
for (int i=0; i<8; i++)
{
temp=cwords[i];
int j=temp.length();
if (temp[j-3]=='i' && temp[j-2]=='n' && temp[j-1]=='g')
{
cout<<temp<<endl;
}
}
return 0;
}