Answer:
Option(c) is the correct answer.
Explanation:
Cross-site scripting is the type of security breach that are usually found in the software applications.The main objective of cross site scripting it is used by the hackers to exploit the data security.
- The cross site scripting is the collection of web pages that enables people to insert the text like comment, name stores it afterwards it save the data and then it appears to the other users.
- Others options are incorrect because they are not related to given scenario.
The assignment is about Telephone, internal combustion engine, and electrical light.
<h3>What is file?</h3>
A file is a computer system container for storing data. Files used in computers are similar in characteristics to paper documents used in libraries and office files. There are different types of files like text files, data files, folders, binary and graphic files and these different types of files store different types of data. A computer's operating system can store files on optical discs, hard drives, or other types of storage devices.
In most operating systems, a file must have a unique name within a specific directory. However, when creating a file name, some characters are considered illegal and therefore cannot be used. A file name consists of a name with an extension, also known as a file extension. The file extension is the two to four characters after the period of the full file name.
To learn more about file, refer;
brainly.com/question/29055526
#SPJ4
Answer:
<h2>Mapping</h2>
Explanation:
<h2>Hope it helps you</h2>
A. Small impurities can cause big changes in the color of a mineral.
Answer:
See explaination
Explanation:
balloon.h
#ifndef BALLOON_H
#define BALLOON_H
enum Color {red, orange, yellow, green, blue, indigo, violet};
#endif
main.cpp
#include <iostream>
#include <string>
#include <vector>
#include "balloon.h"
using namespace std;
int main( )
{
vector<Color> colors;
Color color;
string input;
while(true){
cout<<"What color do you want to add? ";
cin>>input;
if(input=="end"){
break;
}else if(input=="red"){
color = red;
colors.push_back(color);
}else if(input=="orange"){
color = orange;
colors.push_back(color);
}else if(input=="yellow"){
color = yellow;
colors.push_back(color);
}else if(input=="green"){
color = green;
colors.push_back(color);
}else if(input=="blue"){
color = blue;
colors.push_back(color);
}else if(input=="indigo"){
color = indigo;
colors.push_back(color);
}else if(input=="violet"){
color = violet;
colors.push_back(color);
}
}
for(int i=0;i<colors.size();i++){
cout<<colors[i]<<endl;
}
return 0;
}