In C#, when something interesting happens to an object, what is said to have occurred?

A. an error
B. an event
C. a memory dump
D. a method callback


Answer: B

Computer Science & Information Technology

You might also like to view...

Assuming that a = 1, b = 2, and c = 3, which of the following expressions is true?

a. both a < b and c < b b. either a > b or b > c, or both c. both b > a and b < c d. either a == b or b == c, or both e. None of these

Computer Science & Information Technology

What is the Office 365 tenant account and how is it used with Intune?

What will be an ideal response?

Computer Science & Information Technology

________ shows how the report would look in a continuous page layout

A) Report view B) Print Preview C) Layout view D) Design view

Computer Science & Information Technology

Which of the following statements declares a function with a pointer variable as a parameter?

A. void fun (int ptr); B. void fun (&int ptr); C. void fun (*int ptr); D. void fun (int& ptr); E. void fun (int* ptr); 

Computer Science & Information Technology