Fundamentals of Computer Information Systems Quiz

  • ISO/IEC 27001
  • COBIT
  • ITIL
Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Thames
T
Thames
Community Contributor
Quizzes Created: 6802 | Total Attempts: 9,513,834
| Questions: 24
Please wait...
Question 1 / 24
0 %
0/100
Score 0/100
1. What type of error would be flagged by the editor?

Explanation

A syntax error is an error in the syntax of a sequence of characters or tokens that is intended to be written in a particular programming language. Incorrect syntax will be identified by the editor during the compilation process.

Submit
Please wait...
About This Quiz
Fundamentals Of Computer Information Systems Quiz - Quiz

This quiz assesses knowledge in Computer Information Systems (CIS), focusing on understanding key concepts, systems management, and security protocols. It is designed to enhance practical skills and theoretical understanding, essential for students and professionals in the field.

Tell us your name to personalize your report, certificate & get on the leaderboard!
2. The line abc = "xyz" is an example of this type of statement.

Explanation

In the given statement, abc is being assigned the value of "xyz", indicating an assignment operation.

Submit
3. In this statement listbox.Items.add we expect n to be one of these

Explanation

In the given statement, 'listbox.Items.add', 'n' is expected to be a variable as it is being used as a placeholder for the item being added to the listbox. It can represent any kind of data such as integers, strings, or booleans.

Submit
4. Which character is used to begin a comment in code?

Explanation

In many programming languages, the forward slash (/) is used to begin comments in code, allowing developers to add notes and explanations without affecting the functionality of the program.

Submit
5. What property setting controls what is displayed on a form's title bar?

Explanation

The property 'title' specifically controls what is displayed on a form's title bar. 'text', 'header', and 'style' do not directly govern the content shown on the title bar.

Submit
6. Which keyword is used to declare a statement?

Explanation

The keyword 'dim' is commonly used in programming languages like BASIC to declare variables or allocate storage space for the statement. The other keywords 'for', 'print', and 'while' have different purposes and are not used for declaring statements.

Submit
7. What is the process of locating and correcting errors within a computer program?

Explanation

Debugging is the process of finding and fixing errors within a computer program. Compiling refers to translating source code into executable code, encrypting is the process of encoding information to protect it, and formatting involves organizing data in a specific layout.

Submit
8. The value of x after the following statement: x = CStr(Math.Round(13/2)).

Explanation

When dividing 13 by 2 and rounding the result, the answer comes out to be 6. The CStr function converts the numeric value to a string, hence the final value of x is '6'.

Submit
9. VB is one example of this type of programming language.

Explanation

VB, which stands for Visual Basic, is a higher-level programming language that is designed to be easier to read and write compared to low-level languages like machine language. Scripting languages, on the other hand, are typically used for automating tasks and interactions with software applications.

Submit
10. What property controls whether or not an object will be seen?

Explanation

The correct answer is 'visible' because this property determines whether the element is visible or hidden on the webpage. 'Hidden', 'opacity', and 'display' are incorrect as they represent different CSS properties.

Submit
11. What are the three basic operations performed by most computer programs?

Explanation

Computer programs typically involve taking input data, processing it in some way, and producing output based on the processed information.

Submit
12. Which of the following statements would declare a new variable named ABC and assign it the value of 39.99?

Explanation

In this scenario, the correct answer includes declaring a new variable named ABC of type DOUBLE and assigning it the value of 39.99 using the DIM statement. The other options do not follow the correct syntax for variable declaration and assigning values in many programming languages.

Submit
13. What is the value of x after this statement has been executed: x = 4 + 3 * 5 - ?

Explanation

To find the value of x, we follow the order of operations (PEMDAS). First, we multiply 3 by 5 to get 15. Then we add 4 to 15 to get 19. Finally, no subtraction operation is provided, so the value of x is 19.

Submit
14. The value of x after the statement has been executed: x = "first exam".Length.

Explanation

The correct answer is 10 because the length of the string "first exam" is 10 characters including spaces.

Submit
15. Which statement changes the textbox color in text box, txtbox1, to blue?

Explanation

The correct statement to change the textbox color in txtbox1 to blue is Textbox1.forecolor = .color.blue. This code specifically targets the forecolor property of the txtbox1 textbox and sets it to the color blue.

Submit
16. What would be outputted if the following code is executed: txtbox.Text = FormatCurrency(3465.789)?

Explanation

The FormatCurrency function formats a number as a currency value using the default currency format defined in the system's regional settings. In this case, the number 3465.789 would be formatted as $3,465.79 with two decimal places.

Submit
17. What is the value of a after the following statement: a = "09/28/10".Substring(4,2)?

Explanation

The Substring(4,2) method extracts 2 characters starting from the 5th position in the string. In this case, the characters '8/' are extracted, resulting in the value of '8' assigned to variable 'a'.

Submit
18. What is a user action that causes code to be executed?

Explanation

An event is a user action that triggers the execution of code. Functions, variables, and loops do not necessarily require a user action to be executed.

Submit
19. What is the term for the process of joining two strings together to form a new string?

Explanation

Concatenation is the process of combining two strings end-to-end. Interpolation involves inserting variables or expressions into strings. Aggregation refers to the process of combining multiple data values. Mutation is the process of changing individual characters within a string.

Submit
20. What are the three acceptable VB programming language structures?

Explanation

In Visual Basic programming, the three acceptable language structures are sequential, decision, and repetition. These structures help in organizing the code and controlling the flow of the program.

Submit
21. What event procedure is triggered when you double click on a textbox?

Explanation

The correct answer is 'DoubleClick' because this event is specifically triggered when a user double clicks on a textbox, not when the text within the textbox changes ('TextChange'), when the mouse hovers over the textbox ('MouseHover'), or when a key is pressed ('KeyPress').

Submit
22. Which statement should be used to display a message box with the message 'Good Luck'?

Explanation

The correct method to display a message box is using 'messagebox.show("Good Luck").' The other options provided do not follow the correct syntax for displaying a message box.

Submit
23. Which character is used to indicate an access key?

Explanation

The correct character used to indicate an access key is the ampersand '&'. It is commonly used in programming languages and web development to signify keyboard shortcuts or access keys for users.

Submit
24. What is the function that converts a string into a double?

Explanation

The correct function in Microsoft Excel to convert a string into a double is Cdbl. This function is used to convert any data type into a double-precision floating-point number.

Submit
View My Results

Quiz Review Timeline (Updated): Aug 4, 2025 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Aug 04, 2025
    Quiz Edited by
    ProProfs Editorial Team
  • Aug 04, 2025
    Quiz Created by
    Thames
Cancel
  • All
    All (24)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
What type of error would be flagged by the editor?
The line abc = "xyz" is an example of this type of statement.
In this statement listbox.Items.add we expect n to be one of these
Which character is used to begin a comment in code?
What property setting controls what is displayed on a form's title...
Which keyword is used to declare a statement?
What is the process of locating and correcting errors within a...
The value of x after the following statement: x =...
VB is one example of this type of programming language.
What property controls whether or not an object will be seen?
What are the three basic operations performed by most computer...
Which of the following statements would declare a new variable named...
What is the value of x after this statement has been executed: x = 4 +...
The value of x after the statement has been executed: x = "first...
Which statement changes the textbox color in text box, txtbox1, to...
What would be outputted if the following code is executed: txtbox.Text...
What is the value of a after the following statement: a =...
What is a user action that causes code to be executed?
What is the term for the process of joining two strings together to...
What are the three acceptable VB programming language structures?
What event procedure is triggered when you double click on a textbox?
Which statement should be used to display a message box with the...
Which character is used to indicate an access key?
What is the function that converts a string into a double?
Alert!

Advertisement