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


Please Help Members By Posting Answers For Below Questions

What is the difference between vb 6 and vb.net?

847


Explain trace in vb.net?

721


What do you mean by serialization?

727


What is the importance of a Button control?

1075


Explain jit?

725


Did vb6 support multi-threading ?

720


What is a preprocessor directive in vb.net?

730


What is break mode? What are the options to step through code?

755


What is the advantage of using system.text.stringbuilder over system.string?

823


Explain the difference between datatable and dataset?

800


Which is the tool which can convert visual basic old version to .net compatibility version?

700


What is the difference between readonly variable and constant variable?

753


What do you mean by deserialization?

746


Explain the services provided by common language infrastructure.

920


Explain option explicit?

758