Thursday 26 September 2013

Wednesday 25 September 2013

XML documentation comments in C#?

Ques:-XML documentation comments in C#?
Read more »

Comments in C#?

Ques:-What is comments in C#?

Read more »

What is adding comments in C# code?

Ques:-What is adding comments in C# code?

Read more »

What is value parameters?

Ques:- What is value parameters?

Read more »

What is array elements?

Ques:-What is array elements?

Read more »

What a Instance variable in struct?

Ques:- What a Instance variable in struct?

Read more »

What is Instance variables in Classes?

Ques:-What is Instance variables in Classes?

Read more »

What is Instance Variable in C#?

Ques:- What is Instance Variable in C#?

Read more »

Static variable in C#?

Que:-What is Static variable in C#?

Read more »

Variable categories

Ques:- What is static variables?

Read more »

Tuesday 24 September 2013

What is variables in C#?

Ques:-What is variables in C#?

Read more »

What is Namespaces in .NET framework?

Ques- What is Namespaces in .NET framework?

Read more »

What is Assemblies in .net framework?

Ques:-What is Assemblies in .net framework?

Read more »

What is Intermediate Language in .NET Framework?

Ques:-What is  Intermediate Language in .NET Framework?

Read more »

Common Type System in .NET?

Ques:- What is Common Type System in .NET?

Read more »

Sunday 22 September 2013

Friday 20 September 2013

Thursday 19 September 2013

What is Post Back?

Ques:- how can we identify the page is post back?
Read more »

What is Event?

Ques:- In which events are the control fully loaded?
Read more »

what is the basic difference between ASP. and ASP.NET?

Ques:- what is the basic difference between ASP. and ASP.NET??
Read more »

What is ASP.NET?

Que:-What is ASP.NET?
Read more »

ASP.NET Interviews Questions and answers?

Que:- What is ASP?
Read more »

Monday 16 September 2013

What is string type?

Ques:-What is string type?
Read more »

What is Dynamic type?

Ques:- what is dynamic type?

Read more »

What is Reference Type?

Que:- What is Reference Type?

Read more »

What is value type?


Value type:- Value types of variables can be assigned to value directly. They are derived from the base class. System.valueType
The value types directly contain data. Some examples are int , float, char that means int store the integer value, and string contains the alaphabetically and fkoat contains the floating numbers.

Program:-get the size of int\
namespace DataTypeApplication
{
   class Program
   {
      static void Main(string[] args)
      {
         Console.WriteLine("Size of int: {0}", sizeof(int));
         Console.ReadLine();
      }
   }
}
Size of int: 4
Read more »

How many types of variables in C#?

Ques:- How many types of variables in C#?

Read more »

Friday 13 September 2013

What is MSIL in .NET?

Que:- What is MSIL?

Read more »

What is Managed code in .NET?

Que:- What is Managed code?

Read more »

What is CLS in .NET Framework?

Ques:- What is CLS?

Read more »

What is CTS in .NET?

Que:- What is CTS?
Read more »

what is CLR in .NET?

Ques:- What is CLR?

Read more »

Best Interviews Question of .NET Framework?

Que:-What is .Net Framework?

Read more »

Tuesday 10 September 2013

What is Variables?

Question:- What is Variables?

Read more »

What is While -loop?

Que:- What is While -loop?

Read more »

What is comments?

Que:- what is comments?

Read more »

What is main?

Que:- What is main?

Read more »

What is C#?

Que:- What is C#?

Read more »

What is .NET?

Que:- What is .NET?

Read more »

Thursday 5 September 2013

What is .NET Framework?

Question: What is .NET Framework?

Read more »

What is Garbage Collection(GC)?

Question:- What is Garbage Collection(GC)?

Read more »

What is CTS?

Question: - What is CTS?

Read more »

What is CLS?

Question- What is CLS?

Read more »

What is FCL?

Question:- What is FCL?
Read more »

Tuesday 3 September 2013

Wednesday 28 August 2013

Best Learning site C++

Que-Write a program to take integer value from user output will be doubled???
Read more »

Addition program in C++

Q:- Write a program in C++ two Addition number???
Read more »

Best and latest C++ programs

Que:-  Write a program to print "HELLO"????
Read more »

Monday 26 August 2013

Latest If and else condition in C#

Que:-Write a program of If ,if else and else condition????
Read more »

Best tutorial learning C# Programming

Que:- you can use any valid Boolean expression for the condition. You can use logical operators such as &&, &, ||, | and ! to make compound conditions. The following code shows examples???
Read more »

Best site learning c# programming

Que:- The following example determines whether an input character is a lowercase letter, an uppercase letter, or a number. If all three conditions are false, the character isn’t an alphanumeric character. The example displays a message for each case???
Read more »

Simple If -else condition program in C#

Q:- In the following example, you enter a character from the keyboard, and the program uses a nested if statement to determine whether the input character is an alphabetic character. If the input character is an alphabetic character, the program checks whether the input character is lowercase or uppercase. A message appears for each case?????
Read more »

Sunday 25 August 2013

best sorting program in C#


Que- Write an array in C Sharp of length 3, and sort it???

Ans:- using System;
using System.Collections.Generic;
using System.Text;

namespace codeforevenorodd
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] number=new int[]{3,6,1,30,2};
            Array.Sort(number);
           foreach(int i in number)
           {
               Console.WriteLine(i);
           }
           Console.ReadLine();
        }
      
        }
    }
 
Read more »

print vertically program

Q:- Write a program in C# that take string input and print the result vertically???
Read more »

Thursday 22 August 2013

Print Even numbers in C#

Q:-Write a program that print even numbers from 1 to 20?????
 
Read more »

Print Table program in C#

Q:- Write table of 2 using for loop in C# ???
Read more »

Print star (*) horizontally with space in C#

Q:- Print * 10 times Horizontally with spaces between them using C# Console Application??
Read more »

print star(*) horizonatally in C#






Q:- Print * 10 times Horizontally using C# Console Application???
Read more »

print star(*) vertically in C#

Q:- . Print * 10 times vertically using C# Console Application?????'
Read more »

Sorting Array in C#

 Q:- Sorting Array in C#???
Read more »

Login programs in C#

Q:- Q. Write a program in C# that take name and password. If the name and password are correct, the program show "you are logged in", otherwise, "incorrect name or password????
Read more »

Best and easy programs in C#

Q:- Write a program in C# that take a sentence as input, and show the number of "a" used in the sentence???
Read more »

Finding string length in C#


Q:2 Write a program in C#  that take string input, and print is number of characters???
Read more »

Even or odd – A sample program in C#

Q:-1    Even or odd – A sample program in C#
Read more »