Using system;
class main
{
public static void Main()
{
int a = 1;
for (int i = 0; i < 10; i++)
{
int j = a * 5;
Console.WriteLine(a + "*5=" + j);
a++;
}
Console.ReadLine();
}
}



Using system; class main { public static void Main() { int a = ..

Answer / suresh kumar patra

1*5=5
2*5=10
3*5=15
4*5=20
5*5=25
6*5=30
7*5=35
8*5=40
9*5=45
10*5=50

Is This Answer Correct ?    19 Yes 2 No

Post New Answer

More C Sharp Interview Questions

When Doveloped C#

2 Answers  


how to change a value of particular cell in a data grid

3 Answers  


What is double c#?

0 Answers  


What is xml serialization in c#?

0 Answers  


What is the use of 0 in c#?

0 Answers  






What is Web.config?

0 Answers   Amazon,


What is parsing?

0 Answers  


What is the difference between “finalize” and “finally” methods in c#?

0 Answers  


Explain the difference between pass by value and pass by reference.

0 Answers   TCS,


What is unmannaged code and will CLR handle this kind of code or not .

0 Answers   DELL,


What is an expression in c#?

0 Answers  


How do you declare an interface in c#?

0 Answers  


Categories