+923132835245
safcodeinstitute@gmail.com
Online Quiz
10000+ Questions!
Students Works
Ideas & Topics!
Live Coding
HTML & CSS
Home
(current)
About
Courses
CIT
Web Designing
Graphic Designing
Web Development
Digital Marketing
WordPress + SEO
Artificial Intelligence (AI)
Shopify + WordPress Development
Tutorials
Feedback
Programming Notes
Enroll Now
Contact
Test Your Programming Skills with Safcode!
Here is all important interview / exams questions.
Student doing practice apptitude test on safcode platform.
Instruction: "Total Number of Questions: 20
Each question carry 10 mark , no negative marking"
Quiz Start
1. The _______ types feature facilitates the definition of classes, structures, and interfaces over multiple files.
Partial
unnamed
All of them
Anonymous
View Answer
2. EF queries are converted to ______ queries for underlying databases.
XML
SQL
API
Reference
View Answer
3. Which of the following code declares the delegate Calculation with the returns type and the parameter types as integer.
public delegate int Calculation(int numOne, int numTwo);
delegate Calculation (int numOne, int numTwo);
public delegate Calculation(int numOne, int numTwo);
delegate int Calculation (int numOne, int numTwo);
View Answer
4. Which property can be used to find the length of a string?
textlength()
getlength()
length()
Length
View Answer
5. Which of following components of the .NET framework enable interoperability of dynamic with the .NET Framework?
Common Language Runtime (CLR)
Base Framework Classes
Dynamic Language Runtime(DLR)
Common Type System(CTS)
View Answer
6. Which operator can be used to compare two values?
<=
==
<>
=
View Answer
7. Which data type is used to create a variable that should store text?
float
int
String
Boolean
View Answer
8. What is the process of the concurrentDictionary
class?
Provide a threads-safe implementation of a queue
Provide a threads-safe implementation of a stack
None of them
Provide a threads-safe implementation of a dictionary of key value pairs
View Answer
9. What is the correct way to create an object called myObj of MyClass?
new obj = new ();
all of these
myclass myobj = new myclass();
class myobj = myclass();
View Answer
10. An________ method is an inline nameless block of code that can be passed as a delegate parameter.
anonymous
partial
unnamed
named
View Answer