Sie sind auf Seite 1von 6

1.

Which of the following statements are correct about the C#.NET code snippet given below? int i ; int j = new int( ) ; i = 10 ; j = 20 ; String str ; str = i.ToString( ) ; str = j.ToString( ) ; a) This is a perfectly workable code snippet b) Since int is a primitive, we cannot use new with it. c) Since an int is a primitive, we cannot call the method ToString( ) using it. d) i will get created on stack, whereas j will get created on heap

2. How we can control the vertical alignment of the cell in the HTML table control? a) ColSpan b) NoWrap c) VAlign d) HAlign 3. Which of the following statements are true about compilation of .aspx pages in ASP.NET? a)All .aspx pages are compiled when the application starts. b) An .aspx page is compiled for every request. c) An .aspx page gets compiled when first request is made for it. d) All .aspx pages get compiled when the session state starts.

4. Which is the correct syntax for include directive in ASP.NET? a) <!-- #include pathtype = filename --> b) <% @ include attribute="attr1" %> c) <% #include pathtype = filename %> d) <% @include pathtype = filename %> 5. What does HTMLTable Control do? a) It creates the Table within the form. b) It deletes the Table within the form. c) It selects the Table within the form. d) It modifies the Table within the form. 6. By which property of checkbox HTML server control we can get to know whether the checkbox is selected or not? A) On Submit B) Value C) Checked D) Selected

7. In ASP.NET which of the following properties is used for ascertaining whether the page is being loaded in response to a client postback, or is it being loaded and accessed for the first time? A) Page.IsReusable Property B) Page.IsValid Property C) Page. Request Property D) Page.IsPostBack Property 8. Which of the following is the correct syntax for HTML Anchor Control? A) <a href="linkurl" name="bookmarkname" OnServerClick="onserverclickhandler" target="linkedcontentframeorwindow" title="titledisplayedbybrowser" runat="server" > linktext</a> B) <a href="linkurl" name="bookmarkname" OnServerClick="onserverclickhandler" target="linkedcontentframeorwindow" title="titledisplayedbybrowser" runat="server" > linktext C) <a href="linkurl" name="bookmarkname" OnServerClick="onserverclickhandler" target="linkedcontentframeorwindow" title="titledisplayedbybrowser" runat="server" > linktext<a> D) <a href="linkurl" name="bookmarkname" OnServerClick="onserverclickhandler" target="linkedcontentframeorwindow" title="titledisplayedbybrowser" runat="server" > linktext</a href>

9. Which of the following is the correct syntax for the GridView? A) <asp:gridview id="CustomersGridView" ></asp> B) <asp:gridview id="CustomersGridView" ><gridview> C) <asp:gridview id="CustomersGridView" runat="server" /> D) <asp:gridview id="CustomersGridView" ></> 10. What does AccessDataSource do? A) It is used for connecting to SqlServer 2005 B) It is used for connecting to Oracle DB Server C) It is used for connecting to SqlServer D) It is used for connecting to MS Access Database 11. Which of the following statements are correct? I. An event is a way for a class to provide notifications. II. Events use delegates to provide type-safe encapsulation of the methods that will be called when triggered. A) Only I is correct. B) Only II is correct. C) Both I and II are correct. D) Both I and II are incorrect.

12. Which of the following keyword is used with an event to make the event available to callers at any time, even if no instance of the class exists? a) Public b) Static c) Virtual d) Abstract 13. Which WebForm Validator control will you use if you want to ascertain whether the values in two different WebForm controls are same or not? a) CheckValidator Control b) CompareValidator Control c) RangeValidater Control d) RequiredFieldValidator Control

14. Which of the following statements are correct? I. XML provides a way to describe structured data. II. XML tags are used to control the display and appearance of data. a) Only I is correct. b) Only II is correct. c) Both I and II are correct. d) Both I and II are incorrect. 15. Which of the following statements are correct? I. We can define an limited set of XML tags. II. As XML tags are adopted throughout an organization and across organizations, data from all kinds of different data stores will be easier to exchange and manipulate a) Only I is correct. b) Only II is correct. c) Both I and II are correct. d) Both I and II are incorrect.

16. Malicious user input can be used to launch the attacks named a) SQL Virus b) SQL Injection c) SQL Injuries d) SQL Damage 17. Which of the following models correctly represents the scenario given below? - Connect to database server - Process data - Close connection

a) Disconnected model b) Connected model c) ODBC model d) Data Access Object model 18. What one of the following keyword is used in connection string for attaching to a file? a) DBFile b) AttachDBFilename c) DBFilename d) DBFilename=<filename> 19. Which of the following method is used in data binding expression syntax when data can be modified? a) Eval b) Bind c) Bind or Eval d) None of the above 20. What are the types of server controls that participate in declarative data binding model? a) DataBind controls and Data-bound controls b) Data source controls and Data-bound controls c) Data source controls and DataGrid controls d) Data source controls and Data-Ubound controls 21. Which control allows you to edit, delete, and insert records? a) GridView b) FormView c) DetailsView d) TagView 22. Which of the following statements are correct? a) Procedural Programming paradigm is different than structured programming paradigm. b) Object Oriented Programming paradigm stresses on dividing the logic into smaller parts and writing procedures for each part. c) Classes and objects are corner stones of structured programming paradigm. d) Object Oriented Programming paradigm gives equal importance to data and the procedures that work on the data. 23. Which of the following statements are correct about the C#.NET code snippet given below? sample c ; c = new sample( ) ; a) It will create an object called sample. b) It will create a nameless object of the type sample. c) It will create an object of the type sample on the stack. d) It will create an object of the type sample either on the heap or on the stack depending on the size of the object. 24. Which of the following control searches the current naming container for the specified server control? a) GetType

b) FindControl c) GetHashCode d) GetControl 25. What data types do the RangeValidator controls support in ASP.NET? a) Integer, Decimal, Double b) Date, Decimal c) Integer, String, Date d) String, Decimal 26. Which of the following statements are correct? I. XML Schemas support reusable types and allow to create new types using inheritance. II. XML Schemas does not allow to group elements to control the recurrence of elements and attributes. III. While creating XML Schemas the individual elements and attributes are defined and valid types are assigned to them. a) Only I and II are correct. b) Only I and III are correct. c) Only II and III are correct. d) I, II and III are correct. 27. Suppose multiple clients access multiple business components which in turn access or modify the data stored in different databases. Which of the following application type perfectly models this scenario? a) N-Tier Application b) Single Tier Application c) Two Tier Application d) Three Tier Application 28. A derived class can stop virtual inheritance by declaring an override as a) Inherits b) extends c) sealed d) Not Inheritable 29. Which of the following is the correct syntax for HTML Image Control? a) <img id="programmaticID" alt="alttext" align= top border="borderwidth" height="imageheight" src="imageURL" width="imagewidth" runat="server" > b) <img id:"programmaticID" alt:"alttext" align: top border:"borderwidth" height:"imageheight" src:"imageURL" width:"imagewidth" runat:"server" > c) <img id"programmaticID" alt"alttext" align top border"borderwidth" height"imageheight" src"imageURL" width"imagewidth" runat"server" > d) <img id="programmaticID" alt="alttext" align= top border="borderwidth" height="imageheight" src="imageURL" width="imagewidth" runat="server" ></img> 30. What is the correct syntax for Connection String? Data Source=.\SQL;Initial Catalog=Customers;Integrated Security=True; Data Source=.\SQLEXPRESS;Initial Catalog=Customers;Integrated Security=False; Data Source=.\SQLServer;Initial Catalog=Customers;Integrated Security=True; Data Source=.\SQLEXPRESS;Initial Catalog=Customers;Integrated Security=True

Avadhut Mangesh Kharade Ef9f8ea3f8

Das könnte Ihnen auch gefallen