Vous êtes sur la page 1sur 8

Which Of The Following Statements Are Correct For The Given Code

Snippet:
shape obj;
obj = new shape();
a) creates an object of class shape.
b) To create an object of type shape on the heap or stack depending on its size.
c) create a reference obj of the class shape and an object of type shape on the heap.
d) create an object of type shape on the stack.
Answer. c)

What Will Be The Output Of The Following Code Snippet?


using System;
class sample
{
public static void first()
{
Console.WriteLine("first method");
}
public void second()
{
first();
Console.WriteLine("second method");
}
public void second(int i)
{
Console.WriteLine(i);
second();
}
}
class program
{
public static void Main()
{
sample obj = new sample();
sample.first();
obj.second(10);
}
}
a) second method
10
second method
first method
b) first method
10
first method
second method
c) first method
10
d) second method
10
first method.
View answer.
Answer. b)

Which Of The Following Statements Correctly Tell The Differences


Between ‘=’ And ‘==’ In C#?
a) ‘==’ operator is used to assign values from one variable to another variable
‘=’ operator is used to compare value between two variables
b) ‘=’ operator is used to assign values from one variable to another variable
‘==’ operator is used to compare value between two variables
c) No difference between both operators
d) None of the mentioned
View answer.
Answer. b)

Which of the following is an 8-byte Integer?


A. Char

B. Long

C. Short

D. Byte

E. Integer
Answer: Option B

Which of the following is NOT an Integer?


A. Char

B. Byte

C. Integer

D. Short
E. Long
Answer: Option A

Which of the following are value types?


1. Integer
2. Array
3. Single
4. String
5. Long
A. 1, 2, 5

B. 1, 3, 5

C. 2, 4

D. 3, 5
Answer: Option B

What is the size of a Decimal?


A. 4 byte

B. 8 byte

C. 16 byte

D. 32 byte
Answer: Option C
Which of the following statements are TRUE about the .NET CLR?
1. It provides a language-neutral development & execution environment.
2. It ensures that an application would not be able to access memory that it is not authorized to
access.
3. It provides services to run "managed" applications.
4. The resources are garbage collected.
5. It provides services to run "unmanaged" applications.
A. Only 1 and 2

B. Only 1, 2 and 4

C. 1, 2, 3, 4

D. Only 4 and 5

E. Only 3 and 4
Answer: Option C
What does the following C#.NET code snippet will print?
int i = 0, j = 0;
label:
i++;
j+=i;
if (i < 10)
{
Console.Write(i +" ");
goto label;
}

A. Prints 1 to 9

B. Prints 0 to 8

C. Prints 2 to 8

D. Prints 2 to 9

E. Compile error at label:.


Answer: Option A

Which of the following statements is correct?


It is not possible to extend the if statement to handle multiple conditions using the else-
A.
if arrangement.

The switch statement can include any number of case instances with two case statements
B.
having the same value.

A jump statement such as a break is required after each case block excluding the last
C.
block if it is a default statement.

The if statement selects a statement for execution based on the value of a Boolean
D.
expression.

E. C# always supports an implicit fall through from one case label to another.
Answer: Option D
Which of the following will be the correct output for the C#.NET code snippet given below?
String s1 = "Nagpur";
String s2;
s2 = s1.Insert(6, "Mumbai");
Console.WriteLine(s2);

A. NagpuMumbair

B. Nagpur Mumbai

C. Mumbai

D. Nagpur

E. NagpurMumbai
Answer: Option E

Which of the following will be the correct output for the C#.NET code snippet given below?
String s1="Kicit";
Console.Write(s1.IndexOf('c') + " ");
Console.Write(s1.Length);

A. 36

B. 2 5

C. 3 5

D. 2 6

E. 37
Answer: Option B
Which of the following statements is correct?
A. A constructor can be used to set default values and limit instantiation.

B. C# provides a copy constructor.

C. Destructors are used with classes as well as structures.

D. A class can have more than one destructor.


Answer: Option A

Which of the following ways to create an object of the Sample class given below will work correctly?
class Sample
{
int i;
Single j;
double k;
public Sample (int ii, Single jj, double kk)
{
i = ii;
j = jj;
k = kk;
}
}

A. Sample s1 = new Sample();

B. Sample s1 = new Sample(10);

C. Sample s2 = new Sample(10, 1.2f);

D. Sample s3 = new Sample(10, 1.2f, 2.4);

E. Sample s1 = new Sample(, , 2.5);


Answer: Option D
Which of the following statements are correct about static functions?
1. Static functions can access only static data.
2. Static functions cannot call instance functions.
3. It is necessary to initialize static data.
4. Instance functions can call static functions and access static data.
5. this reference is passed to static functions.
A. 1, 2, 4

B. 2, 3, 5

C. 3, 4

D. 4, 5

E. None of these
Answer: Option A

In C#.NET if we do not catch the exception thrown at runtime then which of the following will catch
it?
A. Compiler

B. CLR

C. Linker

D. Loader

E. Operating system
Answer: Option B
Which of the following statements are correct?
1. We can assign values of any type to variables of type object.
2. When a variable of a value type is converted to object, it is said to be unboxed.
3. When a variable of type object is converted to a value type, it is said to be boxed.
4. Boolean variable cannot have a value of null.
5. When a value type is boxed, an entirely new object must be allocated and constructed.
A. 2, 5

B. 1, 5

C. 3, 4

D. 2, 3
Answer: Option B
Which of the following statements are correct about data types?
1. Each value type has an implicit default constructor that initializes the default value of that type.
2. It is possible for a value type to contain the null value.
3. All value types are derived implicitly from System.ValueType class.
4. It is not essential that local variables in C# must be initialized before being used.
5. Variables of reference types referred to as objects and store references to the actual data.
A. 1, 3, 5

B. 2, 4

C. 3, 5

D. 2, 3, 4
Answer: Option A
Which of the following are the correct way to initialise the variables i and j to a value 10 each?
1. int i = 10; int j = 10;
2. int i, j;
3. i = 10 : j = 10;
4. int i = 10, j = 10;
5. int i, j = 10;
6. int i = j = 10;

A. 2, 4

B. 1, 3

C. 3, 5

D. 4, 5
Answer: Option B
Which of the following statement correctly assigns a value 33 to a variable c?
byte a = 11, b = 22, c;

A. c = (byte) (a + b);

B. c = (byte) a + (byte) b;

C. c = (int) a + (int) b;

D. c = (int)(a + b);

E. c = a + b;
Answer: Option A
16. Which of the following statements are correct about datatypes in C#.NET?
1. Every datatype is either a value type or a reference type.
2. Value types are always created on the heap.
3. Reference types are always created on the stack.
4. Mapping of every value type to a type in Common Type System facilitates Interoperability in
C#.NET.
5. Every reference type gets mapped to a type in Common Type System.
A. 1, 3

B. 2, 5
C. 1, 4

D. 3, 4
Answer: Option C
Which of the following is the correct default value of a Boolean type?
A. 0

B. 1

C. True

D. False

E. -1
Answer: Option D

Vous aimerez peut-être aussi