#define me "The first Naveen Venkat"
- PC Specs
- Compaq 510 notebook
23 Posted Topics
Re: **Assuming that you mean the latest public models** (as an engineer would buy today) **i7 4770K wins against FX8350. However I am not an anti-AMD guy or pro-intel (I like amd more), I just want to shed some light on the facts and from there you can continue your research. … | |
Re: Do you have any virus or stuff like that? Remove them if you have. Next, run disk defragmenter. It's in system tools in accessories. Analyze your drives and defragment them. That should increase your speed. A good computer user would generally run defragmenter under windows once a month. | |
I'm trying to make a simple linked list example. I am using the dynamic method of memory allocation. #include <iostream.h> struct node { int INSTRUCTION; node * next; node() { next = NULL; INSTRUCTION = 0; } void setnext(node *P) { next = P; } void DELETE() { delete this; … | |
I've got a problem understanding inheritance. #include <iostream.h> class A { public: int x; }; class S1: public A { public: int x; }; class S2: public S1 { public: int x; }; int main() { S2 obj; cout << obj.x; return 0; } In the code above, I basically … | |
I am getting garbage values for this program.. Please help. /* =============== == Program 8 == =============== Q. Write a program to enter and print student's details (Personal, Academics and Skills) using multiple inheritance */ #include <iostream.h> #include <string.h> #include <stdio.h> #include <conio.h> class skills { public: char hobby[]; char … | |
Re: Can you tell me what processor you have? If you have a decent processor then go and get a GTX 770 http://www.evga.com/Products/Product.aspx?pn=02G-P4-2773-KR | |
Re: No Rajeev. The cards are backward compatible. So a 3.0 will work with 2.0 and with 1.0 but it won't give its full potential. Now fealin73, as you said that even the onboard thing does not work, there can be 2 possiblities. 1. You must have destroyed your components due … | |
How to make a pointer to class and how to use it? Like, what would the cout statements show on screen? #include <iostream.h> void main() { class CLASS { public: int INT; char CHAR; }; CLASS OBJECT; OBJECT.INT = 10; OBJECT.CHAR = 'A'; CLASS *POINTER = &OBJECT; cout << POINTER … | |
Re: Well, there could be a reason of your processor overheating. Do this: remove the processor fan (if you have a stock fan) and check whether the thermal compound completely covers the interface between the fan and the processor. If it does not do, then remove the paste and apply it … | |
I'm planning to make a new budget gaming pc. I saw AMD had better performance at low budget. So this is what I have deciced: HERE IS MY WISHLIST: http://amzn.com/w/IOVE5X6Q4M85 **CPU: AMD FX 6300 GPU: Visiontek Radeon HD 7850 2GB GDDR5 Mobo: Gigabyte GA-970A-D3 RAM: Corsair Vengeance 8GB (2x4) HDD: … | |
I have decided to make this rig. Here's my wishlist: http://www.amazon.com/gp/registry/wishlist/IOVE5X6Q4M85/ref=topnav_lists_1 I want a budget gaming PC and I love the performance of AMD at budget. So I guess I'll keep it approximately $600. CPU: AMD FX6300 GPU: Powercolor ATI Radeon HD 7770 1GB DDR5 RAM: Corsair Vengeance 8GB (2 … | |
I am planning to build a budget gaming pc this June. **Not worth more than $600.** Here's the configuration: http://www.flipkart.com/wishlist/navking.venkat7-7098 [$215] CPU: Intel i5 3470 3.2 GHz [$78] GPU: ZOTAC NVidia GEforce GT630 Synergy edition (2GB) [$86] HDD: Seagate Barracuda 1TB [$89] Mobo: Gigabyte GA-B75M-D3H [$92] RAM: Corsair Vengeance 4GB … | |
I am planning to build my own processor. A simple one to start with. I saw many videos on it and did research too. I've made the general layout of it. What I lack is the resources. **Can anyone tell what all would I need to make one?** Of course … | |
Actually, I was thinking of assembling a budget gaming PC this June. This is the wishlist: http://www.flipkart.com/wishlist/navking.venkat7-7098 I want the following configuration: Processor: AMD FX 8350 Graphics: Gigabyte ATI Radeon HD 6670 2GB DDR3 Mobo: ASUS M5A78L-M LX V2 RAM: Corsair Vengeance 8GB HDD: Seagate Barracuda 1TB Cabinet: Cooler Master … | |
Re: Hey, make sure you're seeing the right thing. It could be that it is showing the bus speed. And yes as rajhoq12 said, the battery might give a problem. You'd want to check that out too.. :) | |
Re: Great! If at anytime you can't access the bios, just set your jumper to reset position and set the bios settings! :) | |
**What do AMD's piledrivers do? Increase threading etc?** Lately I was doing a lot of research on AMD FX 8350. It says 4.0 GHz 8 cores. So **does that mean that at most, I can get 8x4 = 32GHz, without any overclocking or turbo thing?** That would seriously be superfast. … | |
I have a compaq 510 notebook PC which has intel core 2 duo t5870 processor (@ 2Ghz, 2MB L2). The vendor from whom we bought gave us windows xp 32 bit installed in it. Lately I discovered that it is a 64 bit processor. **So, I think I need a … | |
I am interested in assembling my own PC. It is the first time I am doing it. So I want to ask about it first here. I had gone through some of the tutorials on how to assemble one. Lifehacker had a good tutorial about how to do it. Now, … | |
I have a **digital photo viewer keychain** by some company called **INNOVAGE**. I searched about it online but I can't find its webpage anywhere. The CD which came with it is empty and the device does nothing other than showing **"updating"** while connected to the PC. It doesn't even start … | |
I'm trying to make a function similar to strcat(char,char) in string.h header file. Somehow this code does not catenate the strings. Please help me make it better. void strappend(char *a, char *b) { int i; int start_pos = strlen(a); for (i=0; b[i]!='\0'; i++) { a[start_pos + i] = b[i]; } … | |
Re: Dont write using namespace std; Try without it. It worked on my pc. :-D | |
I had a doubt in one of the usages of typedef. I want to know the meaning of this line: typedef char Text[80]; What is the meaning of this line and what does it do? Does it create an array of typedefs relating to char, or does it mean "Text … |
The End.