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();
}
}
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 |
Will finally block get executed if the 1exception had not occurred?
What is the difference between virtual and override in c#?
Explain the use of Mutex in C#?
0 Answers Sans Pareil IT Services,
If a class is a ref type, how we can pass to a function.
What are "class access modifiers" in C#?
What is meant by unicode characters?
what is reference parameter? what is out parameters? what is difference these two?
9 Answers Bally Technologies, SPIC, Wipro,
4. Describe the process when we send a request URL? And who is responsible for that?
5. What properties we used to call stored procedure in C#?
What is lazy in c#?
What?s a satellite assembly?
Are structs value types c#?