In this two vb.net program write in pseudocode. Thankyou Module Module1 Sub Main() For j As Integer = 1 To 5 For i As Integer = 1 To 5 Console.Write(j*i) Next Console.Writeline("") Next End Sub End...


In this two vb.net program write in pseudocode. Thankyou



Module Module1
   Sub Main()
     For j As Integer = 1 To 5
    For i As Integer = 1 To 5
      Console.Write(j*i)
    Next
    Console.Writeline("")
    Next
   End Sub
End Module




Module VBModule


    Sub Main()

        ' Code variable declaration
        Dim st As String

        ' Input string
        st = Console.ReadLine()

        ' Modify string
        st = UCase(st)
        st = Replace(st, "E", "e")
        st = Replace(st, "X", "x")

        ' Output the modified string
        Console.WriteLine(st)

    End Sub
End Module



Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here