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 ?
Which is true about ASP.net support ?
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 is used to validate complex string patterns like an e-mail address ?
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 ?
What method(s) must be used with the Application object to ensure that only one process accesses a variable at a time ?
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 ?
What HTML element is the asp:Label control rendered as when the target is Internet Explorer ?
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<
consider the following C code int main() { printf("Hello world"); } Will this code compile?
which of the following are true about static variables in C?
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<