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. Most common kind of reference type. They define objects. They must have at least one method and one field.
Class aka Type
Comments
Program
Parameter aka Argument
2. Represents the encapsulation of data and behaviors into a single unit.
ushort - Size
Public Keyword
ulong - .NET alias
Class
3. 16 bit- unsigned word (U+0000 to U+ffff)
Boolean - Size
Static Member
uint - Size
char - Size
4. true or false
long - Size
Internal Access Modifier
Boolean - Size
Heap
5. Statements are instructions describing how to run a programme. Statements declare the name of a variable. Statements are combined to create methods.
Stack
Statement
Protected Internal Access Modifier
Inheritance
6. Indicates that the Method can be overridden.
Virtual Method Modifier
char - Size
csc.exe
using
7. Represents date and time data with a 100 ns resolution
Boolean Operator
Abstract Class Modifier
csc.exe
DateTime
8. 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
While Statement
bool - Size
Identifiers
9. Always runs left to right on all arithmetic operators. Parenthesis (or brackets () ) override precedence flow.
Precedence
Abstract Class Modifier
Relational Operator
Boolean Operator
10. An instance of a class that exists at run-time and is typically referenced via a variable name.
Double (or double) - Size
Label
Object
Inheritance
11. A Class that cannot be instantiated.
long - .NET alias
Static Class
using
Primitive
12. Runs in a command prompt window rather than a GUI (graphical User Interface) one.
Just-in-time (JIT
JIT
ulong - .NET alias
Console Application
13. Command Language Runtime
Assembly
Abstract Method Modifier
Variable
CLR
14. Access is limited to the current Assembly
Internal Access Modifier
JIT
float - .NET alias
Encapsulation
15. 64 bit integer data
Internal Access Modifier
Label
Data structures
long - Size
16. System.Byte
Protected Internal Access Modifier
Constant
Inheritance
byte - .NET alias
17. System.UInt32
Properties
uint - .NET alias
Operator
Identifiers
18. Un-orderd sequence of elements of the same type. Stores a fixed number of static elements of a particular type.
Assignment Operator
Array
char - .NET alias
Constant
19. 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)
Boolean Operator
char - .NET alias
Sealed Class
byte - Size
20. Framework Class Library
FCL
long - Size
If Statement
Boolean - Size
21. The CLR tool used for just-in-time compilation which converts IL code to CPU specific code.
Inheritance
JITer
Class aka Type
ushort - Size
22. count = count+1 or count++ or count__. Both count variables are Unary Operators
Framework Class Library (FCL)
Strong Typing
Incrementing / Decrementing Variables
Boolean - Size
23. System.Int16
Operator
Encapsulation
Boolean Operator
short - .NET alias
24. An abstract container used to hold a logically related group of data and functionality (e.g. System.* or System.Lynq or System.Windows etc.).
JIT
Namespace
Statement
Just-in-time (JIT
25. Variables defined by a class
W.P.F
Variable (C# requirements)
Operator
Field
26. Container for one or more Visual Studio Projects.
sbyte - .NET alias
float - .NET alias
Visual Studio Solution
uint - Size
27. The concept of defining subclasses of data objects that share some or all of the parent's class characteristics - enabling the reuse of code.
Parameter aka Argument
Inheritance
Textbox
C# mark Up Language X.A.M.L(Extensible Application Markup Language)
28. The lowest level or fundamental data types needed for representing data.
Inheritance
Primitive Type
Protected Internal Access Modifier
Method
29. A symbol that specifies an operation to be performed on one or more variables.
Operator
ushort - .NET alias
Primitive Type
Syntax
30. Code which signifies a carriage return. Symbolises a new line in a text box.
Overloaded Method
r
Primitive
Variable
31. 16 bit - unsigned integer data (0 to 65535)
Just-in-time (JIT
Framework Class Library (FCL)
Decimal (or decimal) - Size
ushort - Size
32. The output produced by the C# Compiler - typically a .dll or .exe. Produced by a Project in Visual Studio
Float (or float) - Size
ushort - .NET alias
Assembly
Variable
33. 64 bit double precision floating point data
Double (or double) - Size
Dot Notation
Object
Conditional Operator
34. When a sub class passes down all the behaviours of the original parent class
Base Class
Double (or double) - Size
returnType methodName (parameterList)
Inheritance
35. Windows Presentation Foundation
sbyte - .NET alias
W.P.F
Abstract Method Modifier
decimal - .NET alias
36. The "Type" name of data that is stored on the Heap
JITer
Inheritance
Syntax
Reference Type
37. Series of instructions which tell a computer what to do.
Program
Method
Operator
Decimal (or decimal) - Size
38. Encapsulation is the process of providing access to an object only through it's messages while keeping the details private. Encapsulation controls the use of a class.
Operator
Strong Typing
Statement
Encapsulation
39. The act of generalizing or thinking about an object in general terms. The act of identifying the data members and behavior of a Class.
Expression
Abstraction
byte - Size
Namespace
40. 64 bit integer data
Int64 - Size
Equality Operator
byte - .NET alias
Common Language Runtime (CLR)
41. The process of compiling IL source into CPU-native code for execution.
Statement
Abstract Class Modifier
Operator
Just-in-time (JIT
42. Access is limited to the current Assembly and Derived Types
Class aka Type
Partial Class Modifier
Protected Internal Access Modifier
Method
43. Thing which gives something a value. E.g. Assignment Expression uses the '=' operator to assign a variable value such as x = y * 5
CLR
Assembly
Expression
returnType methodName (parameterList)
44. Word that stores a value. Storage location that holds a value. Type and name of variable must be declared in a statement. Must be explicitly declared before use. Uses CamelCase notation.
Visual Studio Solution
Unary Operator
Variable
bool - Size
45. A combination of language identifiers and data and operators and expressions that constitute a single line of syntactically correct & executable code.
C#
Identifiers
Statement
returnType methodName (parameterList)
46. System.Double
Abstract Method Modifier
Abstract Class Modifier
double - .NET alias
byte - .NET alias
47. Documentation text embedded within code which is not to be run as code. Two types single and multiple: single // multiline / insert comment here /
Comments
Data structures
uint - Size
W.P.F
48. (= or += or -= or = or /=)
Unary Operator
Internal Access Modifier
Assignment Operator
Static Class
49. System.Char
ulong - .NET alias
r
If Statement
char - .NET alias
50. If (boolean expression) //true -> statement 1 statement1; else //false -> statement2 statement; //else statement2 optional
Namespace
DateTime
decimal - .NET alias
If Statement
Can you answer 50 questions in 15 minutes?
Let me suggest you:
Browse all subjects
Browse all tests
Most popular tests
Major Subjects
Tests & Exams
AP
CLEP
DSST
GRE
SAT
GMAT
Certifications
CISSP go to https://www.isc2.org/
PMP
ITIL
RHCE
MCTS
More...
IT Skills
Android Programming
Data Modeling
Objective C Programming
Basic Python Programming
Adobe Illustrator
More...
Business Skills
Advertising Techniques
Business Accounting Basics
Business Strategy
Human Resource Management
Marketing Basics
More...
Soft Skills
Body Language
People Skills
Public Speaking
Persuasion
Job Hunting And Resumes
More...
Vocabulary
GRE Vocab
SAT Vocab
TOEFL Essential Vocab
Basic English Words For All
Global Words You Should Know
Business English
More...
Languages
AP German Vocab
AP Latin Vocab
SAT Subject Test: French
Italian Survival
Norwegian Survival
More...
Engineering
Audio Engineering
Computer Science Engineering
Aerospace Engineering
Chemical Engineering
Structural Engineering
More...
Health Sciences
Basic Nursing Skills
Health Science Language Fundamentals
Veterinary Technology Medical Language
Cardiology
Clinical Surgery
More...
English
Grammar Fundamentals
Literary And Rhetorical Vocab
Elements Of Style Vocab
Introduction To English Major
Complete Advanced Sentences
Literature
Homonyms
More...
Math
Algebra Formulas
Basic Arithmetic: Measurements
Metric Conversions
Geometric Properties
Important Math Facts
Number Sense Vocab
Business Math
More...
Other Major Subjects
Science
Economics
History
Law
Performing-arts
Cooking
Logic & Reasoning
Trivia
Browse all subjects
Browse all tests
Most popular tests