Answer:
#include <stdio.h>
void interchangeCase(char phrase[],char c){
for(int i=0;phrase[i]!='\0';i++){
if(phrase[i]==c){
if(phrase[i]>='A' && phrase[i]<='Z')
phrase[i]+=32;
else
phrase[i]-=32;
}
}
}
int main(){
char c1[]="Eevee";
interchangeCase(c1,'e');
printf("%s\n",c1);
char c2[]="Eevee";
interchangeCase(c2,'E');
printf("%s\n",c2);
}
Explanation:
- Create a function called interchangeCase that takes the phrase and c as parameters.
- Run a for loop that runs until the end of phrase and check whether the selected character is found or not using an if statement.
- If the character is upper-case alphabet, change it to lower-case alphabet and otherwise do the vice versa.
- Inside the main function, test the program and display the results.
Answer:
TT was created by Byte Dance in China on September 2016
Answer:Private cloud
Explanation: Education institute require some kind of security and reliability for their data so that it can remain secure between the students and the staff only and no unauthorized access can be done.
The setting up of the private cloud is a better method for sharing of the information among the institute because it is controlled by the internal sources only ,unlike the public cloud.This service enhances the security and is accessible by the organization members only with the on-request service feature.
If the technician needs to upgrade the RAM in a database server, the type of RAM that the technician need to install is ECC (Error correction code).
<h3>What is the server about?</h3>
An error correcting code (ECC) is known to be a kind of an encoding scheme that moves messages as a kind of a binary numbers.
Note that it often does this in a way that the message is one that can be gotten back even if a little or some bits are said to be erroneously flipped.
Hence, If the technician needs to upgrade the RAM in a database server, the type of RAM that the technician need to install is ECC (Error correction code).
See full question below
A technician needs to upgrade the RAM in a database server. The server's memory must support maintaining the highest levels of integrity. Which of the following type of RAM should the technician install?
ECC (Error correction code)
Parity
Non-parity
SODIMM
Learn more about RAM from
brainly.com/question/13196228
#SPJ1