Skip to main content

Features to Consider Before Purchasing a Laptop



Before purchasing a laptop, buyers need to do careful research and find sources to help them decide which model is best for them. However, with so many sources, it is confusing for many people, which is why buyers should consider a few factors when making a decision. These factors are weight, screen size, form factor, processor, RAM, hard drive, operating system, and additional ports and hardware.

1. Weight

Most people purchase laptops for portability. Road warriors and other people who travel a lot for work or even pleasure want laptops that are light and easy to carry around. This is why weight is an important consideration. For those who want something very light, ultrabooks and netbooks are a good option, although they may not offer more advanced users the features they need. For example, these types of laptops do not have large hard drives or DVD players or may only operate online, like the Google Chromebook. Samsung's Chrome book, for example, is only 2.4 pounds, but has no optical drive.
Light laptops, between 3 to 4 pounds, have more features than netbooks, but are not as light. Apple's 13-inch Macbook Pro weighs in at 4.5 pounds, but features an 8-speed Superdrive, which allows the user to read and write DVDs. For those who want a desktop replacement, there are powerful laptops that have almost the same features as a regular PC. The Toshiba Qosmio line, for example, features a 17-inch screen, full HD resolution, and 16 GB of RAM.

2. Screen Size

Screen real estate is another factor that affects a computer's weight and size. Small ultraportables usually have a screen size of 13 inches or less, like Sony's Vaio Series Pro or Apple's Macbook Air series. Laptops with small screens can weigh as little as 2 pounds, definitely a big advantage for those who need to bring their laptops everywhere. Of course, for those who do not mind lugging around a heavy notebook and need the large screen, there are options. Graphic designers want a laptop with a big screen to show off work to clients, and gamers want a large screen so they can see all the action. Big-screen laptops, like the Samsung Series 7, have screens measuring over 17 inches.

3. Form Factor

Aside from just weight and screen size, buyers should also consider the laptop's form factor. Buyers have to think about how and where they plan to use their laptops. People who go out in the field should look at rugged laptops, like the Dell Latitude XFR ATG Rugged. These laptops use military-grade materials and can withstand any type of condition, from below-zero temperatures to sand storms.

4. Processor

The processor serves as the laptop's main engine. Except in the case of some desktop replacement units, laptop processors have lower capacity and power, because this is the part that consumes a lot of battery life. Aside from having to consume less energy, these have to run cooler to prevent overheating, which makes the use of heatsinks and fans necessary. Often, a small computer means a slower processor, because adding cooling devices take up a lot of space.

5. RAM

RAM, or random access memory, is a type of temporary storage a computer uses to perform multiple tasks at the same time. The more RAM a laptop has, the more tasks it can perform at the same time without freezing. The great thing about laptop RAM is that most users can upgrade the RAM themselves by purchasing from the manufacturer or third-party sources. What is important when buying a laptop is to check the maximum capacity. Motherboards have a limited number of RAM stick slots, thus buyers should consider this before making a purchase.

6. Hard Drive

When it comes to hard drives, buyers need to check both capacity and speed. Most people want the largest hard drive possible to store massive amounts of photos, videos, and songs on their computers. However, capacity is not the only thing that is important when buying hard drives. Speed is another consideration, as users want to make sure they can record and access their data quickly. Manufacturers indicate hard drive speed in RPMs, or revolutions per minute, which refers to how fast the drive's spindle rotates. Basically, the more RPMs, the faster the drive.

7. Operating System

While many people may debate which operating system is better, each one has its own weaknesses and strengths. More people use Windows environments, especially in corporate settings, and this OS supports more types of hardware and software. The Mac OS tends to be more stable and reliable and can run Windows on a virtual platform. However, buyers must also buy the more expensive Apple hardware to run this OS. Finally, many people also prefer Linux because it is free and easy to install. They also have access to free software developed by other users. Whichever one buyers choose, they should ensure they get the latest versions, as most new software cannot run on older operating systems.

8. Additional Hardware and Ports

Ports and additional hardware add weight and girth to laptops, so manufacturers must make decisions which ports and hardware to include and which to exclude. Most ultrabooks and netbooks do away with optical drives, like Apple's Macbook Air line, but they do offer users who really need to use CDs and DVDs a separate Superdrive. USB ports are essential for anyone using a computer, but buyers should consider how many peripherals they need to connect at the same time, plus the speed of the USB port. For those who absolutely need to connect their laptops to another display or projector, a VGA, DVI, or even HDMI port is necessary.

Comments

Popular posts from this blog

Spring Security with JWT for REST API

Spring is considered a trusted framework in the Java ecosystem and is widely used. It’s no longer valid to refer to Spring as a framework, as it’s more of an umbrella term that covers various frameworks. One of these frameworks is Spring Security , which is a powerful and customizable authentication and authorization framework. It is considered the de facto standard for securing Spring-based applications. Despite its popularity, I must admit that when it comes to single-page applications , it’s not simple and straightforward to configure. I suspect the reason is that it started more as an MVC application -oriented framework, where webpage rendering happens on the server-side and communication is session-based. If the back end is based on Java and Spring, it makes sense to use Spring Security for authentication/authorization and configure it for stateless communication. While there are a lot of articles explaining how this is done, for me, it was still frustrating to set it up for the f...

Java Functional Interfaces

  The term   Java functional interface   was introduced in Java 8. A   functional interface   in Java is an interface that contains only a single abstract (unimplemented) method. A functional interface can contain default and static methods which do have an implementation, in addition to the single unimplemented method. Here is a Java functional interface example: public interface MyFunctionalInterface { public void execute(); } The above counts as a functional interface in Java because it only contains a single method, and that method has no implementation. Normally a Java interface does not contain implementations of the methods it declares, but it can contain implementations in default methods, or in static methods. Below is another example of a Java functional interface, with implementations of some of the methods: public interface MyFunctionalInterface2{ public void execute(); public default void print(String text) { System.out.println(t...

Java Logger

In Java, logging is an important feature that helps developers to trace out the errors. Java is the programming language that comes with the logging approach. It provides a Logging API that was introduced in Java 1.4 version. It provides the ability to capture the log file. In this section, we are going to deep dive into the Java Logger API. Also, we will cover logging level, components, Logging handlers or appenders, logging formatters or layouts, Java Logger class, What is logging in Java? In Java, Logging is an API that provides the ability to trace out the errors of the applications. When an application generates the logging call, the Logger records the event in the LogRecord. After that, it sends to the corresponding handlers or appenders. Before sending it to the console or file, the appenders format that log record by using the formatter or layouts. Need for Logging It provides the complete tracing information of the application. It records the critical failure if any occur in ...