Ques:- What is web forms?
Thursday, 26 September 2013
Wednesday, 25 September 2013
Tuesday, 24 September 2013
What is Intermediate Language in .NET Framework?
Ques:-What is Intermediate Language in .NET Framework?
Monday, 23 September 2013
Sunday, 22 September 2013
Friday, 20 September 2013
Best C# Programs information
Que:- In how many ways you can create new copies of an existing string in C#?
Thursday, 19 September 2013
what is the basic difference between ASP. and ASP.NET?
Ques:- what is the basic difference between ASP. and ASP.NET??
ASP.NET Interviews Questions and answers?
Que:- What is ASP?
Monday, 16 September 2013
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
Friday, 13 September 2013
what is CLR in .NET?
Ques:- What is CLR?
Tuesday, 10 September 2013
What is C#?
Que:- What is C#?
Thursday, 5 September 2013
What is CTS?
Question: - What is CTS?
What is CLS?
Question- What is CLS?
What is FCL?
Question:- What is FCL?
Tuesday, 3 September 2013
what is CLR?
Q:- What is CLR?
Wednesday, 28 August 2013
Best Learning site C++
Que-Write a program to take integer value from user output will be doubled???
Monday, 26 August 2013
Latest If and else condition in C#
Que:-Write a program of If ,if else and else condition????
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???
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?????
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();
}
}
}
print vertically program
Q:- Write a program in C# that take string input and print the result vertically???
Thursday, 22 August 2013
Print star (*) horizontally with space in C#
Q:- Print * 10 times Horizontally with spaces between them using C# Console Application??
print star(*) horizonatally in C#
Q:- Print * 10 times Horizontally using C# Console Application???
print star(*) vertically in C#
Q:- . Print * 10 times vertically using C# Console Application?????'
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????
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???
Finding string length in C#
Q:2 Write a program in C# that take string input, and print is number of characters???
Subscribe to:
Posts (Atom)