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
What is the difference between vb 6 and vb.net?
Explain trace in vb.net?
What do you mean by serialization?
What is the importance of a Button control?
Explain jit?
Did vb6 support multi-threading ?
What is a preprocessor directive in vb.net?
What is break mode? What are the options to step through code?
What is the advantage of using system.text.stringbuilder over system.string?
Explain the difference between datatable and dataset?
Which is the tool which can convert visual basic old version to .net compatibility version?
What is the difference between readonly variable and constant variable?
What do you mean by deserialization?
Explain the services provided by common language infrastructure.
Explain option explicit?