SUBJECTS
|
BROWSE
|
CAREER CENTER
|
POPULAR
|
JOIN
|
LOGIN
Business Skills
|
Soft Skills
|
Basic Literacy
|
Certifications
About
|
Help
|
Privacy
|
Terms
|
Email
Search
Test your basic knowledge |
C# Programming Basics
Start Test
Study First
Subject
:
it-skills
Instructions:
Answer 50 questions in 15 minutes.
If you are not ready to take this test, you can
study here
.
Match each statement with the correct term.
Don't refresh. All questions and answers are randomly picked and ordered every time you load a test.
This is a study tool. The 3 wrong answers for each question are randomly chosen from answers to other questions. So, you might find at times the answers obvious, but you will see it re-enforces your understanding as you take the test each time.
1. Instance of a type created when a program runs. Can be visible or invisible. Has properties and events and methods. Properties- determine appearance. Events - trigger a response. Methods - something the object does
Object
Syntax
Encapsulation
Visual Studio Solution
2. (= or += or -= or = or /=)
byte - .NET alias
Assignment Operator
JIT
Boolean - Size
3. Framework Class Library
Equality Operator
Double (or double) - Size
Abstract Class Modifier
FCL
4. A Class from which other classes can inherit characteristics.
Partial Method Modifier
Base Class
Static Member
Value Type
5. Specifies that the Method includes no implementation and must be overridden in a deriving class - where it will get its definition. Can only be part of an Abstract Class.
Assembly
Field
Virtual Method Modifier
Abstract Method Modifier
6. 16 bit - unsigned integer data (0 to 65535)
ushort - Size
String (or string)
C#
Unary Operator
7. System.Int16
using
short - .NET alias
sbyte - Size
ulong - Size
8. 8 bit - unsigned byte (0 - 255)
long - Size
byte - Size
Statement
short - Size
9. A standardized (ECMA) language for creating Windows .NET applications and services and libraries - with a syntax similar to Java and C++.
Variable (C# requirements)
Private Access Modifier
C#
using
10. System.Single
Sealed Class
float - .NET alias
CLR
Reference Type
11. A representation of an area in the computer memory in which a value of a particular data type can be stored.
Variable
W.P.F
Keyword
uint - Size
12. Field whose value can never change. Declared with 'const' keyword
ulong - .NET alias
Constant
Primitive Type
Incrementing / Decrementing Variables
13. Represents the encapsulation of data and behaviors into a single unit.
Class
Variable (C# requirements)
Float (or float) - Size
int - Size
14. Indicates that the Method can be overridden.
Virtual Method Modifier
Identifiers
NET
Partial Class Modifier
15. Code which implements GUI (graphical User Interface).
Just-in-time (JIT
Variable
Partial Class Modifier
C# mark Up Language X.A.M.L(Extensible Application Markup Language)
16. Four things common to all software development: _______ - Flow of Control - Identifiers & Arguments - Testing / Debugging
short - Size
If Statement
Derived Class
Data structures
17. The lowest level or fundamental data types needed for representing data.
Variable
Primitive Type
Statement
Console Application
18. Runs in a command prompt window rather than a GUI (graphical User Interface) one.
ulong - .NET alias
Console Application
long - .NET alias
Inheritance
19. 64 bit integer data
Partial Method Modifier
ushort - .NET alias
returnType methodName (parameterList)
long - Size
20. A Class that can only have Static Members
Static Class
Derived Class
double - .NET alias
Label
21. Allows a Method to be defined in a separate file (within the same Project). If no definition is found the compiler excludes the Method as an optimization.
Partial Method Modifier
Class Statement
DateTime
Relational Operator
22. Calculation whose result is either true or false but cannot be both E.g. == Equal to. != Not Equal too. < Less than. <= Less than of equal to. > Greater than. >= Greaten than or equal to. && AND (Conditional) ->|| OR (Conditional)
Encapsulation
Boolean Operator
Abstract Class Modifier
JITer
23. Just-in-time compilation
Operator
JIT
byte - .NET alias
Double (or double) - Size
24. System.SByte
Syntax
Decimal (or decimal) - Size
Assembly
sbyte - .NET alias
25. Container for one or more Visual Studio Projects.
Visual Studio Solution
References (Visual Studio Solution
Identifiers
Virtual Method Modifier
26. Restricts access to a Member to the current Class and any Derived Class.
Protected Internal Access Modifier
returnType methodName (parameterList)
Textbox
Protected Access Modifier
27. System.Char
char - .NET alias
Comments
Just-in-time (JIT
Abstract Method Modifier
28. 128 bit fixed precision (financial)
Heap
Program
Decimal (or decimal) - Size
Inheritance
29. Restricts access to a Member to the current Class.
References (Visual Studio Solution
Expression
Private Access Modifier
Keyword
30. Keyword which exposes members to other classes OR Identifier which makes program elements public
Public Keyword
float - .NET alias
Inheritance
Assembly
31. System.Byte
Statement
Field
byte - .NET alias
CLR
32. System.UInt32
Operator
uint - .NET alias
using
ulong - .NET alias
33. 64 bit - unsigned integer data
Abstract Method Modifier
ulong - Size
Operator
Class aka Type
34. A combination of language identifiers and data and operators and expressions that constitute a single line of syntactically correct & executable code.
Statement
Object
DateTime
Method
35. Thing which gives something a value. E.g. Assignment Expression uses the '=' operator to assign a variable value such as x = y * 5
Expression
byte - .NET alias
sbyte - Size
Variable
36. Integrated Development Environment
While Statement
IDE
Abstract Method Modifier
FCL
37. If (boolean expression) //true -> statement 1 statement1; else //false -> statement2 statement; //else statement2 optional
Encapsulation
Identifiers
Primitive
If Statement
38. The act of generalizing or thinking about an object in general terms. The act of identifying the data members and behavior of a Class.
Properties
float - .NET alias
returnType methodName (parameterList)
Abstraction
39. Specifies that a Class cannot be instantiated but can only be used as the Base Class from which other Classes are derived.
Unary Operator
Abstract Class Modifier
Protected Access Modifier
Encapsulation
40. The member type of a Class that performs an action.
Object
short - Size
double - .NET alias
Method
41. (< or > or <= or >=)
Framework Class Library (FCL)
String (or string)
Relational Operator
char - Size
42. Windows Presentation Foundation
IDE
Float (or float) - Size
W.P.F
Operator
43. Characteristics of an object. Something an object has. Provides a specific access point to data within a field
Properties
Partial Class Modifier
Virtual Method Modifier
Array
44. Syntax of a C# Method
returnType methodName (parameterList)
sbyte - .NET alias
Object
Partial Class Modifier
45. Something that has a different number of parameters to it's predecessor
Assignment Operator
returnType methodName (parameterList)
Overloaded Method
Inheritance
46. Allows the definition of a Class to span multiple files (within the same Project)
Partial Class Modifier
Conditional Operator
uint - .NET alias
Static Class
47. Sits behind GUI (Graphical User Interface) and provides event listeners
Window.xaml.cs
Identifiers
Int32 - Size
Encapsulation
48. 64 bit integer data
Assignment Operator
Int64 - Size
Method
Primitive
49. Allows a class to define multiple implementations of a method based on the number and types of arguments passed (Overloading).
Keyword
Double (or double) - Size
Protected Internal Access Modifier
Polymorphism
50. The concept of defining subclasses of data objects that share some or all of the parent's class characteristics - enabling the reuse of code.
Private Access Modifier
Expression
Static Member
Inheritance