Answer:
No ip dns server.
Explanation:
The DNS stands for domain name services. It can be statically or dynamically configured to a workstation from the DHCP request. It resolves the ip address of a server to it's name, so a client is not burdened by memorizing the ip address of every website.
In the cisco ios, the "NO" command is used to negate other commands, so when a "no ip dns server" is used configured on a device, it stops every website name lookups.
A simple substitution cipher takes each vector (
) and assigns it to the vectors [
] in a one-to-one function so as to make them equivalent.
<h3>What is the Hill cipher?</h3>
In 1929, the Hill cipher was invented by Lester S. Hill and it can be described as a poly-graphic substitution cipher that is typically based on linear algebra and it avails a cryptographer an ability to simultaneously operate on more than three (3) symbols.
In Cryptography, the simple substitution cipher is usually viewed as a function which takes each plaintext letter (alphabet) and assigns it to a ciphertext letter. Thus, it takes each vector (
) and assigns it to the vectors [
] in a one-to-one function so as to make them equivalent.
Read more on Hill cipher here: brainly.com/question/13155546
#SPJ1
It sometimes takes less effort to move the mouse than to press keys in the keyboard.
But the keyboard is often more efficient than the mouse. Keyboard shortcuts can be used to get tasks done in an instant, way faster than a mouse. Repetitive actions are also much easier.
Answer:
#include <iostream>
#include<string.h>
using namespace std;
void printCharacter(string name){
for(int i=0;name[i]!='\0';i++){
cout<<name[i]<<endl;
}
}
int main()
{
string name;
cout<<"enter the name: ";
cin>>name;
printCharacter(name);
}
Explanation:
first include the two libraries iostream for input/output and string library for using the string.
then, create the main function and declare the variable type string.
cout instruction is used o display the message on the screen.
cin is used to store the value in the name variable.
after that, call the function. The program control move to the the function. In the function for loop is used to print the character one by one until end of the name.
The question answer is NUMBER B