What are names of five different processors used in personal computers?
Intel Core Duo
Intel Core 2 Duo Intel Core 2 Quad Intel Celeron AMD Athlon XP
AMD Phenom X2
And two for laptops:
Intel Atom
AMD Turion X2
What is Difference between CPU and mpu?
C.P.U.=central processing unit
M.P.U=micro processing unit
A central processing unit (CPU), or sometimes simply processor, is the component in a digital computer that interprets computer program instructions and processes data.
A microcontroller (or MCU) is a computer-on-a-chip used to control electronic devices.
Can you use a Slot 1 CPU with a socket type motherboard?
No. Slot 1 cartridges were extremely complex. In addition to likely not fitting correctly in most, the connector would be extremely fragile, holding a large and bulky cartridge by a few fragile pins. No adapter was ever created for this reason. However, there are adapters to use Socket 370 processors on a Slot 1 motherboard. This is possible because Socket 370 processors are much smaller than Slot 1.
Write a program to find the largest of n numbers in c?
Without Using Arrays
Program:
#include<stdio.h>
main()
{
int n,m,i,max;
printf("How many numbers(n) you going to enter:");
scanf("%d",&n);
printf("Enter the numbers:");
scanf("%d",&m);
max=m;
for(i=2;i<=n;i++)
{
scanf("%d",&m);
if(m>max)
max=m;
}
printf("The Largest Number is %d",max);
}
Output:
How many numbers(n) you going to enter:5
Enter the numbers:
25
410
362
5
56
The Largest Number is 410
With Using Arrays
Program:
#include<stdio.h>
#include<conio.h>
void main()
{
int max_num(int a[],int n);
int max,i,n;
int a[50];
clrscr();
printf("Enter n number:");
scanf("%d",&n);
printf("Enter the numbers:");
for(i=0;i<n;i++)
scanf("%d",&a[i]);
max=max_num(a,n);
printf("The largest number is %d",max);
getch();
}
int max_num(int a[],int n)
{
int i,m=0;
for(i=0;i<n;i++)
{
if(a[i]>m)
m=a[i];
}
return m;
}
output:
Enter n number:10
Enter the numbers:
123
456
789
963
852
147
5
56
600
753
The largest number is 963
What is difference between amd dual-core e-350 and AMD dual-core E-450 e-450?
The E450 has a clock speed of 1.65GHz, slightly faster than the 1.6GHz E350.
But the more significant differences are in the integrated graphics and memory controller of each. The AMD Radeon HD 6310 paired with the E350 has a core speed of 500MHz. The AMD Radeon HD 6320 that comes with the E450 has a core speed of 500MHz also, but it has a turbo function that increases it up to 600MHz when needed. The memory controller with the E350 can only handle DDR3-1066 memory, but the E450 can handle faster DDR3-1333.
Is it possible to put a amd processor in place of an Intel?
No, it is not possible to substitute an AMD processor for an Intel processor on the same motherboard. The two processors use different types of mounting sockets, so they are incompatible. It would be akin to trying to put an alternator from a Ford into a Toyota. If you want to move to AMD, you would need to replace both the processor and the motherboard, possibly the RAM as well (depending on whether the new motherboard uses the same speed and type of RAM as the old motherboard).
Is the core amd a10 better than i7?
No, the i7 is a very fast processor and even to keep up, you would need something like an AMD Phenom 8-core.
What is better Intel celeron 1.7 or amd sempron 2200?
It doesn't really matter, but keep this in mind... Intel count the stepping technology factor and maximum processor speed into their marketing, whereas AMD will tell you the true speed of its processors. If you see an Intel CPU with 2.2Ghz and AMD with 1.7Ghz, you can be sure their speed will be about equal.
Processors themselves don't make any noise; it is the cooling fan. The noise a particular computer puts out can vary by model of processor, brand of cooling fan, size of cooling fan, and age of the cooling fan. As such, there is no definitive answer to your question.
Does Intel and AMD make x86 processors?
Actually, they both make what are known as x86-64 processors, which are processors that can run both 32-bit and 64-bit programs. Check the specifications of the processor for something like "64-bit" or "64-bit Ready" to make sure you can run both x86 (32-bit) or x64 (64-bit) programs!
What is the best OS for AMD Phenom?
Use windows xp professional only if you are going to use a pirated one. Otherwise Linux is best
What is the fastest AMD Athlon?
The fastest "classic" Athlon is the Athlon 1400C. The fastest 32-bit Athlon is probably the Athlon XP 3200+.The fastest processor with the Athlon name is probably the AMD Athlon 64 FX-74.
What is meant by microprocessor and explain its operation?
Microprocessor is a programmable logic device which has computing and decision making capability similar to a cpu of a computer..the versions of microprocessor is 8085,8086,8088..
Which is a better processor an AMD 64 x2 or an Intel Core 2 Duo processor?
The Intel Core 2 Duo is a much faster Processor than an AMD Athlon x2 64. I have 2 Computers and the one that has the Intel Core 2 Duo Processor is much faster. I logged on to the other one and it takes time to warm up after you log on, so I did a test to see which one is faster. I started the Intel Core 2 Duo Computer after I logged on to the other one and I could start it up and use it in 1/2 of the time it took for the AMD Processor Computer to warm up after I had logged on. There is proof that the Intel Core 2 Duo Processor is The Superior Processor vs. an AMD Athlon x2 64 Processor.
I have an AMD sempron processor i want to know its speed?
If you're running Windows Vista or Windows 7, you can go to Start>right-click on "My Computer / Computer" and click "Properties". On my computer, it says
AMD Phenom (tm) II X4 B45 Processor 3.10 GHz
^^
| |
THIS is the speed, 3.10 gigahertz.
Otherwise, you can Google a program called CPU-Z that will tell you everything you ever wanted to know about your processor, and probably several things you didn't.
The AMD Phenom series of CPUs is AMDs QUAD-CORE series of CPUs and are available at a start of around $200+ sold seperately. Only some of the most advanced motherboards of todays era of computers (march '09) are compatible with these processors. Please look up your motherboard's model number and refer to the company's website to confirm its compatibility with the Phenom processor.
Sockets are used to allow applications to communicate. Either side of the connection can receive and send data because a socket is bidirectional.