Will graphene chips replace silicon chips in computer?
Silicon transistors are approaching the point where further miniaturization will no longer be possible. It is expected that once silicon transistors reach 16nm size, optical lithography will no longer be capable of making smaller images. Thus, unless all progress in transistor size is terminated and performance improvements are limited to processor architecture alone, it is very likely that chip manufacturers will move to graphene as a way to get smaller transistors. However, graphene has flaws. One example is that graphene transistors are very "leaky" compared to those made of silicon- that is, more charge can escape from them. This means that graphene chips are likely to run much hotter than silicon chips.
What is the function of CPU SoCKET?
it is used for connecting CPU with a phone line or a lan cable so that ur PC comes into network..
Can two different components have different bandwith but have the same clock speed?
Yes, it's possible.
How does the hardware prevent a user progam from gaining complete control of the CPU?
The hardware for the computer prevents a user program from gaining complete control of the CPU by the use of firewalls. A firewall also prevents outside forces from taking over the CPU.
What is a 4 bit microprocessor?
A 4 bit microprocessor is a device that integrates the function of the Central Processing Unit (CPU) of a computer unto one semiconductor chip or integrated circuit.
What is advantage of rotate with carry in z80?
The Z80's rotate-with-carry instructions, RRC and RLC, for Rotate Right and Rotate Left, are great for taking action based on individual bits being set or cleared. If you start with a clear carry flag, then get a byte from wherever, then you can rotate left or right one bit at a time. The bit you want to examine will eventually be in the carry. Then, execute a JP C, (location) or JP NC, (location) to jump based on whether or not the bit is set. (Of course, you could also use JR). The beauty of RLC and RRC is that they don't destroy the byte that you are using - after doing enough rotates, the byte will be as it was before.
What is the most important register used in ALU?
The most important register used in an Arithmetic Logic Unit (ALU) is typically the accumulator register. The accumulator holds intermediate results of arithmetic and logical operations, allowing the ALU to perform calculations efficiently. It acts as a temporary storage location for data being processed, facilitating quick access and reducing the need for frequent memory access.
It is 86.80mb if u divide 88888kb by 1024 to be technical or u could just say 88mb to make things easier and rounding to a whole number. you wont be excat but close enough unless your dealing with bigger files.
Is a 1.2 Ghz processor slow and can I change the speed on a lap top easily?
It all depends on what you are using the laptop for. If you are just looking to browse the internet it is okay and pretty fast. Now if you are looking to play games or watch videos your not going to be getting the most out of you experience. Short aswer: Yes for internet browsing; no for videos and games.
if you mean how many their are 1024 kb in one mb their are 1024 mb in one gb their are 1024 gb in one tb
How do you get more mega hertz on your computer?
By replacing the motherboard and the processor or CPU.
Every computer would have a processor or CPU. Some common brands are Intel, Acer etc. It is this processor speed which is measured in hertz. These days processors that are around 2 giga hertz or more fast have come. So if you want to get more Mega hertz on your PC, change the CPU.
it stands for Multimedia extension. MMX is a technology by using which a computer can accept an input or give an output in the form of text, image or sound. MMX enabled microprocessors employ SIMD (Single Instruction Multiple Data) technique of data processing.
Market price of Intel net-structure pbx-ip media gateway?
The Intel Net Structure IP-PBX Media Gateway costs around $1900-2000.
What is an L2 cache and is 6 MB good?
An L2 cache is a small amount of RAM built directly into the processor. This memory is faster than the main system memory. It is used so that the processor doesn't have to fetch data from main memory as often, and thus making many tasks on the computer, such as video games and editing faster. A 6 MB L2 cache is considered good by today's standards.
What was the clock speed of the processor in the Sega Genesis?
The processor in the Sega Genesis is a Motorola 68000 running at 7.67 MHz.
Is 1572 KB more than 27.24 MB?
No a megabyte (mb) is a made up of 1000 kilobytes (kb) therefore 1572 kb is definetly not more than 27.24 megabytes (mb)
Explain memory reference and register reference instructions as micro operation?
memory reference instructions as micro operation
Is the CPU on the expansion board?
In most designs, the CPU is located on motherboard, not on an expansion card.
What is the function of CPU fan?
CPU fan is attached together with a heat sink on the mother board, CPU fan is used to prevent overheating of the processor on the motheboard
A c program for multiplication of two integers a and b?
/*PROGRAM TO ACCEPT TWO NUMBERS FROM THE USER AND PRINT THEIR MULTIPLICATION. */
#include<stdio.h>
#include<conio.h>
void main()
{
int a, b, c; // Declaration of Variables. Variables 'a' & 'b' to hold first & second number. And 'c' to hold result.
clrscr(); // To clear the output screen every time program is executed.
printf("\n Enter the first number : ");
scanf("%d", &a); // To accept the first number.
printf("\n Enter the second number : ");
scanf("%d", &b); // To accept the second number.
c = a*b; // Logic to get the product of the entered two numbers.
printf("\n Multiplication of %d & %d = %d", a, b, c); // Displaying result.
getch(); // To hold the output screen.
}