(My opinion) Naruto! (then Boruto is on it's way to becoming good)
but other people might say my hero academia or any of the dragon ball saga
Answer:
Using the DNS service.
Explanation:
The computer sends a UDP packet with the domain name in it to port 53 of the configured DNS server, and expects a reply with the IP address of that domain.
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_VALS = 4;
vector<int> testGrades(NUM_VALS);
int i = 0;
int sumExtra = -9999; // Assign sumExtra with 0 before your for loop
testGrades.at(0) = 101;
testGrades.at(1) = 83;
testGrades.at(2) = 107;
testGrades.at(3) = 90;
/* Your solution goes here */
sumExtra = 0;
for(i = 0; i <= testGrades.size() -1; i++){
if(testGrades.at(i) > 100){
sumExtra = sumExtra + (testGrades.at(i) - 100);
}
}
cout << "sumExtra: " << sumExtra << endl;
return 0;
}
Explanation:
Looks like you almost solved the question. I highlighted the parts you have been missing above.
In order to use vectors in C++, you need to add the vector library at the beginning of the program, #include <vector>
In order to initialize the vector, you need to specify its type inside <int>, since we work with the integers in the question the type must be <em>int</em>
Answer:
95 years
Explanation:
the dura- tion of copyright is 95 years from first publication or 120 years from creation, whichever is shorter (unless the author's identity is later revealed in Copyright Office records, in which case the term becomes the author's life plus 70 years).
Answer:
a. Placing the app in the Windows Store.
c. Sideloading the app using Windows Intune.
Explanation:
Placing the app in the Windows Store and sideloading the app using Windows Intune are methods available to deploy a Windows app that has been created within an organization and needs to be deployed to the users.