.NET Interview Questions & Answers Part 2
Go Through Part1
1.What is CTS ?
CTS is Common Type System.This is a vital part of the .NET Framework’s CLR, the CTS specifies no particular syntax or keywords, but instead defines a common set of types that can be used with many different language syntaxes.Eg:-An int should mean the same in VB, VC++, C# and all other .NET compliant languages. This is achieved through introduction of Common Type System.
2. What is CLS??
Common Language Specification is a set of rules and constraints that every dot net compliant language must follow.It is a subset of the CTS.The CLS represents the guidelines defined by for the .NET Framework. These specifications are used by the compiler developers, which target the .NET Framework.
3.What is the difference between a thread and a process?
A process is an instance of a program that is being executed sequentially by a computer system that has the ability to run several programs concurrently.Whilest a single process may contain several executable programs(threads) that work together as a whole.A process have at least one thread of execution, and a thread always run in a process context.
4.What is the difference between a Panel and a GroupBox?
Both these are containers,which can hold other controls like,textboxes,labels,radiobuttons etc.The difference is that panel aint got a caption whereas groupbox can.Another difference is that panel can have scrollbars whereas groupboxes can’t have.
5.What is a POSTBACK ?
A Postback is an process done by a webpage, when the entire page and its contents are sent to the server for processing some information and then, the server posts the same page back to the browser.
Related posts:








Leave your response!