How can I write my own program to display my computer's information?

1 Answer

Answer :

I’m thinking of Belarc Advisor link . Is that what you want?

Related questions

Description : Write a program to implement the concept of virtual base class for following figure. Accept and display information of one employee with his name, code, basic pay, experience and gross salary with the object of employee class.

Last Answer : #include<iostream.h> #include<conio.h> class Master  {  char name[10],code[3];  public:  void acceptM() { cout<<"\nEnter name and code "; cin>>name>>code; ... .displayM(); e.displayA(); e.displayD(); e.displayE(); getch();  }

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 : I need to display my computer's HDMI output in 4 diferent screens?

Last Answer : answer:What you might want to look for is an HDMI splitter. They aren't cheap. http://www.google.com/products/catalog?client=safari&rls=en&q=hdmi+splitter&oe=UTF-8&um=1&ie=UTF-8&cid ... =product_catalog_result&ct=image&resnum=7&ved=0CDkQ8gIwBg# Here is one that I think is what you are looking for.

Description : How Write javascript program to display multiplication table of 2 without accepting input from user?

Last Answer : Use a counted for loop. On each iteration, multiply the controlvariable by 2 and print the result.

Description : Write a C++ program to declare a class student with members as roll no, name and department. Declare a parameterized constructor with default value for department as ‘CO’ to initialize members of object. Initialize and display data for two students.

Last Answer : write a C plus plus program to declare a class which accept and display student information such as roll number division and percentage use get data and put data with required parameters

Description : Accept data for five students and display it. Write a C++ program to displya sum of array elements of array size n. 

Last Answer : #include<iostream.h> #include<conio.h> void main() { int arr[20],i,n,sum=0; clrscr(); cout<<"\nEnter size of an array:"; cin>>n; cout<<"\nEnter ... ; } cout<<"\nSum of array elements is:"<<sum; getch(); }

Description : Write a C++ program to declare a class COLLEGE with members as college code. Derive a new class as STUDENT with members as studid. Accept and display details of student along with college for one object of student.

Last Answer : #include<iostream.h> #include<conio.h> class COLLEGE { protected: int collegecode; }; class STUDENT:public COLLEGE { int studid; public: void accept() { cout<<"Enter college ... STUDENT s; clrscr(); s.accept(); s.display(); getch(); }

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 ‘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 C++ program to write ‘Welcome to poly’ in a file. Then read the data from file and display it on screen.

Last Answer : #include #include #include void main()  { char str[25] = "Welcome to poly",ch; clrscr(); ofstream fout; fout.open("output.txt"); fout

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 : Write a C++ program to declare a class ‘circle’ with data members as radius and area. Declare a function getdata to accept radius and putdata to calculate and display area of circle.

Last Answer : #include<iostream.h> #include<conio.h> class circle { float radius,area; public: void getdata() { cout<<"Enter radius:"; cin>>radius; } void putdata() { area=3 ... { circle c; clrscr(); c.getdata(); c.putdata(); getch(); }

Description : Write a C++ program to declare a class ‘College’ with data members as name and college code. Derive a new class ‘student’ from the class college with data members as sname and roll no. Accept and display details of one student with college data.

Last Answer : #include<iostream.h> #include<conio.h> class college { char name[10]; int collegecode; public: void getcollege() { cout<<"Enter college name:"; cin>>name; cout< ... (); s.getstudent(); s.putcollege(); s.putstudent(); getch(); }

Description : Write a C++ program to accept array of five elements, find and display smallest number from an array.

Last Answer : #include<iostream.h> #include<conio.h> void main() { int a[5],smallest,i; clrscr(); cout<<" Enter array elements:"; for(i=0;i<5;i++) cin>>a[i] ... } } cout<<endl<<"Smallest number="<<smallest; 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 : 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 : Write a program to Print values of variables and their addresses. Note : 1) Variables can be of any data type. 2)Use of & or pointer to display address shall be considered. 

Last Answer : #include #include void main() { int a,b; clrscr(); a=5; b=10; printf("\n Value of a=%d",a); printf("\n Address of a=%u",&a); printf("\n Value of b=%d",b); printf("\n Address of b=%u",&b); getch(); }

Description : Write a program to accept marks of four subjects as input from user. Calculate and display total and percentage marks of student. 

Last Answer : #include<stdio.h> #include<conio.h> void main() { float marks[4]; float total=0.0, perc=0.0; int i; clrscr(); for(i=1;i<=4;i++) { printf("Enter marks of ... is :%f",total); perc=total/4; printf("Percentage is %f",perc); getch(); }

Description : Write a program to create two threads. One thread will display the numbers from 1 to 50 (ascending order) and other thread will display numbers from 50 to 1 (descending order).

Last Answer : class Ascending extends Thread {  public void run() {  for(int i=1; i<=15;i++) {  System.out.println("Ascending Thread : " + i);  } } } class Descending extends Thread { ... a=new Ascending(); a.start(); Descending d=new Descending(); d.start(); } }

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 implement single inheritance. Declare base class employee with Emp_No. and Emp_Name. Declare derived class fitness with height and weight. Accept and display data for one employee.

Last Answer : #include<iostream.h> #include<conio.h> class employee { protected: int emp_no; char emp_name[10]; public: void gete() { cout<< enter employee details ; cin>>emp_no; cin>> ... f.gete(); f.pute(); f.getft(); f.putft(); 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 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 „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 : Do many program shortcuts on home screen slow down computers?

Last Answer : No. This is not true. There is no connection between the number of shortcuts, other files or folders you have on your desktop (or anywhere) and the performance of a pc. These files are stored on you hard drive – not in memory.

Description : Can I transfer videos to different computers via CD-R or DVD+RW without using a ripping program on the second computer?

Last Answer : Yes, of course you can. Don’t format the DVD as a video disc. Just keep it a data disc, and transfer the movie file to it. Just like you would transfer pictures or Excel spreadsheets.

Description : What are some ideas and tips for someone learning how to program computers?

Last Answer : I never became a great adept at BASIC, but after working extensively with another language I knew how to understand the logic. Here's what I did to gain a lot of familiarity and skill: I took a ... well as the original author did, and so I was in effect borrowing the brain of an experienced coder.

Description : I have a Toshiba HDTV and when I display a television program without making it wide, there are gray bars on the side, can I make them black?

Last Answer : “Grey” is a relative definition. The grey you’re referring to could be your TV’s black depending on the contrast ratio.

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 : 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 : Debugger is a program that (A) allows to examine and modify the contents of registers (B) does not allow execution of a segment of program (C) allows to set breakpoints, execute a segment of program and display contents of register (D) All of the above

Last Answer : (C) allows to set breakpoints, execute a segment of program and display contents of register

Description : Is there a program that would let me make my own music?

Last Answer : My niece uses this program to record her original compositions. She plays guitar and sings. http://www.apple.com/ilife/garageband/

Description : Is there a ringtone maker program or website that will let me use my own mp3's and snd them via text message to my phone(and it must be free)???

Last Answer : answer:mobile17.com try searching google for more sites. . .

Description : Is it possible to write SMS on an iPhone 3GS via a Mac computer's keyboard?

Last Answer : from what I remember, you can hook up some phones to apple's address book, and use that to send sms'es from your computer. The feature wasn't compatible with my sony ericsson but i think it should work ... know how it goes meanwhile i'll try out this bluephone elite with my SE .is it a free app??

Description : Do you display in your home portraits of anyone other than your own family members?

Last Answer : answer:No. Family members are in the kitchen on the wall. Almost all the rest of my art is abstract or modern. No pictures of the Pope, Mickey Mantle, or Jim Brown.

Description : Brit Jellies: Will you be going to an organised firework display tonight, or hold your own in the garden?

Last Answer : If you answer this later, after your firework experience, then just tell us how you got on.

Description : Coding in C++: How do you display a random array?

Last Answer : answer:Are you having trouble generating the array or just displaying it? I’m curious about the choice of C++ too. There are other languages where this would be much simpler.

Description : LCD display broken? Anyone recognize the symptoms?

Last Answer : This happened to my boyfriends laptop, exactly the same. It was the light behind it that has gone, it’s a bit fiddly to mend yourself but it’s just the light. I’m not sure the exact name for it. I’ll ask him when he gets home and get back to you, unless you know I mean.

Description : Is there a nes emulator that supports screen rotation? Or any other possible way to rotate the monitor's display?

Last Answer : SNES9x might handle screen rotation.

Description : Why does my Kubuntu keeps resetting display properties when I reboot?

Last Answer : What graphics card is in that system? I have one with an Nvidia card that does similar - I had to put a script in ~/.kde/Autorun to run something like: nvidia-settings -config=~/.nvidia-settings-rc -load- ... helpful, please mark it as a Great Answer - I am trying for a couple of the awards ;-) )

Description : I just picked up a Dell E198WFP display to use with my MacBook Pro. Any colour calibration tips?

Last Answer : I can’t find it, but if you search lifehacker you’ll find the article that they had maybe a month ago about color calibration. They had some great program (windows and mac compatible) to calibrate all the screens perfectly. Search around and hopefully you’ll find it!

Description : How do I get my display screen back to its original size?

Last Answer : You probably have to adjust the hardware settings on your monitor. Usually there are buttons. Just look for the screen width settings. or when in doubt, BUTTON MASH!!

Description : Is it possible to connect the new Apple LED Cinema Display to a PC?

Last Answer : I would assume so, but i wouldn’t want to. Being made especially for an apple computer it come with an iSight and mic plus 3 USB ports. The likelihood of these working on a PC is slim to none unfortunately. Just get a nice looking screen for much cheaper and use that.

Description : Why won't my computer display Chinese symbols?

Last Answer : You haven’t got the Chinese language files installed. If youre using windows you can install them from the language part of the control panel.

Description : PC users... How can I change the display settings inside a window where it will tell me file size and other stats?

Last Answer : I’m not on Vista, but on XP you are able use the View Menu to see details, rather than Icons, Thumbnails, Tiles or List. [edit] Oh, found this tutorial Try the Alt Key

Description : Plasma won't work as a display for my laptop...

Last Answer : Sounds like a video driver issue. What kind of laptop is it? What OS are you running? Check your laptop manufacturer’s website and make sure your drivers are up to date, see if that helps at all.

Description : How do you display the Mac OS X welcome screen on next boot?

Last Answer : answer:Just so you know.. There is a way to do this. I read about it a few years ago. I just don’t remember how to do it. I’m not getting much with Google but it can be done. I will keep looking.. Now I’m curious.

Description : What are the spots developing on my Macbook Pro display?

Last Answer : Are they on the surface/finish or in the pixels themselves? If it was a finish issue, I’d think it could be friction marks from contact with the keyboard (when closed). Otherwise, if they are in the actual display (like distortion of the pixels or bubbling)...?