Uncategorized

Write a c++ program to implement multilevel inheritance

#include<iostream> using namespace std;  class student  {   protected:   int rollno;   public:   void get_number(int n);   void show_number (); };  void student::get_number(int n)  {   rollno=n;  }  void student::show_number()  {         cout<<“\n the roll number \n”<<rollno;  } class test:public student { protected:           float sub1;         …

Write a c++ program to implement multilevel inheritance Read More »

What is Web Hosting?

Web hosting is a web service that allows you to publish your website or web application on the web. once you join up for a hosting service, you basically rent some space on a server on which you’ll store all the files and data necessary for your website to figure properly. A server could be …

What is Web Hosting? Read More »

PHPMyAdmin – count(): Parameter must be an array or an object that implements Countable

Easiest Method: Just run this below command line in terminal and come back to PhpMyAdmin. Now it works fine 🙂 sudo sed -i “s/|s*((count($analyzed_sql_results[‘select_expr’])/| (1)/g” /usr/share/phpmyadmin/libraries/sql.lib.php Manual Method: Open sql.lib.php file nano /usr/share/phpmyadmin/libraries/sql.lib.php Find for count($analyzed_sql_results[‘select_expr’] code on file. You can get this at line ~613. You can see this below wrong code || (count($analyzed_sql_results[‘select_expr’] == 1) Just replace …

PHPMyAdmin – count(): Parameter must be an array or an object that implements Countable Read More »

The Content Area Was Not Found in Your Page

if it is because of ElementPress or diff elementor plugin then disable single and Archive  page make it inactive Just go to page or post and click on quick edit and then choose elementor full width then click on update and after this edit the page

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 »