Answer:
well it game
Explanation:
its gamw because you have to be smart with word njbhjvkgv
Answer:
Option(c) is the correct answer to the given question .
Explanation:
The Project responsibilities section is responsible of the planning of project.
Following are the Roles of the Project Responsibilities
- To check the objective of the project goals.
- Works with customers and to define and meet client needs and the overall objective .
- Cost estimation and expenditure production of the project
- Ensure the fulfillment of the client .Analysis and enterprise risk management. and Tracking the progress of project.
All the others options are not responsible of the planning of project that's why Option(c) is the correct answer .
Answer:
The correct answer to the following question will be "Anonymous logon".
Explanation:
- Windows would never let anyone sign in interactively with an anonymous logon to the device, a person who has linked to the device without a login and password being given.
- So they won't have to verify to an account of the user just whether you are running any shares.r document, let everyone log into the machine collaboratively with such a logon.
Therefore, Anonymous logon is the right answer.
The two major types of DNS request are as follows;
- Recursive Query
- Iterative Query
<h3>What is a domain name system?</h3>
Domain name system is abbreviated as DNS.
A Domain Name System (DNS) converts domain names into IP addresses, which allow browsers to get to websites and other internet resources.
Basically, DNS is a directory of names that match with numbers.
Computer uses IP addresses to communicate, therefore, the DNS convert domain names to IP address for communication.
The two major types of DNS request are as follows;
- Recursive Query - Query that demands a resolution
- Iterative Query - Query that does not demand a resolution.
learn more on DNS here: brainly.com/question/14397200
#SPJ11
Answer:
a variable of type "double" is more suitable for finding average because average could be any number with decimal places. we can't use a variable of type "integer" because it will omit the value after the decimal and will not produce satisfactory results.
Explanation:
an example of C++ code is given to find the average of two numbers a and b
#include <iostream>;
using namespace std;
int main() {
double a = 2.334;
double b = 34;
double average = (a + b) / 2;
cout << average;
return 0;
}