- Q Which city known as Spiritual Capital of India
- Q The President can grant pardon in
- Q what is boxing and unboxing?can we initialize unboxing directly?
- Q To Concur =
- Q What do you mean by recursive definition?
- Q What is meant by ‘aparoksanubhuti’?.
- Q In a case where there are no instance variables what does the default constructor initialize?
- Q Why am I getting errors when my template-derived-class accesses something it inherited from its template-base-class?
- Q Whose crew first navigated the world?
- Q What is abstract class or abstract method?
- Q Your company, StoreIt Inc has stored the text of several journals in a Microsoft SQL Server 7.0 database. Each sentence is stored in a separate record so that the text can be retrieved with the finest granularity. Several of these works are many thousands of printed pages in length. You are building a Web application that will allow registered users to retrieve data from these volumes. When a user of your Web application requests large amounts of text, your application must return it in the most efficient manner possible. How should you build the large String object that is required to provide the most efficient response to the user? (Select the best choice.) A. Use a RichTextBox object to hold the data as it is being concatenated. B. Use the Append method of the String class. C. Use the String class and the & operator. D. Use the StringBuilder class.