Posts

Showing posts from May, 2020

Practice Programming Question Set-2

Hey there! Here, you would find practice sets for control statement questions and their solutions that are solved in 5 different programming languages c , c++ , java , kotlin, and python . All programs have been tested. Program develop tools VS code - text editor Linux - operating system java 11 kotlin 1.7.32 python 3.7 g++ for c and c++ you can find all code at Github 1 Write a program to find greater between three numbers. Solution input : num1 = 10 num2 = 5 num3 =7 output : Greater number:10 c c++ Java Kotlin Python package programjava; i...

Practice Basic Program Question Set -1

Welcome! Here, you would find practice sets for some basic questions and their solutions that are solved in 5 different programming languages c , c++ , java , kotlin, and python . All programs have been tested. Program develop tools VS code - text editor Linux - operating system java 11 kotlin CLI python 3.7 g++ for c and c++ you can find all code at Github Practical 1. Write a Hello world program Solution output : Hello, world! c c++ Java Kotlin Python class HelloWorld{ public static void main(String[] args)...