programming languages Online Quiz - 169
Description: programming languages Online Quiz - 169 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
You are the developer of a web application that is retrieving historical books information from a database server and displays it to the users of your application. What cache strategy will give you the best performance ?
Which is not ture about Smartnavigation ?
How to protect view state from tampering when it's passed over an unencrypted channel ?
What method must be overridden in a custom control ?
What does ASP stand for ?
What important standard is used to connect client browsers with web servers ?
What ASP.NET object is used to get information about the web servers ?
When an ASP.NET server control is added to a Web Form, Visual Studio .NET adds one item to the class for the form. What item is added ?
What attribute must be set on a validator control for the validation to work ?
Given an ASP.NET Web Form called WebForm1, what class does the WebForm1 class inherit from by default ?
Can two different .net programming languages be mixed in a single ASPX file ?
What is the file extension used for ASP.NET files ?
A simple macro to double a number was written as follows #define double(X) X*X #include using namespace std; int main() { std::cout<
A variable i of type int is stored in memory location 0x22ff74. Now assuming that I have a pointer to i , What does the following C/C++ code produce as output.(assume standard sizes) int main() { int i=20; int *ptr=&i; ptr=ptr-1; cout<