Skip to main content

About



Haris Haider is Global full-cycle software developer with niche expertise and a focus on the latest technologies. Since May 2017, has employed a skilled team of developers in AG Consultraining Pvt Ltd. in Karachi, Pakistan, who are totally focused on delivering high-quality software solutions which
enable customers to achieve their critical IT objectives.
I have completed various development projects for international clients in many market
sectors, including Market Research, Transport, Test, and Measurement.
I realize that clients need partners who understand business operations and procedures. I take
pride in my ability to grasp business processes. The ability to convert this knowledge into up to
date software solutions is what sets me apart. Therefore, I ensure providing the latest and most
competitive software solutions to my clients leading to effective management of their
resources and operations.



Comments

Popular posts from this blog

Python Program to Make a Simple Calculator

In this example you will learn to create a simple calculator that can add, subtract, multiply or divide depending upon the input from the user. Simple Calculator by Making Functions # Add Function for addition def add(x,y): return x+y # Subtraction Function def subtract(x,y): return x-y # Multiplication Function def multiply(x,y): return x*y # Division Function def divide(x,y): return x/y print("Select operation.") print("1.Add") print("2.Subtract") print("3.Multiply") print("4.Divide") # Take input from the user something like scanf in C language check =input("Enter choice(1/2/3/4):") num1 = int(input("Enter first number:")) num2 = int(input("Enter second number:")) if check=="1": print(num1," + ",num2," = ",add(num1,num2)) elif check=="2": print(num1," - ",num2," = ",subtract(num1,num2)) elif check=...