Tuesday, February 3, 2026

Programmingway@Eklavya Technosys!: IOT - Internet of Things

Programmingway@Eklavya Technosys!: IOT - Internet of Things:  1) What is an Internet? Answer: Internet is a global network of interconnected computers for exchange of information via graphics, sound, ...

Sunday, February 1, 2026

Programmingway@Eklavya Technosys!: Small Basic Decision Making Code

Programmingway@Eklavya Technosys!: Small Basic Decision Making Code: To input two numbers and display the largest number. To take any any number as input check whether is positive or negative.

Programmingway@Eklavya Technosys!: To check whether number is positive or negative.

Programmingway@Eklavya Technosys!: To check whether number is positive or negative.: Check whether the number is negative or positive after taking a number as input from the user. TextWindow . WriteLine ( "Ente...

Programmingway@Eklavya Technosys!: Small Basic Code To Display the largest number amo...

Programmingway@Eklavya Technosys!: Small Basic Code To Display the largest number amo...: (a) To input two numbers and display the largest number. TextWindow . WriteLine ( "Enter First Number " ) num1 = Textwindo...

To check whether number is positive or negative.

Check whether the number is negative or positive after taking a number as input from the user.

TextWindow.WriteLine("Enter any Number ")

num=Textwindow.ReadNumber()

If num<0 Then

  TextWindow.WriteLine("It's Negative Number")

Else

  TextWindow.WriteLine("It's Positive Number ")

EndIf

Output








Small Basic Code To Display the largest number among two numbers.

(a) To input two numbers and display the largest number.

TextWindow.WriteLine("Enter First Number ")

num1=Textwindow.ReadNumber()

TextWindow.WriteLine("Enter Second Number ")

num2=Textwindow.ReadNumber()

If num1>num2 Then

           TextWindow.WriteLine("The largest number is num1 "+ num1)

Else

           TextWindow.WriteLine("The largest number is num2 "+ num2)

     EndIf

Output




Sunday, January 25, 2026

Programmingway@Eklavya Technosys!: IOT - Internet of Things

Programmingway@Eklavya Technosys!: IOT - Internet of Things :  1) What is an Internet? Answer: Internet is a global network of interconnect...