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 SubEnd 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 SubEnd Module
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here