When you ________, you select a value in a record and Access filters the records that contain only the values that match what you have selected
A) use the Find command B) use the Replace command
C) use the Navigation bar D) filter by selection
D
Computer Science & Information Technology
You might also like to view...
Excel can export PDF files
Indicate whether the statement is true or false
Computer Science & Information Technology
What is the output of the following code fragment?
int f1(int x, int y)
{
if(x<0 || y<0)
return x-y;
else
return f1(x-1,y) + f1(x,y-1);
}
int main()
{
cout << f1(2,1)<
Computer Science & Information Technology