Employee Technology Assessment - DotNET Team - June 2010

35 Questions | Attempts: 52
Share

SettingsSettingsSettings
Employee Technology Assessment - DotNET Team - June 2010 - Quiz

This Test is Conducted for Assessing yourself and and Find what are the areas you are strong and week Technologically.


Questions and Answers
  • 1. 
    What is the Latest Framework Released by Visual Studio
    • A. 

      3.5

    • B. 

      4.0

    • C. 

      3.0

    • D. 

      4.5

    • E. 

      3.7

  • 2. 
    Can I have two or more actions in the same form?
    • A. 

      Yes

    • B. 

      No

  • 3. 
    How do I create a link that sends me email in ASP.Net?
    • A. 

      Mail

    • B. 

      Mailto:

    • C. 

      Mailto::

    • D. 

      All of the Above

  • 4. 
    What's AJAX  Abbreviation?
    • A. 

      Asynchronous JavaScript and XAML

    • B. 

      Asynchronous JavaScript and XML

    • C. 

      Asynchronous Java and Xemantics,

  • 5. 
    What’s a strong name in C#.Net?
    • A. 

      A strong name includes the name of the assembly, version number, culture identity, and a public key token.

    • B. 

      Name kept in coding standard

    • C. 

      None of the above

  • 6. 
    Is XML case-sensitive?
    • A. 

      Yes

    • B. 

      No

  • 7. 
    In C#.Net, Will finally block get executed if the exception had not occurred?
    • A. 

      Yes

    • B. 

      No

  • 8. 
    What is the top .NET class that everything is derived from?
    • A. 

      System.Class

    • B. 

      System.Object

    • C. 

      System.Net

  • 9. 
    Which is the below are true about Database Viewin Oracle?
    • A. 

      A view is a virtual table

    • B. 

      Every view has a Query attached to it

    • C. 

      The Query is a SELECT statement that identifies the columns and rows of the table(s) the view uses.

  • 10. 
    Is there regular expression (regex) support available to C# developers? 
    • A. 

      Yes

    • B. 

      No

  • 11. 
    Which of the below are the types of cookies.
    • A. 

      Persistent

    • B. 

      Non-persistent

    • C. 

      Client

    • D. 

      Server

  • 12. 
    What is the out put of the following code byte a=200; byte b=100; byte c=a+b; Response.Write ( C );
    • A. 

      300

    • B. 

      Compilation Error

    • C. 

      Zero

    • D. 

      Blank

    • E. 

      None of the Above

  • 13. 
    Which of the Below are valid Authentication Types?
    • A. 

      WINDOWS AUTHENTICATION

    • B. 

      FORMS AUTHENTICATION

    • C. 

      PASSPORT AUTHENTICATION

    • D. 

      NONE/CUSTOM AUTHENTICATION

    • E. 

      All of the above

  • 14. 
    How many columns are presented after executing this query:SELECT address1||','||address2||','||address2 "Adress" FROM employee;
    • A. 

      1

    • B. 

      2

    • C. 

      3

    • D. 

      4

  • 15. 
    Which of the below oracle statement will remove Duplicate Row on EMP table
    • A. 

      Delete from emp where rowid not in (select max(rowid) from emp group by empname);

    • B. 

      Delete empname dv from emp ta where rowid

    • C. 

      Delete from emp where code in (select max(code) from emp)

    • D. 

      None of the above

    • E. 

      All of the above

  • 16. 
    What is wrong in this statementALTER TABLE t ADD CONSTRAINT pk_t PRIMARY KEY (rid) USING INDEX;
    • A. 

      Statement Executes Sucessfully

    • B. 

      You Cannot add a Primary key in Alter Statement

    • C. 

      You Cannot Specify INDEX

    • D. 

      No Space between "PRIMARY" & "KEY"

  • 17. 
    Is there any Compilation Error in this Statement?Using System;using System.Collections.Generic;using System.Text;using System.Data.OracleClient;using System.Data; namespace CallingOracleStoredProc{    class Program    {        static void Main(string[] args)        {            using (OracleConnection objConn = new OracleConnection("Data Source=ORCL; User ID=scott; Password=tiger"))            {                OracleCommand objCmd = new OracleCommand();                objCmd.Connection = objConn;                objCmd.CommandText = "count_emp_by_dept";                objCmd.CommandType = CommandType.StoredProcedure;                objCmd.Parameters.Add("pin_deptno", OracleType.Number).Value = 20;                objCmd.Parameters.Add("pout_count", OracleType.Number).Direction = ParameterDirection.Output;                try                {                    objConn.Open();                    objCmd.ExecuteNonQuery();                    System.Console.WriteLine("Number of employees in department 20 is {0}", objCmd.Parameters["pout_count"].Value);                }                catch (Exception ex)                {                    System.Console.WriteLine("Exception: {0}",ex.ToString());                }                objConn.Close();            }        }    }}
    • A. 

      Yes

    • B. 

      No

  • 18. 
    What is the Difference between display:none and visibility: hidden?
    • A. 

      Visibility:hidden create the space in web page, Display:none is not, this property totally refuse the content in webpage.

    • B. 

      Display:none create the space in web page, Visibility:hidden is not, this property totally refuse the content in webpage.

    • C. 

      No Difference Both are Same

  • 19. 
    Which of the following can't be done with client-side JavaScript?
    • A. 

      Validating a form

    • B. 

      Sending a form's contents by email

    • C. 

      Storing the form's contents to a database file on the server

    • D. 

      None of the above

  • 20. 
    To set up the window to capture all Click events, we use which of the following statement?
    • A. 

      Window.captureEvents(Event.CLICK);

    • B. 

      Window.handleEvents (Event.CLICK);

    • C. 

      Window.routeEvents(Event.CLICK );

    • D. 

      Window.raiseEvents(Event.CLICK );

  • 21. 
    In JavaScript what does "1"+2+4 evaluate to?
    • A. 

      124

    • B. 

      6

    • C. 

      Error

    • D. 

      7

  • 22. 
    In JavaScript what does  2+5+"8" evaluate to?
    • A. 

      15

    • B. 

      78

    • C. 

      Error

    • D. 

      258

  • 23. 
    The Equivalent Server Side HTML Control for the tag is?
    • A. 

      HtmlInput

    • B. 

      HtmlButton

    • C. 

      HtmlPushButton

    • D. 

      HtmlInputButton

  • 24. 
    The Equivalent Server Side Html Control for the tag is
    • A. 

      HtmlCheckBox

    • B. 

      HtmlInputChkBox

    • C. 

      HtmlInputCheckBox

    • D. 

      HtmlInputTypeChkBox

  • 25. 
    Which of the below are the modes of updation in an UpdatePanel?
    • A. 

      Always

    • B. 

      Conditional

    • C. 

      Optional

    • D. 

      Asynchronous

Back to Top Back to top
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.