Answer:
// CPP program to Convert characters
// of a string to opposite case
#include<iostream>
using namespace std;
// Function to convert characters
// of a string to opposite case
void convertOpposite(string &str)
{
int ln = str.length();
// Conversion according to ASCII values
for (int i=0; i<ln; i++)
{
if (str[i]>='a' && str[i]<='z')
//Convert lowercase to uppercase
str[i] = str[i] - 32;
else if(str[i]>='A' && str[i]<='Z')
//Convert uppercase to lowercase
str[i] = str[i] + 32;
}
}
// Driver function
int main()
{
string str = "GeEkSfOrGeEkS";
// Calling the Function
convertOpposite(str);
cout << str;
return 0;
}
Explanation:
Answer:
The correct answer is PGP i.e "Pretty Good Privacy" .
Explanation:
Pretty Good Privacy is an encryption algorithm that gives the database interaction with the confidentiality and authorization.Pretty Good Privacy is security algorithm which gives the security into the mail . login ,decryption ,encryption are the example of the "Pretty Good Privacy" .
Pretty Good Privacy is a type of hybrid cryptosystem that incorporates cryptographic algorithms and it has de facto open source standard for the mail and the file storage .
WordArt fill in the interior of a letter can consist of a solid color, texture, picture, or gradient.
Answer:
Explanation:
1. data type which allows quick retrieval of the name of a song given the name of a playlist(or album) and the track number would be :
map
It can be defined as a key-value pair where combination of playlist-track number would be the the key and song name/details would be the value for that corresponding key
2. data type to store the text of the steps of a recipe for how to bake a cake would be :
list
list of string datatype can be used : each item in the list will have recipe in the data part of the node
3. data type for storing file extension with the possible programs that are able to read/open that kind of file wold be
set
It can be defined as a key-value pair where file extension would be the the key and possible program list would be the value for that corresponding key
4. data type that stores all the TV station identifications (e.g. KABC, KNBC, etc..) would be :
map
as there is no duplication in the names of TV station so map with key/value pair of TV station name /details would be appropriate to be used
Answer:
Steve Jobs (Feb 24, 1955 – October 5, 2011) was an American businessman and inventor who played a key role in the success of Apple computers and the development of revolutionary new technology such as the iPod, iPad and MacBook
Explanation: