Sunday, 22 April 2018

ICC Team Ranking Andriod Application


Menu 
       
Test

ODI


 ICC Team Ranking application for Andriod in APK Format.
https://drive.google.com/open?id=1yw8TQ5trsU3F7_WLCQiXOA9Y4_pS_hus



Future of Artificial Intelligence Report.


Report On Future of Artificial Intelligence.
To download this report Click on below link.

https://drive.google.com/open?id=1NqR3s3_6IaVep2zwX9r459U7k8KnwHlJ

C++ Programming by D.S Malik

https://drive.google.com/open?id=1WkKDMIPab50v_djYafKs675gIyQkBp5i

Test Match Program in C++.

To Download Test Match program in c++ click below the link
https://drive.google.com/open?id=1Em5KdTL7lY0peg-ys0cfOOpiHMYEYkrx

Thursday, 12 April 2018

Download Winrar-x64 exe file.

https://drive.google.com/open?id=1JPwPP6o4cyxfpmU1wmfvPx8EBYrkpUff

Fun Mark System Graphic Test Download.

https://drive.google.com/open?id=1-ukCGHgA7jt3KA7OQJBta9lfR14YFbTG

Download ISO Burn

https://drive.google.com/open?id=1U46669iYWH340bujEyMV4fSbwAWuJNTC

Microsoft Toolkit (Windows & Office Activator)

https://drive.google.com/open?id=1dcZYE7hoKA3-TWUyKCgj5rBK0d1HWmym

Download IDM With Cracks.

https://drive.google.com/open?id=1r91GkCsNC39n5CvuuqLO81nnMOX6cULw

Sunday, 8 April 2018

2:1 Multiplexer with Equation, Truth table and Diagram in Urdu & Hindi

2:1 Multiplexer 

Define a Class Distance with private attributes Feet (int) and Inches (float). Also, define public member functions: - Set_distance() – to assign values to the class attributes - Display_distance() – to display the values of class attributes Include a main() program that creates an instance (object) of type Distance. Ask the user to enter the value of Distance variables and call the appropriate functions to set the object value and then display the object value.

#include<iostream>
#include<conio.h>
using namespace std;
class Distance{
private:
int feet;
float inches;
public:
void set_distance();
void display_distance();
};
int main()
{
Distance t;
t.set_distance();
t.display_distance();
}

Should Govenment Control The internet or Its Contents

Should Government Control the Internet or Its Contenthttps://drive.google.com/open?id=11Un6YXH5x6nojrYc_dbjqbWhz--_6Zj6

Create a structure called Volume that uses three variables of type Distance (from the ENGLSTRC example) to model the volume of a room. Initialize a variable of type Volume to specific dimensions, then calculate the volume it represents, and print out the result. To calculate the volume, convert each dimension from a Distance variable to a variable of type float representing feet and fractions of a foot, and then multiply the resulting three numbers.


using namespace std;
#include<iostream>
#include<conio.h>
struct volume
{
int len,width,height,l_inch,w_inch,h_inch;
};
int main()
{
volume v;
cout<<"###First of all enter feet then inches###"<<endl;
cout<<"Enter the length of room in feet and inches : ";
cin>>v.len>>v.l_inch;
cout<<"Enter the width of room in feet and inches : ";
cin>>v.width>>v.w_inch;
cout<<"Enter the Height of room in feet and inches : ";
cin>>v.height>>v.h_inch;
//Now convert these values in float
float length,width,height,volume;
length=v.len+((float)(v.l_inch)/12);
width=v.width+((float)(v.w_inch)/12);
height=v.height+((float)(v.h_inch)/12);
cout<<"The length of room in foot is : "<<length<<endl;
cout<<"The Base of room in feet is: "<<width<<endl;
cout<<"The Height of room in feet is : "<<height<<endl;
volume=length*width*height;
cout<<"Volume of Room is: "<<volume;
}

Create a structure called time. Its three members, all type int,should be called hours, minutes, and seconds. Write a program that prompts the user to enter a time value in hours, minutes, and seconds. This can be in 12:59:59 format, or each number can be entered at a separate prompt (“Enter hours:”, and so forth). The program should then store the time in a variable of type struct time, and finally print out the total number of seconds represented by this time value: long totalsecs = t1.hours*3600 + t1.minutes*60 + t1.seconds.

using namespace std;
#include<iostream>
#include<conio.h>
struct time{
int hours,mint,sec;
};
int main()
{
time t;
int total_sec;
cout<<"Enter the Hours:";
cin>>t.hours;
cout<<"Enter the minutes:";
cin>>t.mint;
cout<<"Enter seconds:";
cin>>t.sec;
cout<<"Your entered time is "<<t.hours<<":"<<t.mint<<":"<<t.sec<<endl;
total_sec=t.hours*3600+t.mint*60+t.sec;
cout<<"Total second in your entered time is: "<<total_sec;

}

One interesting application of computers is drawing graphs and bar charts (sometimes called “histograms”). Write a program that reads five numbers (each between 1 and 30). For each number read, your program should print a line containing that number of adjacent asterisks. For example, if your program reads the number seven, it should print

using namespace std;
#include<iostream>
#include<conio.h>
int main()
{
int i,j,a;
for(i=0;i<5;i++)
{
cout<<"Enter the number:";
cin>>a;
for(j=1;j<=a;j++)
{
cout<<"* "<<endl;
}

}
return 0;
}

Write a program that take a string from the user find the Vowels in the string using pointer.

#include<iostream>
#include<conio.h>
using namespace std;
int main ()
{
char text[100],*ptr;
int count=0;
cout<<"Enter string:";
cin.get(text,20);
ptr=text;
for(;*ptr!='\0';*ptr++)
{
if(*ptr=='a'||*ptr=='A'||*ptr=='e'||*ptr=='E'||*ptr=='i'||*ptr=='I'||*ptr=='o'||*ptr=='O'||*ptr=='u'||*ptr=='U')
{
cout<<"Vowels letter usein your string is :"<<*ptr<<endl;
count=count+1;
}
}cout<<count<<" vowel letters are use in your string.";
return 0;
}

Write a program that uses pointers to print the 5 values of an array.

#include<iostream>
#include<conio.h>
using namespace std;
int main ()
{
int arry[5],*ptr;
for(int i=0;i<5;i++)
{
cout<<"Enter the number:";
cin>>arry[i];
}
cout<<"Your entered values are:"<<endl;
ptr=&arry[0];
for(int i=0;i<5;i++)
{
cout<<*ptr++<<endl;
}
}

A company pays its employees as managers (who receive a fixed weekly salary), hourly workers (who receive a fixed hourly wage for up to the first 40 hours they work and “time-and-a-half,” i.e., 1.5 times their hourly wage, for overtime hours worked), commission workers (who receive $250 plus 5.7% of their gross weekly sales), or pieceworkers (who receive a fixed amount of money per item for each of the items they produce—each pieceworker in this company works on only one type of item). Write a program to compute the weekly pay for each employee. You do not know the number of employees in advance. Each type of employee has its own pay code: Managers have paycode 1, hourly workers have code 2, commission workers have code 3 and piece- workers have code 4. Use a switch to compute each employee’s pay based on that employee’s paycode. Within the switch, prompt the user (i.e., the payroll clerk) to enter the appropriate facts your program needs to calculate each employee’s pay based on that employee’s paycode.

#include<iostream>
#include<conio.h>
#include<iomanip>
using namespace std;
int main ()
{
int paycode,weklysalary,hourlysalary,totalhours,grossweklysales,pieces,piecewage;
double pay;
cout<<"Enter paycode (1 to 4):"<<endl;
cout<<"press 1 for manager weelky salary"<<endl;
cout<<"press 2 for hourly worker salary"<<endl;
cout<<"press 3 for comission worker salary"<<endl;
cout<<"press 4 for piece worker salary"<<endl;
cin>>paycode;
switch (paycode)
{
case 1:
{
cout<<"Manager selected." << endl;
cout<<"Enter weekly salary: ";
cin>>weklysalary;
cout<<endl;
pay=weklysalary;
cout<<"The manager's pay is  " << pay;
cout<<endl;
    }
break;
case 2:
{
cout<<"Hourly worker selected." << endl;
cout<<"Enter the hourly salary: ";
cin>>hourlysalary;
cout<<endl;
    cout<<"Enter the total hours worked: " << endl;
cin>>totalhours;
if ( totalhours <= 40)
pay = hourlysalary * totalhours;
else
pay = (40.0 * hourlysalary) + (totalhours - 40) * (hourlysalary * 1.5);
cout<<endl;
    cout<<"Worker's pay is  " << pay;
    cout<<endl;

    }
break;
case 3:
{
cout<<"Commission worker selected." << endl;
cout<<"Enter gross weekly sales: ";
cin>>grossweklysales;
cout<<endl;
    pay = (grossweklysales *.57) + 250;
cout<<" Commission worker's pay is  " << pay;
    }
break;
case 4:
{
cout<<"Pieceworker selected." << endl;
    cout<<"Enter number of pieces: ";
cin>>pieces;
cout<<"Enter wage per piece: ";
cin>>piecewage;
pay = pieces * piecewage;
    cout<<"Pieceworker's pay is  " << pay;
    }
    break;
default:
cout<<"invalid number";
}
return 0;
}