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 »