Packet analyzer is a tool that captures every packet transmitted over a network and analyzes the content. Basically this is used to gather network statistics and troubleshoot network issues.
Answer:
Yes u can save their world but u cant download it.
Explanation:
To make the perfect music video, you would need a bunch of b-roll and clips that relate to the song. If it’s a slow, relaxing song, you want things that are slow and represent peace. If it’s about something specific, you should have a story behind it to explain. Hope this helps! :)
Answer:
D) Unsupervised Data mining
Explanation:
Unsupervised data mining also refered to as undirected data mining reveals hidden patterns in unlabeled data. In this method, there are no output variables to predict. The aim of an unsupervised data mining technique is to uncover patterns in data based on the relationship between the data points and each other
Answer:
The program in C++ is as follows:
#include <vector>
#include <iostream>
using namespace std;
int main(){
vector <int> my_num;
string sentinel;
int n = 0;
cout<<"Enter integers (Q to quit): ";
cin>>sentinel;
while(sentinel != "Q"){
my_num.push_back(stoi(sentinel));
n++;
cin>>sentinel; }
int n1, n2;
n1 = my_num.at(0); n2 = my_num.at(1);
if(my_num.at(0)<my_num.at(1)){ n1 = my_num.at(1); n2 = my_num.at(0); }
for (int i = 2; i< n ; i ++) {
if (my_num.at(i) > n1) {
n2 = n1;
n1 = my_num.at(i); }
else if (my_num.at(i) > n2 && my_num.at(i) != n1) {
n2 = my_num.at(i); } }
cout<<"Second Largest: "<<n2<<endl;
n1 = my_num.at(1); n2 = my_num.at(0);
if(my_num.at(0)<my_num.at(1)){ n1 = my_num.at(0); n2 = my_num.at(1); }
for(int i=0; i<n; i++) {
if(n1>my_num.at(i)) {
n2 = n1;
n1 = my_num.at(i); }
else if(my_num.at(i) < n2){
n2 = my_num.at(i); } }
cout<<"Second Smallest: "<<n2;
return 0;
}
Explanation:
See attachment for explanation