Skip to main content

How to start learning Web-development

Gaming laptop is suitable for programming language

Best gaming laptop for coding -



Gaming laptop is can be usable as programming or coding because it comes with most of feature which make a laptop more powerful and a complete its work in less time - that are very efficient and this is a important thing for programming laptop and many laptop which are fast but it not valuable because it was getting old in term of graphic card and RAM and more things after some time if you buy a gaming PC it will be most valuable because we can upgrade it by installing more RAM , new generation graphic card etc any time if we have any requirement for upgrading our gaming PC so it is more efficient then gaming laptop you should  go with gaming pc by building it your own so go with gaming PC and make it efficient but there is a single issue that is it is a non portable machine which we not use as anywhere if you do not have requirement of portable machine then you can go with it .

But if you want a portable machine so you dont have any choice go with Gaming Laptop because the specification of the gaming laptop is more better than a simple specs laptop and they are especially made for gaming or there specs are high-end so they can take any IDE load  and there also other option are is  mac-book which is a apple company product and one of the highest trusted brand laptop which also a good machine for coding and maximum programmer are use mac as there coding machine because it was very reliable it is not for gaming so if you want to do both things gaming or coding go for gaming laptop but it is very expansive then a gaming laptop so this depend on you .

Note - For more information about technology go to your YOUTUBE CHANNEL Link given below 

CHANNEL LINK - https://www.youtube.com/channel/UCw-70o0Ec3_wIBHl-gI9ohg

so you have to think on it gaming laptop have many of the feature of a powerful laptop which we have required for coding if you are thinking for searching about them we provide you some of them so please see the blog and share it 


Which is best for programming Gaming PC or Laptop - 

For programming we have to go with our requirement which laptop is full feel them and for that you have to search about it and if you go with gaming PC it was very beneficial for programmer because you can build up your own gaming pc and you can upgrade it when you want so it is good point of a computer and it never be slow because when we want we can upgrade it according to our choose and our budget so most of the people go with that so don't think go for Gaming PC and given below we give you option for it and there is always your choice and requirement or also budget depend which device is beneficial for us .

Comments

Popular posts from this blog

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

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  

Code of HTML and CSS how we take color , border , etc

  code of HTML and CSS - 1. How we take change color in css (color and border both property) code - <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>color in css</title> <style> .color1{ background-color: green; } .color2{ color: yellow; } .color3{ border: 2px solid red; } </style> </head> <body> <!-- lets take paragarph --> <p class="color1"> In display property if we apply inline-block property on it we can be set their width and height and element was set next to a element in line it not take extra space so in easy word it is work as both block element who's width and height can be changed </p> <p class="color2"> In display property if we apply inline-blo