Term
What is a visual basic statement |
|
Definition
A set of code that can execute and make something useful happen! |
|
|
Term
|
Definition
Cascading Style Sheets and they are the de facto formatting design language for web pages |
|
|
Term
Can an identy field of an SQL table also gbe the Primary Key of the table? |
|
Definition
|
|
Term
Declare a Cb variable and assign the phrase "Hellow World!" to it |
|
Definition
DIM Phrase 1 As Sting =Hello World!" |
|
|
Term
|
Definition
|
|
Term
What is Common Language Runtime? |
|
Definition
The virtual machine in which the .NET framework operates |
|
|
Term
|
Definition
The server would create a Drop Down List with the ID ddlFuncArea" then send it to the client |
|
|
Term
What is a Visual Basic Method? |
|
Definition
|
|
Term
What are two true statements about Master Pages? |
|
Definition
1) They provide a consistent look and behavior 2) Define placeholder for content pages |
|
|
Term
Describe what Object Oriented programming is? |
|
Definition
A method of programming that ensures resuability of code through creation of Modesto, classes and objects |
|
|
Term
String data can be converted in integer type data? |
|
Definition
|
|
Term
Write a SQl SELECT statement to return all the rows in an SQL Table for useraccount (anajeed) Note: the table contains the "useraccount" field and user "anajeed" has data in the table. |
|
Definition
SELECT* from my table where useraccount='anajeed' |
|
|
Term
CSS rule defined in external file can over write an in-line style element in ASP.NET web page? |
|
Definition
|
|
Term
Difference between Function and Subroutine? |
|
Definition
Function because functions return data while subroutines do NOT return data. |
|
|
Term
|
Definition
Developed by Microsoft in the late 90's, consists of the class library and the Common Language Runtime. |
|
|
Term
Write an SQL DELETE statement to delete a row based on a given rowID number. |
|
Definition
Delete myTable where id=4 |
|
|
Term
Why would you want to set the PostBack property for a Server Control to True? |
|
Definition
If you want the server to respond to the user input, then set the PostBack to true |
|
|
Term
|
Definition
The formatting and design rules that govern a website. It is an external document. |
|
|
Term
|
Definition
Identifies where the CSS Rule Set is cached. |
|
|
Term
|
Definition
It is an attribute of the declaration...ex. background-color:puriple |
|
|
Term
What is a CSS declaration? |
|
Definition
One of the rules that governs the website |
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
Given that myTale has 1000 rows and one of the column name is "schoo;", what would happen after executing the following UPDATE statement?
UPDATE myTable SET school ='SDSU' |
|
Definition
This will change all of the schools in the column to SDSU |
|
|
Term
What type of content is sent to a web browser after .NET framework process a WebForm? |
|
Definition
|
|
Term
How will the CSS code below efect the Button declaration below it. Justify answer.
.btnClass {background-color: Black;} |
|
Definition
Nothing happens because the CSS code is not associated with the button... |
|
|