Find the mistakes in this VB.net code using VB.net language Module Module1 Sub Main() Dim x As Integer = 5 If x = 10 Then Console.WriteLine("x value equals to 10") ElseIf x > 10 Then...


Find the mistakes in this VB.net code using VB.net language


Module Module1
Sub Main()
        Dim x As Integer = 5
        If x = 10 Then
            Console.WriteLine("x value equals to 10")
        ElseIf x > 10 Then
            Console.WriteLine("x value greater than 10")
        Else
            Console.WriteLine("x value less than 10")
        End If
        Console.WriteLine("Press Enter Key to Exit..")
        Console.ReadLine()
    End Sub
End Module



Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here