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. Allows a class to define multiple implementations of a method based on the number and types of arguments passed (Overloading).
DateTime
Class Statement
Polymorphism
ushort - .NET alias
2. Statements are instructions describing how to run a programme. Statements declare the name of a variable. Statements are combined to create methods.
Statement
NET
C# mark Up Language X.A.M.L(Extensible Application Markup Language)
Static Class
3. The process of compiling IL source into CPU-native code for execution.
Assembly
Just-in-time (JIT
Value Type
Namespace
4. Compilation of classes. In C# Usually ends in .dll or .exe
long - Size
Int64 - Size
Assembly
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.
Abstract Method Modifier
short - Size
Reference Type
Incrementing / Decrementing Variables
6. Container for one or more Visual Studio Projects.
csc.exe
Visual Studio Solution
Precedence
byte - Size
7. 64 bit integer data
Variable
Data structures
long - Size
Equality Operator
8. Characteristics of an object. Something an object has. Provides a specific access point to data within a field
Conditional Operator
Program
Properties
Int32 - Size
9. The concept of defining subclasses of data objects that share some or all of the parent's class characteristics - enabling the reuse of code.
IDE
Int64 - Size
Inheritance
DateTime
10. Documentation text embedded within code which is not to be run as code. Two types single and multiple: single // multiline / insert comment here /
Comments
Polymorphism
Assignment Operator
While Statement
11. Windows Presentation Foundation
If Statement
Statement
W.P.F
C#
12. Access is limited to the current Assembly and Derived Types
Protected Internal Access Modifier
IDE
Unary Operator
Syntax
13. Introduces a new class. Marked by curly brackets { }
Protected Internal Access Modifier
csc.exe
Class Statement
decimal - .NET alias
14. Series of instructions which tell a computer what to do.
Partial Method Modifier
Program
DateTime
Syntax
15. 16 bit - unsigned integer data (0 to 65535)
Unary Operator
IDE
ushort - Size
decimal - .NET alias
16. When a sub class passes down all the behaviours of the original parent class
Boolean - Size
Inheritance
JITer
Visual Studio Solution
17. Block of memory where objects live. Whenever a new object is created it is allowed onto the heap. Old objects are regularly deallocate from the heap to save available memory
Variable
Heap
ushort - Size
Program
18. System.Double
Program
C#
returnType methodName (parameterList)
double - .NET alias
19. (= or += or -= or = or /=)
DateTime
Assignment Operator
Abstraction
Class
20. Symbols which transform and combine expressions
Framework Class Library (FCL)
Value Type
Operator
Static Class
21. 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
Variable
Label
Constructor
Object
22. 16 bit - signed integer data (-32768 to 32767)
short - Size
Operator
Precedence
Class aka Type
23. The .NET run-time environment that enables code to be compiled and executed.
Variable
r
FCL
Common Language Runtime (CLR)
24. A method that is called whenever an Object is created. The method uses the same name as the Class.
Variable
Constructor
uint - Size
Common Language Runtime (CLR)
25. Restricts access to a Member to the current Class.
uint - .NET alias
Private Access Modifier
Variable (C# requirements)
Array
26. 8 bit - signed byte (-128 - 127)
sbyte - Size
IDE
Abstract Class Modifier
Namespace
27. A standardized (ECMA) language for creating Windows .NET applications and services and libraries - with a syntax similar to Java and C++.
Overloaded Method
C#
sbyte - .NET alias
Common Language Runtime (CLR)
28. Used to display text that end user does not need to edit.
Visual Studio Solution
Identifiers
Label
short - Size
29. Specifies that a Class cannot be instantiated but can only be used as the Base Class from which other Classes are derived.
Assembly
Abstract Class Modifier
Keyword
Precedence
30. Just-in-time compilation
Assignment Operator
JIT
Just-in-time (JIT
Unary Operator
31. Names used to identify program elements (e.g. namespaces & classes & methods & variables). Must always start with a letter. Always case sensitive. When multiword must be presented in CamelCase. keywords are an example of an identifier.
Constructor
Polymorphism
Identifiers
Class Statement
32. A Class from which other classes can inherit characteristics.
Base Class
ulong - Size
Partial Class Modifier
Common Language Runtime (CLR)
33. 64 bit - unsigned integer data
Static Class
ulong - Size
Float (or float) - Size
Method
34. Command which runs repeatedly while (some) condition is true.
While Statement
Static Member
Stack
Base Class
35. Block of memory for storing local variables and parameters. Automatically grows and shrinks as function is entered and excited.
Static Class
Stack
Primitive
Identifiers
36. 64 bit integer data
Abstraction
Abstract Method Modifier
Console Application
Int64 - Size
37. Something an object can do. A named sequence of events. Should always have a meaningful name eg calculateIncomeTax.
Precedence
Method
Constructor
Variable
38. A type of statement that produces a value that might be tested or assigned to a variable.
Label
Expression
Statement
IDE
39. 32 bit integer data
Int32 - Size
Window.xaml.cs
short - .NET alias
Constructor
40. 32 bit single precision floating point data
returnType methodName (parameterList)
Class Statement
Partial Method Modifier
Float (or float) - Size
41. (< or > or <= or >=)
Method
Relational Operator
Expression
Primitive
42. Thing which gives something a value. E.g. Assignment Expression uses the '=' operator to assign a variable value such as x = y * 5
double - .NET alias
Sealed Class
Statement
Expression
43. System.Decimal
Internal Access Modifier
Equality Operator
While Statement
decimal - .NET alias
44. The output produced by the C# Compiler - typically a .dll or .exe. Produced by a Project in Visual Studio
Boolean - Size
returnType methodName (parameterList)
JIT
Assembly
45. The C# command line compiler which transforms C# code into IL code and produces an assembly (.dll or .exe)
Constructor
csc.exe
Partial Method Modifier
decimal - .NET alias
46. 128 bit fixed precision (financial)
Partial Class Modifier
W.P.F
Decimal (or decimal) - Size
Strong Typing
47. true or false
Equality Operator
sbyte - .NET alias
Partial Method Modifier
Boolean - Size
48. The lowest level or fundamental data types needed for representing data.
Comments
CLR
Primitive Type
Class Statement
49. System.UInt64
Expression
Constant
Unary Operator
ulong - .NET alias
50. 32 bit integer data
int - Size
Framework Class Library (FCL)
Inheritance
Heap
Sorry!:) No result found.
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