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. Command which runs repeatedly while (some) condition is true.
String (or string)
While Statement
Incrementing / Decrementing Variables
uint - .NET alias
2. 64 bit double precision floating point data
C#
Object
Double (or double) - Size
Class aka Type
3. The "Type" name of data that is stored on the Stack
char - .NET alias
Encapsulation
Sealed Class
Value Type
4. Symbols which transform and combine expressions
Operator
CLR
Encapsulation
Program
5. Container for one or more Visual Studio Projects.
Properties
Program
Intermediate Language (IL)
Visual Studio Solution
6. Block of memory for storing local variables and parameters. Automatically grows and shrinks as function is entered and excited.
Object
Encapsulation
Partial Method Modifier
Stack
7. Compilation of classes. In C# Usually ends in .dll or .exe
Assembly
FCL
Reference Type
Data structures
8. 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.
Statement
DateTime
Stack
Variable
9. The member type of a Class that performs an action.
double - .NET alias
Boolean Operator
Method
Int64 - Size
10. Variables defined by a class
float - .NET alias
Inheritance
Field
long - Size
11. The concept of defining subclasses of data objects that share some or all of the parent's class characteristics - enabling the reuse of code.
Abstract Class Modifier
Just-in-time (JIT
Inheritance
Variable
12. true or false
Static Class
Boolean - Size
Assignment Operator
Abstraction
13. Un-orderd sequence of elements of the same type. Stores a fixed number of static elements of a particular type.
Array
C#
Static Class
Partial Class Modifier
14. 64 bit integer data
Relational Operator
Properties
Strong Typing
Int64 - Size
15. Statements are instructions describing how to run a programme. Statements declare the name of a variable. Statements are combined to create methods.
Just-in-time (JIT
Statement
Intermediate Language (IL)
Visual Studio Solution
16. Extra information within a method
Parameter aka Argument
Array
float - .NET alias
Common Language Runtime (CLR)
17. A method that is called whenever an Object is created. The method uses the same name as the Class.
Incrementing / Decrementing Variables
Inheritance
Namespace
Constructor
18. The CLR tool used for just-in-time compilation which converts IL code to CPU specific code.
Abstract Method Modifier
JITer
Incrementing / Decrementing Variables
byte - .NET alias
19. The C# directive required to bring a namespace into scope. Eliminates the need to fully qualify a Type.
JIT
using
Just-in-time (JIT
Boolean - Size
20. Allows the definition of a Class to span multiple files (within the same Project)
DateTime
decimal - .NET alias
Partial Class Modifier
Double (or double) - Size
21. 16 bit - signed integer data (-32768 to 32767)
sbyte - .NET alias
Statement
short - Size
Namespace
22. 64 bit - unsigned integer data
Encapsulation
ulong - Size
Assignment Operator
Stack
23. Most common kind of reference type. They define objects. They must have at least one method and one field.
Precedence
Int32 - Size
Equality Operator
Class aka Type
24. 128 bit fixed precision (financial)
Method
Decimal (or decimal) - Size
Polymorphism
Data structures
25. Field whose value can never change. Declared with 'const' keyword
Variable (C# requirements)
Constant
Intermediate Language (IL)
Data structures
26. Contains the class definitions that allow access to the functionality provided by .NET.
sbyte - .NET alias
Framework Class Library (FCL)
short - .NET alias
Abstract Method Modifier
27. Always runs left to right on all arithmetic operators. Parenthesis (or brackets () ) override precedence flow.
Primitive
Dot Notation
Precedence
Primitive Type
28. 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.
Identifiers
Method
Reference Type
Strong Typing
29. Documentation text embedded within code which is not to be run as code. Two types single and multiple: single // multiline / insert comment here /
Textbox
sbyte - Size
Comments
Operator
30. A combination of language identifiers and data and operators and expressions that constitute a single line of syntactically correct & executable code.
Statement
JIT
Heap
Equality Operator
31. System.SByte
Namespace
Static Class
sbyte - .NET alias
Inheritance
32. 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
sbyte - Size
Virtual Method Modifier
ulong - Size
33. The "Type" name of data that is stored on the Heap
Reference Type
Overloaded Method
DateTime
Protected Access Modifier
34. A standardized (ECMA) language for creating Windows .NET applications and services and libraries - with a syntax similar to Java and C++.
C#
Boolean - Size
CLR
ushort - .NET alias
35. Represents date and time data with a 100 ns resolution
Namespace
DateTime
Keyword
References (Visual Studio Solution
36. A Class that cannot be instantiated.
Static Class
Window.xaml.cs
ulong - .NET alias
uint - Size
37. 64 bit integer data
Constructor
long - Size
Boolean Operator
Incrementing / Decrementing Variables
38. Restricts access to a Member to the current Class.
Private Access Modifier
Double (or double) - Size
Primitive
Framework Class Library (FCL)
39. System.Int32
Sealed Class
int - .NET alias
Int32 - Size
float - .NET alias
40. Windows Presentation Foundation
Virtual Method Modifier
Identifiers
W.P.F
Visual Studio Solution
41. 32 bit integer data
csc.exe
int - Size
Internal Access Modifier
Array
42. Box which can be typed into at runtime. Can display large amounts of scrollable text for the user. To create a scrollable one in Visual Studio set the multiline property to 'TRUE' and the Scrollbars property to 'VERTICAL'.
Comments
C#
Textbox
Heap
43. Indicates that the Method can be overridden.
Stack
Constructor
Common Language Runtime (CLR)
Virtual Method Modifier
44. Restricts access to a Member to the current Class and any Derived Class.
Heap
Protected Access Modifier
Namespace
Decimal (or decimal) - Size
45. Thing which gives something a value. E.g. Assignment Expression uses the '=' operator to assign a variable value such as x = y * 5
Statement
Partial Method Modifier
Operator
Expression
46. Data Type Built into C#. Built into the XML Schema. Most common are: Int - Long - Float - Double - Decimal - String - Char and Bool.
DateTime
Properties
Primitive
C#
47. 16 bit - unsigned integer data (0 to 65535)
ushort - Size
NET
Textbox
int - Size
48. Framework Class Library
Conditional Operator
char - .NET alias
ulong - .NET alias
FCL
49. Rules defining or outlining the format and construction of statements. Semantics is what statements actually DO Syntax are RULES for how to lay statements out. Example syntax rule; All statements must end in a semicolon.
decimal - .NET alias
Float (or float) - Size
Partial Class Modifier
Syntax
50. 8 bit - signed byte (-128 - 127)
Stack
sbyte - Size
String (or string)
Framework Class Library (FCL)
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