Question
Expand CCC

Answers

Classified Catalogue Code; (The) Copyright Clearance Centre (Salem, Massachusetts)   Your Comment






Search
Can you Answer!!
  • Q What is Crisil?
  • Q What are all the code optimization techniques?
  • Q What are the disadvantages of using session?
  • Q Which classical dance form was founded by the saint Srimanta Sankardev ?
  • Q The Citizenship Amendment Act, recently passed by the parliament, removed the disparity between the cardholders of which two schemes?
  • Q You create an ASP.NET page that contains a DataGrid control. The control displays data that is retrieved from a database named TestKingDB. You want your users to be able to sort the data in either ascending or descending order. You write code to sort the data in the DataGrid control by using the SortOrder property when a user clicks in a column. The values stored for the SortOrder property are ASC for ascending order, and DESC for descending order. You want to preserver the value during postbacks. A user selects descending order. Which code should you use to save and retrieve the value? A. // Save Application[SortOrder] = DESC; // Retrieve string val = (string) Application[SortOrder]; B. // Save Cache[SortOrder] = DESC; // Retrieve string val = (string) Cache[SortOrder]; C. // Save ViewState[SortOrder] = DESC; // Retrieve string SortOrder = (string) ViewState[SortOrder]; D. // Save Cache[SortOrder] = SortOrder; // Retrieve string val = (string) Cache[DESC];
  • Q Explain the difference between user control and custom control. Also, explain their use.
  • Q 80% of Americans say they believe in what
  • Q Find the output for the following C program main {int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
  • Q How to prepend value of key?
  • Q For the following C program int x=2; x=x<<2; printf("%d ",x);