c++ program to print Average of a batsman using classes and objects.

/*write a c++ program to define a class batsman with the following information private variable bcode 4 digit,bname 20 char,innings,notout,bat avg(float) which calculated(runs/(innings-notout))byfunction calc_avg public member : readdata() to accept values of bcode,bname,innings,notout,runs and invoke calc_avg to calculate the avg. display() to display */ #include<iostream> using namespace std; class Batsman{ int bcode,innings,notout,runs; float bat_avg; char …

c++ program to print Average of a batsman using classes and objects. Read More »

java program for Area and perimeter of rectangle and square using constructor overloading

/*Area and perimeter of rectangle and square using constructor overloading. Constructor overloading means there will be two or more constructor and the name of all constructors will be same only number of arguments will be different. when you pass arguments value in the constructor it matches the number of arguments value with the defined constructor …

java program for Area and perimeter of rectangle and square using constructor overloading Read More »

No free MBR partition error

you can use any partion wizard manager like easeus free partion wizard manager also. No free MBR slot” may emerge in the following two scenarios:  Scenario one: There are four primary partitions on the disk as the screenshot shows below.  To resolve this problem, we need to convert one of the primary partitions adjacent to …

No free MBR partition error Read More »