To search for a pattern, you can use a ____________________ character, a symbol you can use as substitute for characters to find information that matches your find criteria.

Fill in the blank(s) with the appropriate word(s).


wildcard

Computer Science & Information Technology

You might also like to view...

Which of the following backup types backs up anything that has changed since the last backup of any type?

A) Differential B) Cumulative incremental C) Incremental D) Full

Computer Science & Information Technology

Readers, writers and editors are the basic people the make up a wiki

a. editorial team. b. dream team. c. commune. d. community.

Computer Science & Information Technology

What will happen if the data type of pointsPossible is changed from double to int?

// This program determines the percentage grade on
// an exam, given the number of questions missed,
// how many points each question was worth,
// and the total points possible.

#include 
using namespace std;

int main()
{
int		pointsPerQuestion;
int		numberMissed;
double	percentageGrade;
double	pointsPossible;

cout << "Enter the total points possible on the exam => ";
cin  >> pointsPossible;
cout << endl;
cout << "Enter the number of points per question => ";
cin  >> pointsPerQuestion;
cout << endl 
cout <<"Enter the number of questions missed => ";
cin >> numberMissed;

percentageGrade = pointsPossible - numberMissed * pointsPerQuestion  /   					pointsPossible  *  100;

cout << endl << "The percentage grade is ";
cout << percentageGrade << "%";

return 0;
}

Computer Science & Information Technology

A CSV file contains values separated by semicolon delimiters.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology