Skip to content
C# Corner
Search
articles
videos
blogs
forums
interview questions
articles
Tech
Articles
Blogs
News
Videos
Interviews
Forums
Books
Events
More
Jobs
Stories
Login
Contribute
Article
Blog
Video
Ebook
Interview Question
Loading
Recently Posted
Post a question
Category
All
ASP.NET (1906)
.NET (1364)
C# (632)
Software Testing (255)
Graphics Design (250)
Databases & DBA (221)
Operating Systems (202)
Angular (175)
ADO.NET (168)
Windows Forms (142)
Networking (133)
SQL Server (130)
SharePoint (127)
Java (125)
OOP/OOD (125)
Design Patterns & Practices (121)
Android (104)
Azure (94)
Web Development (94)
JavaScript (81)
Hardware (68)
JQuery (68)
Learn iOS Programming (65)
WPF (65)
.NET Core (58)
Web API (55)
SQL (52)
COBOL.NET (40)
LINQ (40)
Python (40)
XAML (38)
C, C++, MFC (34)
Threading (31)
HTML 5 (30)
WCF (26)
Visual Basic .NET (24)
Dynamics CRM (22)
XML (22)
Google Cloud (21)
Java and .NET (21)
Metaverse (21)
PHP (21)
TypeScript (21)
UWP (21)
.NET MAUI (20)
Bot Framework (20)
Business Intelligence(BI) (20)
Cognitive Services (20)
Cosmos DB (20)
Error Zone (20)
F# (20)
Games Programming (20)
Generative AI (20)
Kotlin (20)
NFT (20)
Polygon (20)
PostgreSQL (20)
Q# (20)
RUST (20)
ServiceNow (20)
SignalR (20)
Solidity (20)
Unity (20)
Web3 (20)
React (19)
MuleSoft (18)
Power Apps (18)
Power BI (18)
.NET Assemblies (17)
Cyber Security (17)
Servers (17)
.NET Remoting (16)
Backbonejs (16)
COM Interop (16)
Compact Framework (15)
Cryptography (15)
DevOps (15)
AI (14)
AJAX (14)
Internet of Things (14)
Big Data (13)
Tools (13)
Algorithms in C# (12)
Xamarin (12)
Blazor (11)
HoloLens (11)
Microsoft Phone (11)
XSharp (11)
Reports using C# (10)
ASP.NET Core (8)
Avalanche (8)
Blockchain (8)
Custom Controls (8)
Entity Framework (8)
Windows (8)
.NET Standard (7)
AWS (7)
Crystal Reports (7)
GDI+ (7)
Algorand (6)
Machine Learning (6)
Mobile Development (6)
Career Advice (5)
Cloud (5)
Flutter (5)
Agile Development (4)
Microsoft 365 (4)
Node.js (4)
Salesforce (4)
Swift (4)
Oracle (3)
Power Automate (3)
Software Architecture/Engineering (3)
Windows PowerShell (3)
Workflow Foundation (3)
Business (2)
CSS (2)
JSON (2)
Microsoft Fabric (2)
MongoDB (2)
MySQL (2)
Open Source (2)
Project Management (2)
R (2)
Bootstrap (1)
C# Strings (1)
Coding Best Practices (1)
Current Affairs (1)
Data Mining (1)
Data Science (1)
Databricks (1)
How do I (1)
Infragistics (1)
Internet & Web (1)
Ionic (1)
Learn .NET (1)
Microsoft Office (1)
Microsoft Teams (1)
Office Development (1)
Security (1)
Silverlight (1)
Startups (1)
Visual Studio (1)
Vue.js (1)
Job Title
All
Go
Clear
6
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
10y
Posted Dec 24, 2015, 11:40 AM
.NET
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
10y
Posted Dec 24, 2015, 11:30 AM
.NET
6
Answers
Which of the following can be used to declare an interface correctly? a) Properties b) Methods c) Structures d) Events
Rajesh Singh
10y
Posted Dec 24, 2015, 11:28 AM
.NET
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
10y
Posted Dec 24, 2015, 11:26 AM
.NET
4
Answers
What we do For avoiding Sql injection attack?
Sandeep Kumar
10y
Posted Dec 24, 2015, 3:58 AM
.NET
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
10y
Posted Dec 24, 2015, 2:15 AM
.NET
2
Answers
What is the need of .Net framework ?
Kumar Bhimsen
10y
Posted Dec 23, 2015, 7:34 AM
.NET
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
10y
Posted Dec 22, 2015, 8:05 AM
.NET
1
Answers
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 : ICollect
Rajesh Singh
10y
Posted Dec 22, 2015, 8:04 AM
.NET
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
10y
Posted Dec 22, 2015, 8:02 AM
.NET
4
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
10y
Posted Dec 22, 2015, 8:00 AM
.NET
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
10y
Posted Dec 22, 2015, 7:59 AM
.NET
6
Answers
2. How many default Constructors can a class have? a. 1 b. 2 c. None d. Many
Rajesh Singh
10y
Posted Dec 22, 2015, 7:58 AM
.NET
5
Answers
1. What is default Access Modifier of a Class? a. Public b. Private c. Protected d. Internal
Rajesh Singh
10y
Posted Dec 22, 2015, 7:58 AM
.NET
2
Answers
How many method is there to remove unreachable object from memory?
Sandeep Kumar
10y
Posted Dec 21, 2015, 2:57 PM
.NET
«
50
51
52
53
54
»
766 - 780 of 1364