1234
123
12
1
how to design above pic in vb.net?
Answer Posted / sonia
Sub main()
Dim i, j As Integer
For i = 4 To 1 Step -1
For j = 1 To i
Console.Write(j)
Next
Console.WriteLine()
Next
Console.ReadLine()
End Sub
End Module
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
How would you implement inheritance using vb.net?
Which is the tool which can convert visual basic old version to .net compatibility version?
What is the main use of a namespace?
Which properties are used to bind a DataGridView control?
What is sorting in vb?
What is the ruby interface generator?
What are the shadow variables?
How many ways the function can return values?
List the types of generations in garbage collector?
What is the difference between Namespace and Assembly?
Define serialization in .net?
Can you please explain the difference between system.string and system.stringbuilder classes?
Write a program that would find the nth term of a geometric progression, given the value of first term and common ratio. Any inbuilt function that the language provides for calculating exponent should not be used.
Is it necessary to have SQL server installed in your computer in order to create a service based database in vb.net?
What is meant by jagged arrays?