Calculate your GPA in 1st Semester

01:30

Calculate your GPA in 1st Semester

C++ Code:

# include <iostream>

# include <iomanip>

using namespace std;

char subGrades[6][3];

void calGPA(char subGrades[][3])

double gradePoints = 0;

double gpa;

for (int i = 0; i < 6; i++)

if (i!=1)

if (strcmp(subGrades[i], "A") == 0)

gradePoints = gradePoints + (3.0*4.0);

else if (strcmp(subGrades[i], "A-") == 0)

gradePoints = gradePoints + (3.0*3.7);

else if (strcmp(subGrades[i], "B+") == 0)


Some Latest Projects of Android Applications being Developed

00:37

Some Latest Projects of Android Applications being Developed

1. Android-based Prescription Viewer Application This project is an electronic-based prescription format for the doctors. The usage of this application is very simple for the doctors as it allows them to enter patient’s name, drugs’ details, and dosage. Once the details like patient’s postal address and area code are fed into the application, it enables the patient to acquire medicines directly from any pharmacy store. This system also provides a facility to send instructions to the patients.


Binary Division

00:04

Binary Division

Problem:

Divide two Binary Numbers

Solution:

#include <iostream>

using namespace std;

long diff( long a,long b);

int main ()

long long int num1,num2,temp=0,quotient=0;

int i=0;

//taking input

do

cout<<"Enter Dividend in Binary =";

cin>>num1;

cout<<"Enter Divisor in Binary=";

cin>>num2;

if (num1<num2)


Binary Addition,Subtraction,Multiplication and Division

00:02

Binary Addition,Subtraction,Multiplication and Division

Problem:

Add, Subtract, Multiply and Division of two Binary Numbers 

Solution:

# include <iostream>

# include <cmath>

using namespace std;

int toDec(int binary)

int x = 0, a = 0, y = 0;

while (binary != 0)

x = binary % 10;

binary = binary / 10;

y = x*pow(2, a) + y;


Binary Addition

23:55

Binary Addition

Problem:

Add two Binary Numbers...

Solution:

# include <iostream>

using namespace std;

int toDec(int binary)

int x = 0, a = 0, y = 0;

while (binary != 0)

x = binary % 10;

binary = binary / 10;

y = x*pow(2, a) + y;

a++;

return y;

int main()

int x;

int y;

int a[10];

int b[10];

int result[20];

cout << "Please Enter 1st Binary Number : ";