Skip to main content

How to start learning Web-development

Start menu are not open and showing " Critical Error"

How we solve start menu showing critical error -

Hello friends 
here we tell you about a critical problem of window 10 where the windows 10 start menu are not opening and showing critical error on desktop and here you are getting the simple solution of this problem and the solution of the problem is reset of your device and this is the one and last solution of this issue to reset your device by going your setting and format it if you have any important document , file , Photos , videos e.t.c are in your PC or laptop so you please take backup of that document for safer side else if you choose reset only windows application not your personal file then your files are doesn't effected by reset or formatting data by going 

YOU HAVE TO GO ON SETTING THEN UPDATE AND SECURITY THEN RECOVERY AND THEN GO TO RESET THIS PC 
 

After you clicking on reset pc you can get option to delete all personal files , pictures , videos or option to delete / reset only windows setting so this is all up to you which option you have to choose according to your preference if you want to fully RESET your pc you can go with second option which delete your pc fully.


Second Method of this problem -

In youtube videos and blogs identify that the issue was automatically resolve by rebooting or restarting into Safe-Boot mode by using MSConfig then from within Safe Mode again launching MsConfig, deselecting Safeboot, and rebooting. in this problem you can't do anthing and window shows error like it was corrupt I didn't suggesting a system reboot as a ‘repair’ of a problem since this does not to repair a system configuration problem. repair a setting , but totally removes your ability to capture or view the current system state since the reboot clears active settings.
 
In the windows 10 the problem is apparently related to operating system version, and may have been repaired in the more recent Windows 10 releases. Microsoft have not closed the door on the problem, and is still asking for examples from anyone for who have face the issue on it  Yet the recent Microsoft help pages suggest that the problem is now rare rather than the commonly with which it was occurring shortly after Windows 10 release and they solved it very well if you see this error  you have to reset you pc .

and the solution of this error is to reset our pc or in simple word format out windows which fix this error and we have less issues so for formatting pc go to setting and reset search and then reset it .

Also you can search this error problem in youtube and you can get videos on that praticular topic but i face this error issue and this cant be solve by simple method so simply Reset your windows and there is no requirement of  fully format or reinstall of windows in your computer .

Please take backup of the hard disk in case you lost your data by mistake  but if you have any backup you can be headaches free from your side so thats all for this blog 

thankyou for reading this






Comments

Popular posts from this blog

C++ programming tutorial 5

 Call by value or reference - There are two type in function call by value or call by reference in it we pass the value in call by value we pass value and in call by reference we pass the reference of the value . Call by value in C++ Programming language  :- In call by value we pass the variable or say argument and then it used by function which we made so see the code given below  Syntax - #include <iostream > using namespace std; // making function  void fun_name(int a, int b) { ... } int main() { //calling function  fun_name(int n,int n1); return 0; } Code -  // function call by value in C++ programming #include <iostream> using namespace std; // call by value in function declaration void container(int a, int b); int main() {   int x,y;   cout<<"Enter the value of x :"<<endl;   cin>>x;   cout<<"Enter the value of y :"<<endl;   cin>>y;   // here we passing the value as argument   // and also calling the function  

Tutorial 10 text align , decoration etc explaining

 Text in Css - 1.Text color -     here we can set color in text for making them more enhancive or if we want required to change in color of text it work perfectly  syntax - color : red; OUTPUT - text color is change to red 2.Text alignment -     It is used for align the text according to the requirement and their situation we align text at center , right , left etc syntax - text-align:center; 3.Text decoration-     It is to decorate the text let if we want to underline in text then we use text decoration and make it on the line  syntax - text-decoration: underline; OUTPUT - text have an underline decoration 4.Text transformation -  In this we transform letters into uppercase , lowercase and capitalization means if the letter is small then it will convert into uppercase or visa-versa syntax - text-transform:(uppercase , lowercase , capitalize); 5.Text spacing - It decided the space between letter and words both how many gap are between an letters and word but syntax for both is diffe

Class and Object , function overloading Explanation in c++ language

 Classes in C language - It is a user defined data type data type which hold its own data members and member function which can be accessed and user by creating an instance of that class and we say that class is building block that leads to Object Oriented programming  Data member -  It is the data variable of the function  Member function - It are the function use to manipulate these function variable  For Example -  A car is an object the car has attribute such as weight , color and methods such as drive and brake Attribute and method are basically variable and function that belong to class syntax - class   class{        // The class    public :              // Access specifier      int   Num;         // Attribute (int variable)     string word;   // Attribute (string variable) }; Program - // class explaination #include <iostream> using   namespace  std; class   classname {      public:      string   mystring ;      void   printfun ()     {          cout   <<   "Gee