Answer:
Following are the statement in the c++ language
ifstream inFile; // declared a variable inFile
ofstream outFile;//declared a variable outFile
Explanation:
The ifstream and ofstream is the file stream object in the c++ Programming language .The ifstream file stream object is used for reading the contents from the file whereas the ofstream file stream object is used for writting the contents into the file.
ifstream variablename;
ofstream variablename
Answer:
CDN(content delivery network)
Explanation:
Content delivery network(CDN) which can as well be regarded as Content Distribution Network helps in acheiving high website performance, it essential in reduction of latency, through making the time a request is made using a website to when the website is fully loaded to be short and Minimal. It important in a situation whereby there is traffic loads from the users as well as server. It should be noted that CDN
is an information system that stores user data in many different geographical locations and makes that data available on demand. CDN's usefulness is also found in Cloud computing network such as Software as a service(SaaS). Google doc is an example.
B. Artificial General Intelligence (AGI)
The term that is described in the question is A. Artificial Narrow Intelligence.
Artificial intelligence simply means the ability of a computer system to automatically make decisions based on the input value received.
Artificial Narrow Intelligence is the computer's ability to do a single task well. It's used in today’s email spam filters, speech recognition, and other specific applications.
Read related link on:
Answer:
A. Artificial Narrow Intelligence.
Explanation:
Artificial intelligence is the ability of a computer system, with the help of programming, automatically make decisions as humanly as possible, based on the input value received. There are three types of artificial intelligence, namely, artificial narrow intelligence (ANI), artificial general intelligence (AGI) and artificial super intelligence (ASI).
ANI is focus on executing one specific task extremely well like web crawler, speech recognition, email spam filters etc. AGI is meant to handle human intellectual task, while ASI performs task beyond human intellect.
JLabel
JTextField
JFrame
Answer:
JTextField
Explanation:
JTextField is a Swing control which can be used for user input or display of output. It corresponds to a textfield and can be included with other controls such as JLabel, JButton,JList etc. on a comprehensive user interface which is application dependent. JTextField supports a read-write mode where the user can enter a value and it also supports a read-only mode which can be used to display non-editable output to the user.
The vertical space you define above or under the sides of your paragraphs
Answer:
#include <iostream>
#include <cstring>
#include <fstream>
using namespace std;
bool convertToUpper(const string &st);
int main()
{
string s;
cout << "Enter the string: " << endl;
getline(cin, s);
convertToUpper(s);
return 0;
}
bool convertToUpper(const string &st) {
if(st.length() == 0) {
return false;
} else {
ofstream myfile;
myfile.open ("Upper.txt");
for(int i=0;i<st.length();i++) {
if(st[i]>='a' && st[i]<='z') {
myfile << (char)toupper(st[i]);
} else {
myfile <<st[i];
}
}
myfile.close();
}
}