Tuesday 24 November 2015

C++ code to find table of any number

#include <iostream>
using namespace std;

int main()
{
int n;
cout << "Enter A Number : ";
cin >> n;
cout << n << " * " << 1 << " = " << n * 1 << endl;
cout << n << " * " << 2 << " = " << n * 2 << endl;
cout << n << " * " << 3 << " = " << n * 3 << endl;
cout << n << " * " << 4 << " = " << n * 4 << endl;
cout << n << " * " << 5 << " = " << n * 5 << endl;
cout << n << " * " << 6 << " = " << n * 6 << endl;
cout << n << " * " << 7 << " = " << n * 7 << endl;
cout << n << " * " << 8 << " = " << n * 8 << endl;
cout << n << " * " << 9 << " = " << n * 9 << endl;
cout << n << " * " << 10 << "= " << n * 10 << endl << endl;


return 1;
}
Share:

C++ code to find circumference of circle

#include <iostream>
using namespace std;

int main()
{
double  radius, circumference;
cout << "Enter The Radius Of circle : ";
cin >> radius;
circumference = 2 * 3.14*radius;
cout << "Circumference is : " << circumference << endl;




return 1;
}
Share:

C++ code to find area of circle

#include <iostream>
using namespace std;

int main()
{
float radius, area;
cout << "Enter The Radius Of Circle : ";
cin >> radius;
area = 3.14*radius*radius;
cout << "Area Of Circle  Is : " << area << endl;



return 1;
}
Share:

C++ Code to find average of marks

#include <iostream>
using namespace std;

int main()
{
int sub1, sub2, sub3, sub4, sub5, average;
cout << "Enter Marks Of Five Subjects : \n";
cin >> sub1 >> sub2 >> sub3 >> sub4 >> sub5;
average = (sub1 + sub2 + sub3 + sub4 + sub5) / 5;
cout << "Average is : " << average << endl;






return 1;
}
Share:

C++ Code for sum of 4 numbers

#include <iostream>
using namespace std;

int main()
{
int num1, num2, num3, num4, sum;
cout << "Enter Four Numbers : \n";
cout << "a = ";
cin >> num1;
cout << "b = ";
cin >> num2;
cout << "c = ";
cin >> num3;
cout << "d = ";
cin >> num4;
sum = num1 + num2 + num3 + num4;
cout << "Sum Is  : " << sum << endl;



return 1;
}
Share:

Saturday 24 October 2015

top software houses in pakistan

#1 : NetSol Technologies:
NetSol Technologies Software House is at # 1 in raking among all software houses in Pakistan.It is on CMMI Level 5.Najeeb Ghauri is the founder, Chairman of the Board of Directors and CEO of NetSol Technologies, Inc.
In the early years of the Company, he was responsible for restructuring the company’s business model into that of an IT company and was instrumental in the completion of the NetSol Technologies IPO in 1998, at that time NetSol was the first IT Company from Pakistan to be listed on NASDAQ. Prior to launching NetSol in the U.S.
Address : NetSol Avenue, Main Ghazi Road, Lahore. Postal address 54792
Phone # : (042) 111 448 800
#2 : Ovex Technologies:
Ovex Technologies is a third party offshore Business Process Outsourcing Software House, based in Pakistan.In total, it has eight Branches, located in the cities of Karachi, Lahore and Islamabad.
Address : 1st Floor, KSL Complex – Software Technology Park, Plot no. 156, I-9/3 Industrial Area, Islamabad.
Phone # : +92 42 111 111 502, +92 051 4430721
#3 : TRG Tech :
TRG Tech is a technology innovation firm and a division of trg bpo, Pakistan’s pioneering global outsourcing company.
Address : Plot No 7, Aitchison Street, 1 KM, Thokar Niaz Baig, Raiwind Road, Lahore 54000
Phone # : +92.42.111.874.874
#4 : System Pvt Ltd :
Systems Limited is a global leader of next-generation IT services and BPO solutions.The company has evolved and taken center stage in information and technology by providing computing strategies and solutions to Government and Private Organizations.
Address : E-5, Central Commercial Area, Shaded-e-Millat Road, Karachi, Pakistan
Phone # : (+92 21) 34549385-87
#5 : Kalsoft :
KalSoft provides deliberate and dynamic technology solutions that attain real business results for businesses in diverse industries.
Address : House # 1013, Service Road, Sector G-10/4, Islamabad Pakistan
Phone # : +(92-51) 2352446
#6 : Elixir Tech Ibds :
Elixir provides technology and services that help organizations improve communications to their members and customers by streamlining processes and reducing operational costs.
Address : No office in Pakistan. Email of Pakistan supervisor : usman_amjad@elixir.com
Phone # : 805 641 5900
#7 : Macrosoft Pakistan :
Macrosoft Pakistan (SMC-Private) Limited is a software design and development company established in October 2006 in Lahore, Pakistan. It is as an offshore development center of Macrosoft, Inc USA.
Address : 42-A, Abu Bakar Block, New Garden Town, Lahore, Pakistan
Phone # : +92- 423-35867781/82
#8 : Mindstorm Studios :
Mindstorm Studios is an independent game development studio located in Lahore, Pakistan. Established in 2006, the company mainly creates independently produced games, usually Multiplayer.
Address : 81 Babar Block, New Garden Town, Lahore – 54000
#9 : Xavor Corporation :
Xavor Corporation founded in 1995, it is a global technology and management consulting firm committed to delivering quality custom solutions, which enable our clients to realize significant gains in productivity and cost savings.Headquartered in Irvine, California,  Xavor counts more than 1000 clients globally, many of whom are supported by our offices in Lahore, Pakistan.
Address : Masood Anwari Rd, Cavalry Extension, Cavalry Ground, Lahore.
#10 : Techlogix :
Techlogix is listed on 10th position in 2014 list of List of Top Software Houses in Pakistan.
address : 39 Empress Road, Lahore, Pakistan
Phone # : +92 42 111 859 859

Share:

Saturday 17 October 2015