Choose a topic to test your knowledge and improve your VB.Net skills
The __________ in a flowchart is called input/output symbol.
The lines connecting the symbols in a flowchart are called as ______
A __________ is defined as a zero or more characters enclosed in quotation marks.
The __________ statement in pseudocode acts like loop.
The __________ statement is used to assign a value to a property of an object.
An arithmetic expression contains one or more _____
The __________ numbers indicate the order in which the computer performs the operation in an expression.
You can use __________ to override the order of precedence.
________ and __________ operators use same symbol.
Unary and Binary refer to the number of __________ needed by the operator.
When an expression contains more than one operator with same priority, then they are evaluated according their ______
The __________ operator is used to divide two integers.
The __________ operator returns the remainder of the division.
To include a percentage in arithmetic operators we use ____
The __________ operator is commonly used to determine whether a number is even or odd.
______ data is a data that the application is expecting the user to enter.
______ refers to the process of locating and correcting errors.
Errors are called as __________ in a program.
A __________ occurs when you break the rules of the language.
A __________ occurs while forgetting to enter an instruction, or entering the instruction in wrong order.
____ the documentation refers to putting the documentation in a safe place.
A __________ is a predefined procedure that performs a specific task.
The __________ function temporarily converts the string to a number and then returns the number.
_______ is used to improve the appearance of numbers in an interface.
A suggestion for fixing the error appears in the _____
______ is used to store temporary data by programmers.
______ determines the type of data stored in a variable.
______ is the universal coding scheme for characters.
”dblMy Age “what is the problem with this variable name?
Declaring a variable tell the computer to allocate a memory space that can be accessed by the variable name. The size of the memory space depends on?
_____ data type can store any type of data.
String data type can store from zero to ___________ Unicode characters.
The range of Integer data type is ______ to _______
The Char data type can store _______
The variable name is also termed as ________
An __________ statement is used to assign a value to an existing variable.
A __________ is an item of data whose values do not change while the application is running.
The data type of the value assigned should be same as ______
The string literal are enclosed in ______
While entering a numeric literal constant you need not enter a _____
A __________ forces a literal constant to assume a data type other than the one its form indicates.
A variable can store __________ value at a time.
The __________ method converts a string to a number.
If the tryparse method determines that the string cannot be converted to the data type, it assigns __________ to the variable.
To covert a number from one data type to another, you use the _____
A variable’s ______ indicates where the variable can be used in an application code.
A variable’s ______ indicates how long the variable stays in the computer’s internal memory.
Variables declared in a form’s declaration section have _____________ scope.
Variable declared in a procedure have ______________ scope.
Variables declared in a block have _____________ scope.