Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
Sr. Developer Interview Questions
Recently Posted
Category
All
.NET
.NET Assemblies
.NET Core
.NET Standard
Active Directory
ADO.NET
Agile Development
AJAX
Alexa Skills
Algorithms in C#
Android
Angular
Architecture
ArcObject
Artificial Intelligence
ASP.NET
ASP.NET Core
Augmented Reality
Aurelia
AWS
Azure
Backbonejs
Big Data
BizTalk Server
Blockchain
Bootstrap
Bot Framework
Business
C#
C# Corner
C, C++, MFC
Career Advice
Chapters
CIO
Cloud
COBOL.NET
Coding Best Practices
Cognitive Services
COM Interop
Compact Framework
Cortana Development
Cryptocurrency
Cryptography
Crystal Reports
Current Affairs
Custom Controls
Cyber Security
Data Mining
Databases & DBA
Design Patterns & Practices
DevOps
DirectX
Dynamics CRM
Enterprise Development
Entity Framework
Error Zone
Exception Handling
Expression Studio
F#
Files, Directory, IO
Games Programming
GDI+
Google Cloud
Google Development
Graphics Design
Hardware
Hiring and Recruitment
HoloLens
How do I
HTML 5
Internet & Web
Internet of Things
Ionic
iOS
Java
Java and .NET
JavaScript
JQuery
JSON
JSP
Knockout
kotlin
Leadership
Learn .NET
LightSwitch
LINQ
Machine Learning
Microsoft 365
Microsoft Office
Microsoft Phone
Mobile Development
Multithreading
NetBeans
Networking
Node.js
Office Development
OOP/OOD
Open Source
Operating Systems
Oracle
Others
Outsourcing
Philosophy
PHP
Power BI
Printing in C#
Products
Progressive Web Apps
Project Management
Python
Q#
QlikView
R
React
Reports using C#
Robotics & Hardware
Ruby on Rails
Salesforce
Security
Servers
SharePoint
SignalR
Silverlight
Smart Devices
Software Testing
SQL Language
SQL Server
Startups
String in C#
Swift
TypeScript
Unity
UWP
Visual Basic .NET
Visual Studio
WCF
Wearables
Web Development
Web Services
Windows 10
Windows Controls
Windows Forms
Windows PowerShell
Windows Services
Workflow Foundation
WPF
Xamarin
XAML Standard
XML
XNA
XSharp
No data found
4
Answers
Which of the following can be declared in an interface?Properties Methods Enumerations Events Structures A. 1, 3 B. 1, 2, 4 C. 3, 5 D. 4, 5
Rajesh Singh
8y
Reply
11
Answers
A class consists of two interfaces with each interface consisting of three methods.The class had no instance data. Which of the following indicates the correct size of object created from this class? a) 12 bytes b) 16 bytes c) 0 bytes d) 24 bytes
Rajesh Singh
8y
Reply
6
Answers
Which of the following can be used to declare an interface correctly? a) Properties b) Methods c) Structures d) Events
Rajesh Singh
8y
Reply
5
Answers
Which of the following modifiers is used when an abstract method is redefined by a derived class? a) Overloads b) Override c) Base d) Virtual
Rajesh Singh
8y
Reply
2
Answers
If a class inheriting an abstract class does not define all of its functions then it is known as? a) abstract b) A simple class c) Static class d) None of the mentioned
Rajesh Singh
8y
Reply
2
Answers
The modifier used to define a class which does not have objects of its own but acts as a base class for its subclass is? a) Sealed b) Static c) New d) abstract
Rajesh Singh
8y
Reply
2
Answers
How to get only schema of a table in ADO.NET? a. DataAdapter.Fill(Dataset); b. DataAdapter.Schema(Dataset,“TableName”); c. DataAdapter.FillSchema(Dataset); d. DataAdapter.GetSchema(Dataset,”TableName”);
Rajesh Singh
8y
Reply
1
Answer
How to prevent DLL Hell in .net? a. The runtime checks to see that only one version of an assembly is on the machine at any one time. b. NET allows assemblies to specify the name AND the version of any assemblies they need to run. c. The compiler offers compile time checking for backward compatibility. d. It doesn’t.
Rajesh Singh
8y
Reply
1
Answer
You have recently developed a Class named “ShopList”. The class is having Public properties Name, ID, Discount. You need to enable the users of the class to iterate through the ShopList collections. Which of the following code snippet will you use? a. public class ShopList : IEnumerator, IEnumerable { // Class implementation } b. public class ShopList : IBindingList { // Class implementation } c. public class ShopList : IDictionary { // Class implementation } d. public class ShopList : ICollection { // Class implementation }
Rajesh Singh
8y
Reply
2
Answers
What is Method Hiding? a. Creating a new implementation of the method in the derived class with new keyword. b. Restricting the method from being called. c. Creating a new name for the Method in the derived class with new keyword. d. Method Overriding in the derived class.
Rajesh Singh
8y
Reply
3
Answers
If a Class is inheriting an interface then a. Inherit the properties of the interface. b. Contain the same methods from the interface. c. Create an interface object. d. All
Rajesh Singh
8y
Reply
3
Answers
Different ways a method can be overloaded? a. Different Parameter datatypes b. Different number of parameters c. Different order of parameters d. All
Rajesh Singh
8y
Reply
3
Answers
How do you prevent a class from being inherited? a. By making the class as Private. b. By making the class as private and using sealed keyword. c. By making the class as protected and using sealed keyword. d. By making the class as Sealed.
Rajesh Singh
8y
Reply
2
Answers
What is the difference between Dispose() and Finalize() methods? a. Dispose() method will remove the resources to a class and Finalize() will release the memory for a class. b. Dispose() method is used for a class and Finalize() method is for a class method. c. Dispose() will be called by programmer explicitly and Finalize() method is called by Garbage Collector implicitly. d. All.
Rajesh Singh
8y
Reply
11
Answers
2. How many default Constructors can a class have? a. 1 b. 2 c. None d. Many
Rajesh Singh
8y
Reply
13
14
15
16
17
211
-
225
of
773
View More
Do you know the answer for the question? Post below
*