What is the problem regarding in my computer monitor having a line display on monitor?

1 Answer

Answer :

Your computer may have contracted a virus. This happens often with Computer Monitors. You may want to seek a technical assistant. Or contact the brand-named provider.

Related questions

Description : What is clickjacking ? (1) Malicious technique of tricking Web usear into revealing confidential information (2) A device that sends and receives data in a bit second (3) A form of Computer Engineering (4) A digital process that is used to display an image on monitor

Last Answer : Malicious technique of tricking Web usear into revealing confidential information

Description : Based on what he has heard regarding the profitability of such items, Fred Goldstein is considering adding a fresh shellfish case in his grocery store. Fred knows very little about this product or ... )Limited -line B)Specialty -line C)General merchandise D)Rack jobber E)Limited -service merchant

Last Answer : B)Specialty -line C)General merchandise

Description : How can I use my laptop display as a monitor for my Xbox 360?

Last Answer : I can't think of any way to make this work.

Description : The display size of a monitor is measured _________ A. diagonally. B. horizontally. C. vertically. D. None of the Above

Last Answer : A. diagonally.

Description : The ______ may also be called the screen or monitor. A. Scanner B. Display C. Hard Disk D. None of the Above

Last Answer : B. Display

Description : The ---- is the term used to describe the window that is currently being used. 1) Web Window 2) Display Area 3) Active Window 4) Monitor

Last Answer : 3) Active Window

Description : The ---- is the term used to describe the window that is currently being used. 1 Web Window 2 Display Area 3 Active Window 4 Monitor

Last Answer : 3 Active Window

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.

Description : Each of the following regarding plasma cells is true EXCEPT: C A. The nuclei display prominent peripheral chromatin B. They are derived from B lymphocytes C. They contain prominent absorptive vacuoles D. None of these

Last Answer : They contain prominent absorptive vacuoles

Description : Which one of the following falls into the category of offer? (a) Newspaper advertisement regarding sale. (b) Display of goods by a shopkeeper in his window with prices marked on them (c) An advertisement for a concert. (d) Announcement of reward to the public.

Last Answer : (d) Announcement of reward to the public.

Description : Question regarding problem I am having with facebook...

Last Answer : Wait. So. He blocked you, and you’re trying to add him? If that’s the case, then he has to unblock you.

Description : The unit of hardware, which an operator uses to monitor computer processing, is the 1) Card Reader 2) CPU 3) Line Printer 4) Console

Last Answer : 4) Console

Description : What are the four things needed to connect to the Internet? 1) Telephone line, modem, computer, and an ISP 2) Modem, computer, PDA and ISP 3) Telephone line, PDA, modem and computer 4) monitor, keyboard, mouse, modem

Last Answer : 1) Telephone line, modem, computer, and an ISP

Description : What are the four things needed to connect to the Internet? 1 Telephone line, modem, computer, and an ISP 2 Modem, computer, PDA and ISP 3 Telephone line, PDA, modem and computer 4 monitor, keyboard, mouse, modem

Last Answer : 1 Telephone line, modem, computer, and an ISP

Description : Is playing video games legal ? What are the provisions of Sharia regarding playing video games on computer ? If playing games is not a problem of obligatory and Sunnah worship while passing the time, can the game be played for some time ?

Last Answer : Sports and recreational matters have been carefully evaluated in Islamic law. Islam does not prevent games and entertainment if there is no risk of bad things in the game and entertainment . For this reason, ... Allaah be upon him) said : من حُسنِ إسلام المرء تركُهُ ما لا يعنيه (Jame Tirmizi 2239)

Description : What is System Analysis? A) The design of the screen the user will see and use to enter or display data B) System analysis defines the format and type of data the program will use C) System Analysis involves creating formal model of the problem to be solved D) None of the above

Last Answer : Answer : C

Description : Flat panel displays are designed to reduce what problem of a crt display?

Last Answer : Reduce the depth of the crt display caused by the length of the tube.

Description : What would you say is the problem with the kids who bullied an older bus monitor?

Last Answer : I think a lot if it has to do with the fact that there are no parents at home to raise our kids anymore. It now takes two incomes to raise a family instead of one. The big corporations took ... of life's tough decisions. (thank goodness they turned into law abiding citizens. It was a crap shoot. )

Description : Can you help me with my monitor problem (black with short flashes of the image)?

Last Answer : From what little I know about monitors yours (like my previous one) is about to die. Those flashes definitely warning signs.

Description : Write a C++ program to declare a class ‘Account’ with data members as accno, name and bal. Accept data for eight accounts and display details of accounts having balance less than 10,000.

Last Answer : #include<iostream.h> #include<conio.h> class Account  { long int accno, bal; char name[10]; public: void getdata() { cout<<"\nEnter account number, balance and name "; cin>> ... 0;i<8;i++)  { a[i].putdata();  } getch();  }

Description : Write a program to declare structure employee having data member name, age, street and city. Accept data for two employees and display it.

Last Answer : #include<stdio.h> #include<conio.h> struct employee { char name[10],street[10],city[10]; int age; }; void main() { int i; struct employee e[2]; clrscr(); for(i=0;i<2 ... =%s",e[i].street); printf("\n City=%s",e[i].city); } getch(); }

Description : Define a class circle having data members pi and radius. Initialize and display values of data members also calculate area of circle and display it.

Last Answer : class abc {  float pi,radius; abc(float p, float r) { pi=p; radius=r; } void area() { float ar=pi*radius*radius; System.out.println("Area="+ar); } void display() { System.out.println("Pi="+pi ... void main(String args[]) { abc a=new abc(3.14f,5.0f); a.display(); a.area(); } }

Description : Write a program to declare class student having data members name and percentage. Write constructor to initialize these data members. Accept and display this data for one object.

Last Answer : #include<iostream.h> #include<conio.h> #include<string.h> class student { char name[20]; float per; public: student(char n[],float p) { strcpy(name,n); per=p; } ... { student S("Sachin",78.00); clrscr(); S.putdata(); getch(); }

Description : Write a program to declare class having data member as hrs, mins, secs. Write constructor to assign values and destructor to destroy values. Accept & display data for one object.

Last Answer : #include<iostream.h> #include<conio.h> class time { private: int hrs, mins,sec; public: time(int h,int m,int s) { hrs=h; mins=m; sec=s; } ~time() { cout<< hours ... } }; void main() { time t(2,43,56); t.display(); getch(); }

Description : Write a program to declare a class 'staff' having data members as name and department. Accept this data for 10 staffs and display names of staff that are in 'CO' department.

Last Answer : #include<iostream.h> #include<conio.h> #include<string.h> class staff {  char name[10], dept[10];  public:  void accept() { cout<<"Enter Name and Department:\t"; cin>> ... i=0;i<=10;i++) { s[i].display(); } getch(); }

Description : Write a program in C++ to declare a class „Journal‟ having data members as journal_nm, price, ISSN_No. Accept this data for two objects and display the name of the journal having greater price.

Last Answer : #include<iostream.h> #include<conio.h> class Journal { char journal_nm[20]; int ISSN_No; float price; public: void accept(); void display(Journal); }; void Journal::accept() { ... clrscr(); j1.accept(); j2.accept(); j1.display(j2); 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 : Is it possible to use my laptop for a extra PC monitor without having to disassemble anything?

Last Answer : no

Description : What are the advantages to having a touch screen monitor?

Last Answer : Touch screen monitors are advantageous because they eliminate the need for peripheral items such as a keyboard or mouse to utilize a computer interface. A touch screen monitor will save space on your desk. You may also find it easier to set-up this type of computer monitor.

Description : Write the HTML code to display horizontal line of red color. -Technology

Last Answer :

Description : Which most popular input device is used today for interactive processing and for the one line entry of data for batch processing? a. Mouse b. Magnetic disk c. Visual display terminal d. Card punch

Last Answer : Mouse

Description : Which most popular input device is used today for interactive processing and for the one line entry of data for batch processing? a. Mouse b. Magnetic disk c. Visual display terminal d. Card punch

Last Answer : a. Mouse

Description : Which most popular input device is used today for interactive processing and for the one line entry of data for batch processing? a. Mouse b. Magnetic disk c. Visual display terminal d. Card punch

Last Answer : a. Mouse

Description : Which of the following UN Peace Keeping Operations has been mandated to monitor the LOG (former Cease Fire Line) in Kashmir? A. UNMOGIP B. MONUC C. UNIFIL D. MINURSO

Last Answer : ANSWER: A

Description : Which of the following UN Peace Keeping Operations has been mandated to monitor the LOG (former Cease Fire Line) in Kashmir? A. UNMOGIP B. MONUC C. UNIFIL D. MINURSO

Last Answer : ANSWER: A

Description : Which of the following UN Peace Keeping Operations has been mandated to monitor the LOG (former Cease Fire Line) in Kashmir? A. UNMOGIP B. MONUC C. UNIFIL D. MINURSO

Last Answer : ANSWER: A

Description : Line access and avoidance of collision are the main functions of: (A) the CPU (B) the monitor (C) network protocols (D) wide area networks 

Last Answer : (C) network protocols

Description : So, regarding this government fixing the economic problem?

Last Answer : Could you please link to where that quote came from? As for the quote, without reading it in the context it was written, yes, at first it sounds scary. However, given the way things are these days with ... I shouldn't have sold my house and the buyer now has to give back the house, etc, etc.

Description : I am in insolvency and I need to appeal to the Supreme Court how to write an appeal what to say there if I do not agree that I am insolvent because I do not have a gift contract and demonstrable income for the first half of 2015

Last Answer : In this case, I would personally seek the help of a lawyer.

Description : Which of the following patient behaviors, if observed by the nurse, would indicate that the cardiac patient's level of anxiety has decreased? a) Answers questions regarding status with ... in support groups. Participation in support groups indicates some degree of comfort with prognosis.

Last Answer : a) Answers questions regarding status with no problem. Generally, when anxiety begins to increase, the patient will be less likely to want to discuss prognosis.

Description : Mama Pasta's marketing manager believes that the firm's recent 40% increase in consumer sales is due to changes in costumer perceptions regarding the nutritional value of pasta. Which ... been completed? A)data interpretation B)data analysis C)hypothesis development D)problem expansion

Last Answer : C)hypothesis development

Description : A single-phase induction motor fails to start. The rotor is spun rapidly with the line switch closed. Having started by this method it is noted that the motor fluctuates between a very slow ... lies in the ______ A. starting winding B. centrifugal mechanism C. centrifugal switch D. running winding

Last Answer : Answer: D