1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Leto [7]
3 years ago
6

Which type of query prompts the end user for input?.

Computers and Technology
1 answer:
Vanyuwa [196]3 years ago
3 0

A type of query that prompts an end user for input is a <u>parameter query</u>.

<h3>What is a query?</h3>

A query can be defined as a computational request for data (information) that are saved either in a database table, from existing queries, or from a combination of both a database table and existing queries.

<h3>The types of query.</h3>

In Computer technology, there are five main types of query and these include:

  • Select query
  • Action query
  • Crosstab query
  • SQL query
  • Parameter query

Generally, a <u>parameter query</u> is a type of query that is designed and developed to prompt an end user for input.

Read more on query here: brainly.com/question/25266787

You might be interested in
In the welding operations of a bicycle manufacturer, a bike frame has a long flow time. The set up for the bike frame is a 7 hou
mestny [16]

Answer:

Bike Frame Flow Time

The value-added percentage of the flow time for this bike frame is:

= 46.

Explanation:

a) Data and Calculations:

Bike Frame Flow Time:

Setup time = 7 hours

Processing time = 6 hours

Storage time = 7 hours

Flow time of the bike frame = 13 hours (7 + 6)

Value-added percentage of the flow time for this bike frame = 6/13 * 100

= 46%

b) Flow time represents the amount of time a bicycle frame spends in the manufacturing process from setup to end.  It is called the total processing time. Unless there is one path through the process, the flow time equals the length of the longest process path.  The storage time is not included in the flow time since it is not a manufacturing process.

8 0
3 years ago
"What is the term given to a design feature that consists of a window or window-like protrusion coming out of the roofline on a
LenKa [72]

Answer:

Dormer is the correct answer.

Explanation:

It is also the roof-like structured room that is on the top of the house. In simple words, It is the room in which a window which displays in a vertical manner from the sloping roof. It is the top room of the house.

So, the dormer is that type room which includes a window coming out on a roofline on a house.

6 0
3 years ago
Which branch of study can help Jessica study the concept of light
Fiesta28 [93]

Answer:

Physics, Quantum Mechanics

Explanation:

Light is a stream of photons with no weight. If you want to dig deeper in this mysterious phenomena, you should study physics and quantum mechanics. Physics takes up things like the theory of relativity, which can be useful in studying spacetime and how light travels through it, and quantum mechanics, being the study of matter in an atomic level, should help you get an understanding on how photons of light travel and why they behave so strangely.

4 0
3 years ago
AYUDAAAA!!!!! URGENTE!!!!!!1<br> ¿para que sirve la "BIG DATA"?
Lisa [10]

Answer:

Big data is a field that treats ways to analyze, systematically extract information from, or otherwise deal with data sets that are too large or complex to be dealt with by traditional data-processing application software. ... Big data was originally associated with three key concepts: volume, variety, and velocity.

SPANISH TRANSLATION

Big data es un campo que trata formas de analizar, extraer sistemáticamente información de, o de otra manera tratar con conjuntos de datos que son demasiado grandes o complejos para ser manejados por el software tradicional de aplicación de procesamiento de datos. ... Big data se asoció originalmente con tres conceptos clave: volumen, variedad y velocidad.

7 0
3 years ago
Write a program that uses a two-dimensional array to store the highest and lowest temperatures for each month of the year. The p
Cerrena [4.2K]

Answer:

#include <iostream>

#include <fstream>

#include <cstdlib>

#include <iomanip>

using namespace std;

void getData(int array [12][2], ifstream& infile);

double averageHigh (int array [12][2]);

double averageLow (int array [12][2]);

int indexHighTemp (int array [12][2], ofstream& outfile);

int indexLowTemp (int array [12][2], ofstream& outfile);

int main()

{

int array [12][2];

int high;

int low;

ifstream infile;

ofstream outfile;

infile.open("E:\\program6input.txt");

outfile.open("E:\\program6ouput.txt");

outfile << "Daniel" <<endl;

outfile<<endl;

outfile<<fixed<<showpoint<<setprecision(2);

getData(array, infile);

averageHigh(array);

outfile << setw(18) << left << "Average High Temp:" << averageHigh (array)<<endl;

averageLow (array);

outfile << setw(18) << left << "Average Low Temp:"<<averageLow (array)<<endl;

high = indexHighTemp (array, outfile);

low = indexLowTemp (array, outfile);

outfile << setw(18) << left << "Highest Temp:";

outfile << high << endl;

outfile << setw(18) << left << "Lowest Temp:";

outfile << low << endl;

infile.close();

outfile.close();

system("pause");

}

void getData (int array[12][2], ifstream& infile)

{

int x;

int y;

for(x=0; x<12; x++)

{

for(y=0; y<2; y++)

{

infile >> array[x][y];

}

}

}

double averageHigh (int array [12][2])

{

double avg;

double sum;

int x;

int y;

avg = 0;

sum = 0;

for (x = 0; x<12; x++)

{

{

sum = sum + array[x][0];

}

}

avg = sum / x;

return avg;

}

double averageLow (int array[12][2])

{

double avg2;

double sum2;

int x;

int y;

avg2=0;

sum2=0;

for (x=0; x<12; x++)

{

{

sum2 = sum2 + array[x][1];

}

}

avg2 = sum2 /x;

return avg2;

}

int indexHighTemp (int array[12][2], ofstream& outfile)

{

int highest;

int x;

int y;

int xx;

int yy;

highest = array[0][0];

for (x=0; x<12; x++)

{

for (y=0; y<2; y++)

{

if (highest < array[x][y])

{

highest =array[x][y];

xx=x;

yy=y;

}

}

}

outfile << setw(18) << left << "High Temp Index:"<< "[" << xx << ","<< yy<< "]" << endl;

return highest;

}

int indexLowTemp (int array[12][2], ofstream& outfile)

{

int lowest;

int x;

int y;

int xx;

int yy;

lowest = array[0][0];

for (x=0; x<12; x++)

{

for (y=0; y<2; y++)

{

if (lowest > array[x][y])

{

lowest = array[x][y];

xx = x;

yy = y;

}

}

}

outfile << setw(18) << left << "Low Temp Index:" << "[" << xx << "," << yy <<"]" << endl;

return lowest;

}

Explanation:

6 0
3 years ago
Other questions:
  • Which of the following statements outputs the value of the gpa member of element 1 of the student array?
    5·1 answer
  • PLEASE HELP ASAP i will mark brilliant
    12·2 answers
  • What type of accessory device can be used to measure AC current with a VOM without opening the circuit? A. Split inductor B. Amp
    13·1 answer
  • Which categories format cells
    14·2 answers
  • What is the difference between requirements and controls in the security process? Give examples of each.
    11·1 answer
  • Which of the following are NOT possible using the RANDOM(a, b) and DISPLAY(expression) abstractions?
    10·1 answer
  • You develop an app, and you don’t want anyone to resell it or modify it. This is an example of: A
    5·1 answer
  • It is the "executable" phrase of Word<br>Wide Web with dynamic applications,?<br>​
    9·1 answer
  • Answer for 3 and 4 please
    15·2 answers
  • A _____ focuses on creating software systems like tools, utilities, antivirus programs, and operating systems.
    12·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!