• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/13

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

13 Cards in this Set

  • Front
  • Back

What are the three types of comments in C#?

Answers:


1.Single line (//)


2.Multi (/* */)


3.Page/XML Comments (///).

What is Serialization?

Answer:
Serialization is the process of converting an object into a stream of bytes.

What is De-serialization?

Answer:


De-serialization is the process of creating an object from a stream of bytes.

What does Public mean?

Answer:


Public declared variables or methods are accessible anywhere in the application.

What does Static mean?

Answer:


The keyword static declares that the variables or methods are globally accessible without creating an instance of the class.

What does Void mean?

Answer:


The keyword void is a type modifier that states that the method or variable does not return any value.

Is C# managed or unmanaged code?

Answer:


C# is managed code.

What is an Interface?

Answer:
An interface is a file that can hold method declarations, but nothing else. They can be inherited from, and the child class can implement its methods.

Does C# support Multiple Inheritence?

Answer:


With C#, you may inherit from multiple interfaces, but you may only inherit from one class.

What is a Delegate?

Answer:


A Delegate allows you to pass a method of one class to objects of another class that can call these methods. Think C++ function pointers;

What is an ArrayList?

Answer:


An ArrayList is a dynamic array of elements. Think C++ Vectors.

What is a Sealed Class?

Answer:


Using the "Sealed" keyword on a class prevents that class from being derived from.

What is the difference between the Stack and the Heap?

Answers:


The Stack is a Static block of memory, used to store parameters, local variables, etc. The Stack fluctuates in size as functions enter and exit the stack.

The Heap is a Dynamic block of memory that is used to store objects, such as static fields, constants, etc. The Heap takes care of the creation and storage of objects.