Question
visual basic help

DI Question 3 2 pts You may only bind an object to a control that the computer creates for you O True O False D | Question 4
Question 7 2 pts Three styles of combo boxes are available in Visual Basic. True 0 False D | Question 8 2 pts TblStoresBindin
| Question 11 2pts Rather than having the computer use a default value to initialize each array element, you can specify each
DI Question 3 2 pts You may only bind an object to a control that the computer creates for you O True O False D | Question 4 2 pts The Do..Loop statement can be used to code both a pretest loop and a posttest loop. True False Question 5 2 pts You can prevent many unintentional errors from occurring in an application by declaring the variables using the maximum scope needed. True False 2 pts Question 6 The PadLeft and PadR ight methods pad a string with a character until the string is a specifed length.
Question 7 2 pts Three styles of combo boxes are available in Visual Basic. True 0 False D | Question 8 2 pts TblStoresBindingSource.Move First0 moves the record pointer to the first record in the datatset O True O False DQuestion 9 2 pts You can use Visual Basic to access the data stored in databases by using a database management system. True Faise 2 pts Question 10 After cresting your own function in Visual Basic you can Invoke it from one or more places in an application's code True 印se
| Question 11 2pts Rather than having the computer use a default value to initialize each array element, you can specify each element's initial value when the array is declared. O True False D Question 12 2 pts When you pass a variable by reference, the receiving procedure can change the value stored inside the variable. True O False Question 13 2 pts When an expression contains more than one operator having the same priority, those operators are evaluated from left to right. True False 2 pts Question 14 After an array is declared, you cannot use another statement to store a different value in an array element Step sharing
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Question 3

Answer: False
Explanation
: An object contains multiple columns, you can bind multiple controls to an object

Question 4

Answer: False
Explanation
: Do loop will first execute the block and then check the condition, it is only work for posttest loop.

Question 5

Answer: False
Explanation
: Always try to minimize the scope of variable as much as possible to avoid conflicting with other variables.

Question 6

Answer: True
Explanation
: Padding insures the string of same length as provided by adding given character to left or right or both.

Question 7

Answer: True
Explanation
: There are 3 styles available: a) Drop down combo, b) Simple Combo, c) Drop down list combo

Question 8

Answer: True
Explanation
: MoveFirst method move the cursor of datasource to start point.

Question 9

Answer: True
Explanation
: You can use database management.

Question 10

Answer: True
Explanation
: You can use your created function from application's code.

Question 11

Answer: True
Explanation
: Creation of array can be intialize

Question 12

Answer: True
Explanation
: Pass by reference means to pass the pointer, and pointer is use to change the value of any variable from anywhere,

Question 13

Answer: True
Explanation
: Same precedence operator evaluated from left to right.

Question 13

Answer: False
Explanation
: You can change the value of array whenever you want.

Add a comment
Know the answer?
Add Answer to:
visual basic help DI Question 3 2 pts You may only bind an object to a control that the computer creates for you O True O False D | Question 4 2 pts The Do..Loop statement can be used to code b...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Question 1 When you declare a variable of type Single, it contains 0 by default. True...

    Question 1 When you declare a variable of type Single, it contains 0 by default. True False Question 2 The following line declares an array that can contain whole numbers, with 10 elements. Dim Variables(9) As Integer True False Question 3 Once a variable is declared we can not change the variable's data type. True False Question 4 If A is False and B is True, then A Or B is True because A is False. True False Question 5...

  • Question 1 2 pts The preprocessor executes after the compiler. False True Question 2 2 pts...

    Question 1 2 pts The preprocessor executes after the compiler. False True Question 2 2 pts What code is human-readable and follows the standards of a programming language? Secret code Source code Key code None of these Machine code Question 3 2 pts What is the symbol that marks the beginning of a one line comment? Question 1 2 pts The preprocessor executes after the compiler. True False Question 5 2 pts A statement that may be used to stop...

  • Question 1 What is the value of x after the following int x = 5; x++;...

    Question 1 What is the value of x after the following int x = 5; x++; x++; x+=x++; A)14 B)10 C)13 D)15 Question 2 The last line in value returning function (before the }) should contain the word return. True False Question 3 This contains three parts: Void or Data Type the name optional parameter list A)Menu System B)Function Header C)Switch Question 4 What is a variable? A)a pointer B)a place in memory to hold data C)int D)a computer programming...

  • Question 2 1 pts A podcast can be used as a reference in an assignment topic. O True False 1 pts Question 3 When refere...

    Question 2 1 pts A podcast can be used as a reference in an assignment topic. O True False 1 pts Question 3 When referencing you must O Reference information sources in both the body of the assignment or report and in the reference list O Reference only those information sources that are publicly available O Reference information sources in the body of the assignment or report only o Reference information sources in the reference list only Question 4 1...

  • D Question 12 1.5 pts Check the true statements about NumPy arrays: O A single instantiated NumPy array can store multi...

    D Question 12 1.5 pts Check the true statements about NumPy arrays: O A single instantiated NumPy array can store multiple types (e.g., ints and strings) in its individual element positions. A NumPy array object can be instantiated using multiple types (e.g., ints and strings) in the list passed to its constructor O Memory freeing will require a double-nested loop. The number of bits used to store a particular NumPy array object is fixed. O The numpy.append(my.array, new_list) operation mutates...

  • I'm having trouble writing this code, can some help me? Step 1: Capturing the input The...

    I'm having trouble writing this code, can some help me? Step 1: Capturing the input The first step is to write a functionGetInput()that inputs the expression from the keyboard and returns the tokens---the operands and operators---in a queue. You must write this function. To make the input easier to process, the operands and operators will be separated by one or more spaces, and the expression will be followed by #. For example, here’s a valid input to your program: 6...

  • DI Question 2 1.5 pts Which situations allow the client main() in the file my_program.py to access a method name, say f...

    DI Question 2 1.5 pts Which situations allow the client main() in the file my_program.py to access a method name, say func(), alone, as in x-func) without dereferencing it using prepended name like modname.func or x = some object. func () or x-SomeClass.func() O func) is defined in some module, say, "modname.py" and modname is imported into my_program.py using: from modname import func() is an instance method or a class method in a class, say SomeClass, defined in the same...

  • True False Question 2 (3 points) Given a singly linked list with more than two nodes,...

    True False Question 2 (3 points) Given a singly linked list with more than two nodes, to remove the second node from a linked list with only head reference, assume curr - head, next, you do Set curr.next to head.next Oset head. next to curr.next Set head, next to curr Oset head to curr.next TL th Question 3 (3 points) Given the following singly linked list (a list with four nodes), what will be the value stored at the last...

  • JAVA 3 PLEASE ANSWER AS MANY QUESTIONS AS POSSIBLE! ONLY 2 QUESTIONS LEFT THIS MONTH!!! Question...

    JAVA 3 PLEASE ANSWER AS MANY QUESTIONS AS POSSIBLE! ONLY 2 QUESTIONS LEFT THIS MONTH!!! Question 12 pts Which is a valid constructor for Thread? Thread ( Runnable r, int priority ); Thread ( Runnable r, String name ); Thread ( int priority ); Thread ( Runnable r, ThreadGroup g ); Flag this Question Question 22 pts What method in the Thread class is responsible for pausing a thread for a specific amount of milliseconds? pause(). sleep(). hang(). kill(). Flag...

  • These are my answere to the following questions: are they right? 1. B 2. T 3....

    These are my answere to the following questions: are they right? 1. B 2. T 3. T 4. T 5. F 6. T 7. A 8. D 9. E 10. B 11. B 12. A 13. A 14. D 15. C 16. D 17. T 18. C 19. T 20. T 21. T 22. A 23. T 24. D 25. B 26. A 27. A 28. A 29. T 30. C 31. D 32. A 33. T 34. F 35....

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT