Font size
Worksheets7th standard foxpro
Total questions: 70
Worksheet time: 36mins
Unprocessed facts and figures is called ____
data
information
process
value
A collection of related records constitutes a ______
file
database
field
program
Numeric data type cannot exceed __digits in length.
20
8
4
2
The extension of memo file is ___
.fpt
.dbf
.prg
.idx
___ stands for index file
.idx
.fpt
.prg
.dbf
_____ is a logical operator which checks whether all the given conditions are True.
AND
OR
NOT
none of the above
Print command in VFP is __
?
@
*
The ______ command is used to assign a value to one or many memory variables.
store
let
assignment
?
Comments in VFP start with ____.
*
#
comments
" "
To assign a value to one memory variable __ is used.
=
assign
data
all the above
The maximum number of fields in VFP is ____
255
256
8
20
The ____ command determines the color attributes of the screen.
set colour to
change colour
background colour
bg clr
_________ is a memory location in the computer.
Variable
constant
data
information
Field name cannot exceed __ characters.
10
8
255
256
The extension of database file is __
.dbf
.idx
.fpt
.fpt
________command opens a database file.
use <file name>
open <file name>
modify command <file name>
do <file name>
The special character that is used in a file name or a field name is _____
underscore
comma
space
" "
_____ command displays all records in a scrolling manner.
list
display
?
_______ command displays records page wise.
display all
display
list
?
______ command is used to exit VFP.
quit
exit
close all
use
_____ command removes all records permanently from the database.
zap
pack
delete
erase
______ and ____ commands are used to move the record pointer.
skip
goto
move
position
The _____ command is used to add up the values of a field.
sum
add
summation
plus
____stands for End Of File.
EOF
EF
END
ENOF
__________ command adds records to end of file.
append
edit
add
end
_________ command adds record after the current record.
Insert
append
edit
add records
__________command is used to change the name of an existing file.
Rename
change
name
edit
__________ command duplicates a file in VFP.
Copy file
replicate
duplicate
rename
Renaming and copying cannot be done on________files.
open
closed
used
new
_________ is the process of rearranging records in a meaningful order.
sorting
arranging
indexing
processing
_______ is faster than sorting
indexing
printing
storing
deleting
The extension of a sorted file is____
.dbf
.idx
.fpt
.prg
Sorting cannot be done on ______ fields.
memo
string
text
numeric
_____________ command is used to activate index files.
set index to
set order to
activate
use
The order of priority of index files can be changed by ___________ command.
set order to
set index to
order
index
A function always returns __________
one value
no value
two values
more than 2
_________________ are enclosed within parenthesis upon which the function acts.
Arguments or parameters
values
requirements
function
The ___________ function returns the day number of the current date.
day (date ())
day()
date()
day(today)
The ___________ function returns the current system date.
date()
day()
date(day())
date(today)
The ___________ function returns a string containing blank spaces.
space()
blank()
empty()
none of the above
The __________function converts numeric expression to character string.
str()
string()
num()
char()
The __________ function returns the absolute value of the argument.
abs()
absolute()
math()
int()
The ______________ command executes a VFP program.
do<filename>
use <filename>
execute<filename>
output<filename>
_______ and _____ commands allow the user to enter data through the keyboard.
accept
input
enter
The ___ template converts letters to uppercase.
!
U
L
@
The_____ command enables the user to accept numeric data through the keyboard
INPUT
ACCEPT
?
________ is pressed to save a program file.
CTRL+W
CTRL+Q
ESC
Save
The _______ function rounds off the given number.
round()
int()
roundoff()
roundto()
The _________ clause is used to format data.
picture
@say
@get
input
VFP allows ___ independent variables.
256
255
8
10
A=5 and B= -5
?max((A+B),B)
what is the output?
0
-5
5
none of the above
The result of mod (3,4) =
3
4
0
1
_____________command is used to make a selection between two alternatives.
If else endif
do while
decision
selection
__________ means having an if-endif statement within another if-endif statement.
Nesting
looping
processing
decision making
__________is a pair of commands used to choose one set among several sets of alternatives.
do case
if else endif
do while
choose
_________________ commands are used to display a block of text.
Text - Endtext
?
block
_______________ is used to stop executing the loop and transfer the control to the beginning of the loop.
Loop statement
decision statement
exit statement
continue statement
The ____________ terminates the loop based on some conditions.
Exit statement
loop statement
continue statement
quit statement
Subprograms are otherwise called as ________________
subroutines or called programs.
calling program
functions
return
The ____________ command is the closing statement of Subprogram
return
close
end
quit
The _________ function is used to repeat a string for a given number of times.
replicate()
duplicate()
copy()
repeat()
______________ are programs executed from another program.
Subprograms
function
methods
high level program
?Round(6789.34,-2) =_________________
6800
6789.34
6790
6700
The___________function converts the given string to uppercase.
upper ()
!
toupper()
str()
? Str (8076.85)= _______
8077
8076
8076.85
error
?Int(37/2)=______
18
18.5
19
1
? Mod (20/4,4) = ____
1
4
0
5
The ____________ is used to invoke the VFP editor.
modify command < filename>
edit <file name>
open editor
use editor
The _____ function returns the specified number of rightmost characters
Right()
left()
?
rgt()
The ____ function returns -1 if a negative number is given
sign()
int()
abs()
mod()
