General CS Flashcards
what is a callback function
a function that gets processed as soon as a request is processed and a response is received (response:true->request!)
what are some of the benefits of client side validation
-inputs checked as soon as input given
-no postback to server
+no page refresh
+result shown instantly
What is the GAC
global assembly cache. It is a machine-wide cli assembly cache for the CLI
What is the purpose of the GAC
to avoid dll hell
what does cli stand for
common language infrastructure
what does compilation do
transforms source code into computer language, most commonly to prepare it for execution
what is an assembly
a compiled code library used for deployment, versioning, and security
what are the two types of assemblies
process assembly (EXE) and library assembly (DLL)
what is a process assembly
represents a process that will use classes defined in library assemblies (DLLs)
What does DLL (library assembly) stand for
dynamic-link library
What is a DLL (library assembly)
Microsoft’s implementation of the shared library
What does a shared library (e.g. DLL) accomplish
shared by executable files and further shared object files (rather than relying on the linker, modules used by the program are loaded from individual shared objects into memory at load time or run time)
what does “load time” accomplish
part of the OS; places programs into memory and prepares them for execution
What was the cause of “dll hell”
many programs running in a single memory space
What does CLI accomplish
specification describing executable code and runtime, allowing for code written in multiple languages on multiple platforms to be run without being rewritten
what does URI stand for
uniform resource identifier
what does URL standfor
uniform resource locator
A URI contains what two uniform resources
urn(ame) url(ocator)
what is the purpose of serialization
Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called deserialization.
what is an endpoint
system:system.servicemode:services
provide clients with access to the functionality a Windows Communication Foundation (WCF) service offers
what does ETL stand for
Extract, Transform and Load
via ETL (extracct, Transform, Load) describe each
Extracts data from homogeneous or heterogeneous data sources
Transforms the data for storing it in proper format or structure for querying and analysis purpose
Loads it into the final target (database, more specifically, operational data store, data mart, or data warehouse)
what is abstraction
the process of separating ideas from specific instances of those ideas at work
what does lazy loading accomplish
delays loading of images until they are in the viewport
what does lazy loading accomplish
delays loading of images until they are in the viewport
what does XSLT stand for
Extensible Stylesheet Language Transformation
What does XSLT accomplish
for transforming XML documents into other XML documents, or other formats such as HTML for web pages, plain text or into XSL Formatting Objects, which may subsequently be converted to other formats, such as PDF PostScript and PNG.
The original document is not changed; rather, a new document is created based on the content of an existing on
In the context of Entity Framework what does ORM stand for
Object Relational mapping
What does ORM accomplish
automatically creates sql, classes from tables etc.