What resolution display are you using with your computer?

1 Answer

Answer :

1280×800 why do you ask?

Related questions

Description : LCD Display Resolution

Last Answer : When you go out shopping for a new LCD TV, one of the most important things worth checking is the resolution. What's the use of an LCD when your neighbor's 20-year-old CRT has better resolution and colors? ... 1680 1050 (or WSXGA+) 24 (widescreen): 1920 1200 (or WUXGA+) 30 (widescreen): 2560 1600

Description : LCD Display Modules

Last Answer : Replacing a damaged LCD monitor is no easy task. LCDs are expensive, and so are their parts or modules. Let's take a look at a notebook computer LCD, for example. If you go ... include matrix type, viewing angle, color support, brightness, contrast ratio, aspect ratio and input ports.

Last Answer : Liquid Crystal Display:-An LCD is a low-cost, low power device capable of displaying text and images. LCD's are extremely common in embedded systems since such system often does not have video monitors ... toggles the enables bit and acts as a delay so that the command can be processed and executed.

Description : Liquid Crystal Display (LCD)

Last Answer : Liquid Crystal Display (LCD) LCD stands for Liquid Crystal Display. It is a flat panel electronic display device which uses light modulating properties of liquid crystal. ... pixel and passive pixel display do not consist of switch at each pixel.

Description : Is an 800-lumen light bulb twice as bright as a 400-lumen one?

Last Answer : A lumen is a measure of brightness. In America, incandescent bulbs used to be rated by “candlepower. ” The LED bulbs are much brighter, and are measured by “lumens.” The wattage is not as big a variable, as the brightness. There are conversions for candlepower to lumens online.

Description : 65K Vs. AMOLED. Are they even in the same category?

Last Answer : According to Engadget it sports a TFT LCD, so it sounds like “65K” is indeed something else.

Description : Why does my work monitor buzz when there's a lot of black on the screen?

Last Answer : Try turning the brightness down on the monitor and see if it goes away.

Description : Is slight LCD burnin completely perminant?

Last Answer : i didn’t know lcd screens burned. . .

Description : Industrial LCD Displays

Last Answer : Today, while the Internet has managed to steal the attention of millions of people worldwide, many still tend to turn to the TV for some good, old-fashioned quality entertainment. LCDs are in, CRT ... Some of the best manufacturers of industrial LCDs today are Viewsonic, Sony, Dell, LG and Samsung.

Description : How to Clean an LCD Screen

Last Answer : How to Clean an LCD Screen Liquid crystal display screens, more known as LCD screens, is becoming more and more popular for its higher resolutions and space-saving dimensions. However, like all appliances ... touching the screen, regular cleaning of your LCD screen will keep it doing its job well.

Description : What is the reason for the incongruous ways to refer to display and video resolution?

Last Answer : It is about 4x the resolution

Description : Nvidia geforce display locked above resolution, can't start windows?

Last Answer : answer:Sound strange… It should have started in safemode even if there was a driver error, atlast mine did last week.. Is there any video outputs on the motherboard in addition to the Geforce card ? Maybe use thtat to uninstall and reinstall driver ?

Description : With the production of Apple's Retina Display will any higher resolution ever be needed?

Last Answer : answer:Maybe not. I don't know when it comes down to the hard facts. But I can say that every time I got a better resolution TV, I never thought it could get better . . . but it always ... the time something better comes out, we will be able to see the difference b/c of what has become standard.

Description : Hello, I bought a Huawei P Smart. After a few days of use, I am satisfied, but I would like to ask one question. At FullHD display resolution, the chrome viewer has significantly worse text ... I lose some recognizable better view of anything when I use only HD resolution? Thank you for answer.

Last Answer : Need Answer

Description : Which of the following does not affect the resolution of a video display image? A) Bandwidth B) Raster scan rage C) Vertical and horizontal lines of resolution D) Screen size

Last Answer : Answer : D

Description : Which of the following does not affect the resolution of a video display image? a. Bandwidth b. Raster scan rage c. Vertical and horizontal lines of resolution d. Screen size

Last Answer : Screen size

Description : Which of the following does not affect the resolution of a video display image? a. Bandwidth b. Raster scan rage c. Vertical and horizontal lines of resolution d. Screen size

Last Answer : d. Screen size

Description : Ms. Matthews is printing posters of her students' artwork. Since the images will be printed, they will need: A. a higher resolution for better print quality. B. a lower resolution for smaller ... a higher resolution to display on a monitor. D. a lower resolution in order to download faster.

Last Answer : A. a higher resolution for better print quality.

Last Answer : The resolution of a 12 bit D/A converter using a binary ladder is 0.02%.

Description : Write a C++ program to declare a structure employee with members as empid and empname. Accept and display data for one employee using structure variable. 

Last Answer : #include<iostream.h> #include<conio.h> struct employee  { int empid; char empname[10];  }; void main()  { employee e; clrscr(); cout<<"\nEnter employee id ... empid; cout<<"\nThe Employee Name is "<<e.empname; getch();  }

Description : Write a C++ program to declare a class addition with data members as x and y. Initialize values of x and y with constructor. Calculate addition and display it using function ‘display’.

Last Answer : #include<iostream.h> #include<conio.h> class addition { int x,y; public: addition(int,int); void display(); }; addition::addition (int x1,int y1) { x=x1; y=y1; } void addition: ... y); } void main() { addition a(3,4); a.display(); getch(); }

Description : If the value of a number (N) is entered through keyboard. Write a program using recursion to calculate and display factorial of number (N). 

Last Answer : #include<stdio.h> #include<conio.h> int factorial(int N); void main() { int N,fact; clrscr(); printf("Enter number:"); scanf("%d",&N); fact=factorial(N); printf( ... N) { if(N==1) return(1); else return(N*factorial(N-1)); }

Description : Implement a program to declare a class city with data members city name and state. Accept and display data for 1 object using pointer to object.

Last Answer : #include<iostream.h> #include<conio.h> class city { char city_name[20],state[20]; public: void accept() { cout<<"\nEnter city data:"; cout<<"\nName:"; ... ); ptr=&c; ptr->accept(); ptr->display(); getch(); }

Description : Write a program in C++ to accept a string from a user and display its reverse using pointer.

Last Answer : #include<iostream.h> #include<conio.h> #include<string.h> void main() { char str[20],*ptr; int l; clrscr(); cout<<"\n Enter a string : "; cin>>str; l=strlen(str); ... (l!=0) { ptr--; cout<<*ptr; l--; } getch(); }

Description : Write a program in C++ to declare a class measure having data members as add 1, add 2, add 3. Initialize the values of two data members using constructor and display their addition using function.

Last Answer : #include<iostream.h> #include<conio.h> class measure { public: int add1,add2,add3; measure(int a,int b) { add1=a; add2=b; } void cal() { add3=add1+add2; } void display() ... ;>a>>b; measure m1(a, b); m1.cal(); m1.display(); getch(); }

Description : Write a shell script to accept length and breadth of rectangle from user. Calculate and display area, perimeter, of entered values using choice entered by user.

Last Answer : #!/bin/bash # GNU bash, version 4.3.46 echo "Enter Length of Rectangle: " read length echo "Enter Breadth of Rectangle: " read breadth echo "Which operation you want to perform? 1: area 2: perimeter" read ... ) res=` echo 2 \* $length \* $breadth | bc` ;; esac echo "Result is $res" exit 0

Description : Write a program to declare a class ‘book’ containing data members as ‘title’, ‘author-name’, ‘publication’, ‘price’. Accept and display the information for one object using pointer to that object.

Last Answer : #include<iostream.h> #include<conio.h> class book { char author_name[20]; char title[20]; char publication[20]; float price; public: void Accept(); void Display(); }; void ... title \t author_name \t publication \t price\n ; p-> Display(); getch(); }

Description : Why is it, that the larger the computer monitor, the higher its native resolution?

Last Answer : answer:This bugs me too. Short answer is that higher resolution screens are really expensive. This is a 2560 1440 screen from Dell for $980 (same directly from Dell is $1099). And here is the crazy shit, ... inch HP ones at 1920X1080. I can see them fine and to bump things up it is crazy expensive.

Description : Is there a way to search my computer for all photos with a certain resolution?

Last Answer : answer:Windows? Mac? Not exactly searching, but if you are using Windows 7 and in a folder containing a ton of photos, right-click in the column headers (in detail view mode) and add “dimension”. Sort by this column and you can just copy the photos that are of the dimension you are looking for.

Description : Is there a way I can add a resolution setting on my computer?

Last Answer : answer:It is possible yes, I have only ever done it once and it was an absolute nightmare. here is a tutorial for forcing a custom resolution in windows, but even this tutorial says “Do this at your own risk!”. Be careful, you could end up getting more than you bargain for.

Description : Can the resolution of the computer screen be changed in the settings?

Last Answer : Yes, the resolution of the computer screen can be changed in the settings. Depending on what type of computer you have you should go to the start option and click on the control panel. Once you are in the control panel select display and the display settings.

Description : Monitors with different resolutions can be attached to a computer. The computer can also render a video at various resolutions. Assuming that the videos are played at 1:1 resolution, which of the ... with higher resolution will be visible in a bigger size than a video with a lower resolution. 

Last Answer : A D