Monthly Archives: July 2019

Write and Run Sample Python Script

How to Write and Run Sample Python Script: In this tutorial we will write a sample Python script To Input name of the user and display a Welcome message to the user. We will suppose that you have already installed Python 3.7 on your computer system. If you have not installed the Python 3.7, please… Read More »

Loading

How To Run Python on Windows

How To Run Python on Windows – The minimum requirement to do so is to Install Python on Windows. Here is a simple and easy to understand Python Installation Tutorial With Pictures. How To Download and Install Python On Windows You can easily download and install Python on Windows by following the steps described in… Read More »

Loading

How To Install Python on Windows

Here is a Python Installation Guide – How To Install Python on Windows. This Python Installation Guide describes a step by step procedure with supporting images. Because, the images will make it easy to understand and learn the whole Python installation process. What is Python? Python is an interpreted, interactive, object-oriented and portable programming language.… Read More »

Loading

Java If Else Test Grade Program

Task: Java If Else Test Grade Program – Write a Java program to input test score of a student and show the grade according to the given criteria: test scores 90 or more , ‘A’ grade test scores 80 or more, ‘B’ grade test scores 70 or more, ‘C’ grade test scores 60 or more,… Read More »

Loading

Sum & Count of Even Odd Separately in Array

Task: Sum & Count of Even Odd Separately in Array // Write a C++ program to input 10 numbers // in array then display sum and count of even // and odd numbers in Array, separately. // Author: www.EasyCodeBook.com (c) #include<iostream> using namespace std; int main() { int arr[10],i,esum,osum,ecount,ocount; for(i=0;i<10;i++) { cout<<“Enter Number “<<(i+1)<<” :”;… Read More »

Loading