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. Something that has a different number of parameters to it's predecessor
Overloaded Method
Visual Studio Solution
Object
char - Size
2. The .NET run-time environment that enables code to be compiled and executed.
Conditional Operator
Common Language Runtime (CLR)
Field
Namespace
3. A representation of an area in the computer memory in which a value of a particular data type can be stored.
Variable
Inheritance
ushort - Size
Encapsulation
4. A Class that inherits characteristics from another Class.
Program
Public Keyword
Constructor
Derived Class
5. true or false
bool - Size
short - .NET alias
Comments
Data structures
6. The act of generalizing or thinking about an object in general terms. The act of identifying the data members and behavior of a Class.
C#
Class
Abstraction
Operator
7. 16 bit - unsigned integer data (0 to 65535)
Base Class
ushort - Size
While Statement
DateTime
8. Extra information within a method
short - .NET alias
sbyte - Size
Partial Method Modifier
Parameter aka Argument
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.
Inheritance
JIT
Assembly
Data structures
10. Code which signifies a carriage return. Symbolises a new line in a text box.
Operator
byte - Size
Encapsulation
r
11. Data Type Built into C#. Built into the XML Schema. Most common are: Int - Long - Float - Double - Decimal - String - Char and Bool.
Just-in-time (JIT
Primitive
CLR
Namespace
12. 64 bit integer data
Float (or float) - Size
Int64 - Size
ulong - .NET alias
Expression
13. Syntax of a C# Method
int - .NET alias
Abstract Class Modifier
Variable (C# requirements)
returnType methodName (parameterList)
14. System.UInt64
ulong - .NET alias
References (Visual Studio Solution
Assignment Operator
Conditional Operator
15. Thing which gives something a value. E.g. Assignment Expression uses the '=' operator to assign a variable value such as x = y * 5
Inheritance
Expression
Statement
sbyte - .NET alias
16. The member type of a Class that performs an action.
Expression
Method
r
Int32 - Size
17. 8 bit - signed byte (-128 - 127)
sbyte - Size
Boolean Operator
JIT
Parameter aka Argument
18. Indicates that the Method can be overridden.
Partial Class Modifier
Virtual Method Modifier
Private Access Modifier
Statement
19. If (boolean expression) //true -> statement 1 statement1; else //false -> statement2 statement; //else statement2 optional
Class aka Type
Assignment Operator
If Statement
Static Member
20. The C# directive required to bring a namespace into scope. Eliminates the need to fully qualify a Type.
using
Internal Access Modifier
Common Language Runtime (CLR)
Dot Notation
21. Un-orderd sequence of elements of the same type. Stores a fixed number of static elements of a particular type.
Array
csc.exe
Common Language Runtime (CLR)
bool - Size
22. 32 bit integer data
Label
Int32 - Size
sbyte - Size
Precedence
23. Four things common to all software development: _______ - Flow of Control - Identifiers & Arguments - Testing / Debugging
Data structures
DateTime
Variable (C# requirements)
C#
24. A Class that cannot be instantiated.
W.P.F
Static Class
Operator
uint - .NET alias
25. (&& or || or & or |)
Virtual Method Modifier
Static Class
Conditional Operator
Just-in-time (JIT
26. Framework Class Library
Reference Type
FCL
Protected Internal Access Modifier
uint - .NET alias
27. Allow access to types that exist in outside assemblies.
While Statement
Textbox
int - Size
References (Visual Studio Solution
28. Contains the class definitions that allow access to the functionality provided by .NET.
C#
Abstract Method Modifier
Framework Class Library (FCL)
Heap
29. 16 bit- unsigned word (U+0000 to U+ffff)
Data structures
char - Size
Virtual Method Modifier
ushort - .NET alias
30. 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.
JIT
Operator
long - Size
Abstract Method Modifier
31. Runs in a command prompt window rather than a GUI (graphical User Interface) one.
Console Application
char - .NET alias
Heap
Keyword
32. Statements are instructions describing how to run a programme. Statements declare the name of a variable. Statements are combined to create methods.
Method
While Statement
Assembly
Statement
33. The result of successful compilation of source code written in any .NET targeted language - e.g. C# or Visual Basic or C++.
Intermediate Language (IL)
byte - .NET alias
Inheritance
Namespace
34. Names reserved by the compiler that coders are not allowed to use as identifiers.
Private Access Modifier
Syntax
Namespace
Keyword
35. System.Int32
Precedence
Decimal (or decimal) - Size
int - .NET alias
Namespace
36. The lowest level or fundamental data types needed for representing data.
Primitive Type
Operator
Program
int - Size
37. Most common kind of reference type. They define objects. They must have at least one method and one field.
Abstract Method Modifier
Class aka Type
Int32 - Size
double - .NET alias
38. Represents the encapsulation of data and behaviors into a single unit.
JITer
Parameter aka Argument
Class
Base Class
39. 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
Assembly
Object
Encapsulation
Reference Type
40. Integrated Development Environment
Object
int - Size
IDE
char - Size
41. 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.
Private Access Modifier
Abstract Class Modifier
Incrementing / Decrementing Variables
Identifiers
42. Mathematical (+ or - or / or %)
Inheritance
Operator
Window.xaml.cs
Abstract Method Modifier
43. Object Oriented Programming relies on dot.notation. Dot Notation enables public methods to be fully accessible from outside an object. Member names are separated by a dot (.). Syntax is method-defined-in-class.bject-in-runtime-of-class
Class Statement
Encapsulation
Variable (C# requirements)
Dot Notation
44. A method that is called whenever an Object is created. The method uses the same name as the Class.
Boolean Operator
returnType methodName (parameterList)
Framework Class Library (FCL)
Constructor
45. System.Byte
bool - Size
DateTime
byte - .NET alias
Field
46. Implies that the programming language places severe restrictions on the intermixing that is permitted to occur - between objects or data of different types.
Data structures
While Statement
Strong Typing
returnType methodName (parameterList)
47. 64 bit integer data
long - Size
int - Size
Dot Notation
bool - Size
48. Keyword which exposes members to other classes OR Identifier which makes program elements public
Public Keyword
Visual Studio Solution
Namespace
Data structures
49. 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.
C# mark Up Language X.A.M.L(Extensible Application Markup Language)
Partial Method Modifier
Variable (C# requirements)
byte - .NET alias
50. System.Double
double - .NET alias
uint - Size
W.P.F
Constructor
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