Most are wireless routers, meaning converged devices that include a WAP,router<span>, and often an </span>Ethernet switch<span> in the same device.</span>
Answer:
These changes has the ability to decrease the size of a program, it
can do so by going ahead to reduce the instances in which the register contents “spill” into other registers or memory, it also does so by allowing more complex operations to be implemented in one instruction as agianst requiring multiple instructions.
On the other hand they are likely able to increase the size of a program by requiring adding bits to the opcode and register fields, thereby increasing memory width
Explanation:
See answer
think about what she wants to do with her life and what collage is best fit for that
Answer:
C++ code for encryption is given below
Explanation:
#include <iostream>
using namespace std;
//functions to encrypt and decrypt
void encrypt(char str[]);
void decrypt(char str[]);
int main(){
char str[200];
bool done = false;
while(!done){
cout << "Enter a string (enter * to stop): ";
cin.getline(str, 200);
if(str[0] == '*' && str[1] == '\0')
done = true;
else{
encrypt(str);
cout << "Encrypted: " << str << endl;
decrypt(str);
cout << "Decrypted: " << str << endl;
}
cout << endl;
}
}
void encrypt(char str[]){
int i = 1;
for(int j = 0; str[j] != '\0'; j++){
str[j] += i;
i++;
if(i == 11)
i = 1;
}
}
void decrypt(char str[]){
int i = 1;
for(int j = 0; str[j] != '\0'; j++){
str[j] -= i;
i++;
if(i == 11)
i = 1;
}
}
Answer:
the full form of BD binary digits