Skip to main content

intel i3,i5,i7 processorகளுக்கு இடையேயான வேறுபாடுகள்.


இண்டெல் தன்னுடைய core2duo மற்றும் core2Quad processorகளின் தயாரிப்பை சென்ற ஆண்டோடு நிறுத்திக்கொண்டது. இனி i3,i5 மற்றும் i7 ப்ராசசர்களின் காலம் தான். நீங்கள் புதிதாக laptop, pcயோ வாங்கப்போவதாக இருந்தால் இவற்றினை பற்றி தெரிந்து கொண்டு உங்கள் தேவைக்கு ஏற்ப வாங்குங்கள்.

Core i3:
  • Entry level processor.
  • 2-4 Cores
  • 4 Threads
  • Hyper-Threading (efficient use of processor resources)
  • 3-4 MB Catche
  • 32 nm Silicon (less heat and energy)
Core i5:
  • Mid range processor.
  • 2-4 Cores
  • 4 Threads
  • Turbo Mode (turn off core if not used)
  • Hyper-Threading (efficient use of processor resources)
  • 3-8 MB Catche
  • 32-45 nm Silicon (less heat and energy)
Core i7:
  • High end processor.
  • 4 Cores
  • 8 Threads
  • Turbo Mode (turn off core if not used)
  • Hyper-Threading (efficient use of processor resources)
  • 4-8 MB Catche
  • 32-45 nm Silicon (less heat and energy)
 இப்போது இரண்டாம் தலைமுறை (2nd generation) i3,i5,i7 processorகளும் வந்துவிட்டன.  இதைப்பற்றி மேலும் அறிய click here

    Comments

    1. 32-45 nm Silicon (less heat and energy) ????????? எப்படி எப்படியெல்லாம் அர்த்தம் கண்டுபுடிக்கிறாய்ங்கப்பா..........

      ReplyDelete
    2. கண்டுபுடிங்க....கண்டுபுடிங்க....!! ஆனா அதையும் அர்த்தத்தோட கண்டுபிடிக்கணும், சும்மா அடிச்சு விடப் படாது. 32-45 nm Silicon அப்படின்னா சூட்டை தணிக்கிறதுக்குன்னு சொல்லப் படாது. Silicon என்பது கணினியின் பிராசசர் செய்யப்பட்டது சிலிக்கன் wafer இல் என்றும், 32-45 nm என்பது சிலிகன் சில்லுவைச் செய்யும் தொழில் நுட்பம், அதில் குறைந்த பட்ச இடைவெளி [minimum feature size] என்று அர்த்தம். இது குறித்து மேலும் அறிந்து கொள்ள Moore's Law வைப் கூகுளித்துப் பார்க்கவும். வரட்டுமா, பிளாக் முதாலாளி அவர்களே!!

      ReplyDelete

    Post a Comment

    Popular posts from this blog

    ARP/RARP full simulation program

    server.c #include "stdio.h" #include "stdlib.h" #include "string.h" #include "sys/types.h" #include "sys/socket.h" #include "arpa/inet.h" #include "netinet/in.h" #define SA struct sockaddr struct IPmac { char ip[100]; char mac[100]; }; int main() { int sockfd,len,i; struct sockaddr_in servaddr; char buff[30],temp[30],ip[30],mac[30];

    Configure opendns in ubuntu 12.04

    Today i have changed my dns server name to opendns. which is alternative to default dns and it provide more secure, faster browsing experience. What is opendns? OpenDNS is the leading provider of Internet security and DNS services Industry leading malware and botnet protection Award winning Web filtering Faster, reliable, more secure DNS Ultra-reliable, globally distributed cloud network Simple, Smart, Easy How to configure opendns in ubuntu 12.04: open terminal and type sudo nano /etc/resolv.conf enter your password and change these lines   nameserver 208.67.222.222  nameserver 208.67.220.220 to use google public dns use 8.8.8.8, 8.8.4.4 instead of 208.67.222.222, 208.67.220.220 simple isn't..! now see your facebook load faster than before. opendns comes with parental control, so never worry about unwanted websites, and your childrens are safe now. to check your dns changed successfully goto welcome.opendns.com

    Given a string, reverse only vowels in it; leaving rest of the string as it is

    /* Given a string, reverse only vowels in it; leaving rest of the string as it is. Input : abcdef Output : ebcdaf */ import java.io.*; import java.util.*; public class VowelReverse { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.next(); String vowels = ""; String ans = ""; int arr[] = new int[str.length()]; for(int i=0;i<str.length();i++) { if(str.charAt(i)=='a' || str.charAt(i)=='e' || str.charAt(i)=='i' || str.charAt(i)=='o' || str.charAt(i)=='u') { vowels+=str.charAt(i); arr[i]=1; } } String revVowels = new StringBuffer(vowels).reverse().toString(); int j=0; for(int i=0;i<str.length();i++) { if(arr[i]!=1) { ans+=str.charAt(i); } else { ans+=revVowels.charAt(j); j++; } } System.out.println(ans); } }