Newest Exam 2026-2027 || 100%
Guaranteed Pass ||
Web Application -ANSWER A program that exists on the internet that a user interacts
with, as opposed to a static web page that never changes and only presents
information.
Front End -ANSWER The part of a web application that a user interacts with. Typically
this is a website.
Middle Tier -ANSWER The Part of a web application that preforms the actual work.
Back End -ANSWER The data that a user is interacting with on a web application, such
as a list of customer or information about products they can purchase.
Full stack -ANSWER A web development skillset that incorporates knowledge of front
end, middle tier and back end programming. A full stack developer has enough
knowledge to build a complete web application.
.Net -ANSWER A framework developed by Microsoft for software and web development.
c# -ANSWER A middle-tier language used for software and web application
development. As a "C-based" language C# is syntactically similar to C++ and Java.
Framework -ANSWER A system of tools, features, and functionality that is pre-built that
makes writing software and web sites quicker and easier.
Framework Class Library -ANSWER The collection of prebuilt classes that exist behind
the scenes in the framework that can be called and used in a program built within the
framework.
IDE -ANSWER Integrated Development Environment. A piece of software that makes
writing and running applications easier.
Datatype -ANSWER A feature of a variable that helps determine how it can be used.
Variable - -ANSWER A storage container for information that is reusable within a
program.
Type Safe - -ANSWER A feature of the C# that restricts a variable to only ever be the
datatype that it was declared as.
,Comment -ANSWER Text inside of a class that is not intended to be parsed (read) by the
program and executed. Comments are used to make code more easily maintainable or
to describe what a section of code does.
Solution -ANSWER An application. A solution contains all of the basic files necessary to
run a program.
Project -ANSWER A division within a solution that contains one or more class files. Class
files of a similar nature or intended usage are often grouped together in a project. A
solution will always contain one or more projects.
Class -ANSWER A file that contains code that may be used (called) by your application.
Classes are stored inside projects.
Windows Application -ANSWER A Program that runs within Windows usually on a
desktop rather than the internet.
Web Service -ANSWER An external web program that is intended to be used inside of
other web programs
Compile -ANSWER To organize all program files to work together to run a program,
including setting aside memory for variables and making files call to each other.
Compiling occurs automatically when a program is run inside Visual Studio.
Declare -ANSWER To create a variable using a datatype and name.
Initialize -ANSWER To give value to a variable for the first time.
Assign/Reassign -ANSWER To give value or change the value assigned to a variable
Concatenation -ANSWER Putting two string together using plus signs
Bit -ANSWER A binary value of 0 or 1. 0 indicates "false" or "off". 1 indicates "true" or
"on". Multiple bits can be put together in a section of memory to store exponentially
larger values.
Floating point -ANSWER a decimal value
Character -ANSWER An individual keyboard item. this can be letter, number, or symbol
UPPERCASE -ANSWER A naming convention that uses all capital letters
lowercase -ANSWER a naming convention that uses all lower case letters
PascalCase -ANSWER a naming convention that uses a capital letter for all individual
words in the name
,camelCase -ANSWER a naming convention that uses a lowercase first letter for the first
word in the name, followed by a capital first letter for each following word
Hungarian / Lezinski - -ANSWER a naming convention that uses a lowercase first word
that represents a description of type of object the variable is, followed by a capital first
letter for each following word in the name
ASP ( Active Server Pages -ANSWER A type of web application architecture that is
presented later in the track
PreviousNext
Operator -ANSWER a keyboard character used to indicate that a mathematical
calculation should be performed by the compiler.
Modulus -ANSWER does exactly the same calculation as division, but only returns a
whole-number remainder. Modulus is used with whole-number division to return the
remainder after the division is completed.
Postfix incrementer -ANSWER a shortcut to add one to a variable. The addition happens
after all other math and assignment operations that can be completed for the given
calculation occur.
Pre-fix incrementer -ANSWER - a shortcut to add one to a variable. The addition happens
before all other math and assignment operations that can be completed for the given
calculation occur.
Assignment operators -ANSWER - a shortcut to complete a mathematical calculation and
reassign the new value back to the variable used in the calculation.
Casting -ANSWER Copying the value of a variable of one datatype to a variable of a
similar, but different datatype.
Implicit Casting -ANSWER Copying the value from a smaller datatype to a larger
datatype.
Explicit Casting -ANSWER Copying the value from a larger datatype to a smaller
datatype.
Turncation -ANSWER occurs when the value contained in one datatype cannot fit into a
variable of a smaller datatype. This results in lost information as a result of binary bit
cells being chopped off permanently.
Input -ANSWER - Information captured from the application's user.
Output -ANSWER Information shown to the application's user.
, String Formatting - -ANSWER A way to show output to an application's user by putting
information into placeholders within the output string. Allows formatting to be done to
the information in the placeholder.
Parse / Convert - -ANSWER Two methods of changing the data stored in a variable of
one datatype into data of another non-similar datatype (i.e. string data to int).
Comparison Operator -ANSWER A character that checks the value of objects on either
side of it and returns a bool value of true or false.
Logical Operator -ANSWER A character set that compares the bool values on either side
of it and returns a bool value of true or false.
Complex Datatype -ANSWER A type of variable that requires the "new" keyword to call
the constructor for the object
Loop -ANSWER A way of executing a code block until some condition no longer resolves
to true.
Counter - -ANSWER The starting point for the loop to begin counting and to be updated
after each pass through the loop.
Condition - -ANSWER A Boolean statement that is checked to see if a loop should run.
Update - -ANSWER The value to change the counter after each pass through the loop.
Branching - -ANSWER A type of flow control used to make decisions on whether or not a
clock of code should run.
Ternary Operator - -ANSWER A quick, single ling if / else statement.
Case - -ANSWER A condition to check used in a switch statement.
Break - -ANSWER Used in a switch statement to tell the compiler to jump out of the
switch and continue on with code below it.
Collection - -ANSWER Multiple items grouped together, often of a similar or identical
datatype.
Array - -ANSWER A type-safe collection with a fixed-length.
Index - -ANSWER The 0-based position of an item in a collection.
Length - -ANSWER The 1-based total number of items in an array. The Length is always
1 greater than the final index in the array.