Finally here, some questions please!

Dear all,
After months of holding off and waiting for an update, I finally gave in and got my imac. It is sweet! 3.06 Ghz model, 24" with nvidia 8800 gs plus wirless keyboard/mouse.
I just wanted to ask...
1) I got Apple care. I opened the box and there is only a cd and manual. Am I automatically on the plan or is there anything else I need to do?
2) the Apple salesman told me if i get 3rd part (non-Apple) RAM, my warranty becomes invalid? should I just get RAM at x4 the price from Apple? Or can they not tell if I use 3rd party ram?
3) Does anyone know if my model has a single 2GB RAM stick of 2x1GB Ram sticks? What max RAM can I upgrade to?
Regards as always!
Message was edited by: Fireball Dragon

1. Click here and register it.
2. Using third-party RAM doesn't void the warranty.
3. Choose About this Mac from the Apple menu, click on More Info, and look at the Memory section.
(40121)

Similar Messages

  • I have solved some questions, please check if my answers are correct

    Hi every Java aces,
    I have solved some programming questions, please check if my answers are correct. Thanks
    Here are the questions and the answers to each question
    (a) Write a method called add that takes three integers as parameters and returns an
    integer that is the sum of the three parameters.
    (b) Write a method called max that takes three integers as parameters and returns the
    largest of the three integers.
    (c) Write a method called printMax that takes three integers as parameters and prints
    the maximum value to the screen. The method should return nothing. The method
    should print the words \The maximum value is " followed by the maximum value,
    followed by a new-line character. You should try to use the max method that you
    wrote earlier.
    (d) Write a method called min that takes three integers as parameters and returns the
    smallest of the three integers.
    (f) Write a method called ticketPrice that takes one integer parameter representing
    the age of a person, and returns the price of a movie ticket in dollars (as a
    oating
    point value). Children under 6 get in for free (0.00), people that are 18 or under
    pay 8.50, senior citizens (65 or older) pay 6.50, and all other people pay 10.00.
    (g) Write a method called isDivisor that takes two integers as parameters and returns
    true if the rst parameter is a divisor of the second parameter or false otherwise.
    We say that m is a divisor of n, or that m divides n, if there is an integer k such
    that n = k m. Note that 1 divides every integer, and every integer divides i
    itself .
    here are my codes
    public class Methods
    // This is method (a)
    public static int add (int a, int b, int c)
    int sum = a + b + c;
    return sum;
    // This is method (b)
    public static int max (int a, int b, int c)
    int largest;
    if (a > b)
    if (a > c)
    { largest = a; }
    else
    { largest = c;}
    else
    if (b < c)
    { largest = c; }
    else
    { largest = b;}
    return largest;
    // This is method (c)
    public static void printMax (int d, int e, int f)
    int maxValue;
    maxValue = max (d, e, f);
    System.out.println ("The maximum value is " + maxValue);
    // This is method (d)
    public static int min (int a, int b, int c)
    int smallest;
    if ( a < b )
    if ( a < c )
    { smallest = a; }
    else
    { smallest = c; }
    else
    if ( b > c )
    { smallest = c; }
    else
    { smallest = b; }
    return smallest;
    // This is method (f)
    public static double ticketPrice (int age)
    double price;
    if ( age < 6 )
    { price = 0.00; }
    else
    if ( age <= 18 )
    { price = 8.50; }
    else
    if ( age < 65 )
    { price = 10.00; }
    else
    { price = 6.50; }
    return price;
    // This is method (g)
    public static boolean isDivisor ( int m, int n )
    boolean result;
    int check1;
    double check2;
    check1 = n / m;
    check2 = (double)n / m;
    if ( check2 == check1 )
    { result = true; }
    else
    { result = false; }
    return result;
    }

    Here are my codes
    // This is method (a)
      public static int add (int a, int b, int c)
        int sum = a + b + c;
        return sum;
      // This is method (b)
      public static int max (int a, int b, int c)
        int largest;
        if (a > b)
          if (a > c)
          { largest = a; }
          else
          { largest = c;}
        else
          if (b < c)
          { largest = c; }
          else
          { largest = b;}
        return largest;   
      // This is method (c) ?
      public static void printMax (int d, int e, int f)
        int maxValue;
        maxValue = max (d, e, f);
        System.out.println ("The maximum value is " + maxValue);
      // This is method (d)
      public static int min (int a, int b, int c)
        int smallest;
        if ( a < b )
           if ( a < c )
           { smallest = a; }
           else
           { smallest = c; }
        else
          if ( b > c )
          { smallest = c; }
          else
          { smallest = b; }
        return smallest;
    // This is method (f)
      public static double ticketPrice (int age)
        double price;
        if ( age < 6 )
        { price = 0.00; }
        else
          if ( age <= 18 )
          { price = 8.50; }
          else
            if ( age < 65 )
            { price = 10.00; }
            else
            { price = 6.50; }
        return price;
      // This is method (g)
      public static boolean isDivisor ( int m, int n )
        boolean result;
        int check1;
        double check2;
        check1 = n / m;
        check2 = (double)n / m;
        if ( check2 == check1 )
        { result = true; }
        else
        { result = false; }
        return result;
       // This is method (h)
      public static boolean isProduct ( double a, double b, double c )
        boolean result;
        if ( a == b*c )
        { result = true;}
        else
        { result = false;}
        return result;
         

  • Some Question Please answer I am a beginner

    Hello Friends
    I have some question
    1. what is the difference between forms and report
    2. what is the difference between simple report and xml publisher report
    3. what are the types of Database Types in Oracle
    4. what are the types of SQL Loader
    In Advance Thanks

    1) Oracle form: acts like an user interface between data base and user input. User can Query the data and view the under lying data.Basically Oracle forms are front end tools for user interaction and application setup.
    Oracle Report: is the reporting component in EBS, where in when the user gets the data based on the parameters provided.
    refer to the developer Guides for more information.
    http://www.oracle.com/technetwork/developer-tools/forms/index.html
    2) template will be used in the XML publisher which can be developed by a RTF file, and registration of the report in EBS has a separate process. Check the below link for more information
    http://docs.oracle.com/cd/B34956_01/current/acrobat/120xdoig.pdf
    3) Oracle data types are similar like other languages, these are used for handling the data.There are several built-in data types, check the below link.
    http://docs.oracle.com/cd/B28359_01/server.111/b28318/datatype.htm
    4) SQL loader is basically used to load the data from flat file to data base table by using a control file. Please go through the below link for more information and concepts.
    http://docs.oracle.com/cd/B19306_01/server.102/b14215/ldr_concepts.htm
    Regards,
    -

  • Considering Switching from Cubase (finally).  Some questions.

    I've been a cubase user for the past 10 years and am a little tired of Steinberg's lack of support and the fact that they break more things than the fix in their updates. I've been to a friends studio (who just switched to a Mac)and am trying to get familiar with Logic before I plunk down the dollars. He has a 4 core mac pro with 4gb ram.
    Here are my questions:
    1. When you record arm the track, why does the audio engine "glitch"? The cubase engine wouldn't drop out sound because of arming a track.
    2. Is there a way to have the program auto record arm a selected audio track the way cubase does?
    3. When you "arm" a audio track, why are you limited to what functions you can perform on the mixer,etc? Is there a way around this.
    I would really appreciate any help possible. The Logic 8 studio package is really tempting for a million reasons, but the above things seem to get in the way of my workflow.
    SpiderMix

    Paul Bienick wrote:
    Initially, I missed my productivity. I was quite comfortable in Cubase and very quick at getting around. But after a while I was just as productive in Logic. I miss that Cubase's meters and song position locater are dead accurate: Logic's channel meters and play head are WAY ahead of where they should be once you start using a bunch of high-latency plug-ins. I've been told to accept this, but I think it's ridiculous.
    Right, this is part of Logic's flawed PDC and buffering scheme, it makes it a pain to use for some of the commercials that I do. If I'm working on my own stuff it's not so bad but it's something that needs to be re-thought from the ground up.
    I can tell you what I don't miss. I don't miss the mixer - I've heard that some people prefer it over Logic's but I just don't understand this. I find Logic's mixer to be much more efficient. I don't miss the way Cubase handles touch automation. I don't miss the crashing -
    I'm using Cubase on PC with the same RME card that's in my Mac, (not the same card, but same make/model) and it's rock solid on the PC. I 've upgraded to the latest version of 4.xx and it's fixed most outstanding issues I've had. I was a long time Logic user on PC from the early MIDI only days and used it up through version 4 which was bad news. Trying over the past year to get back into Logic, there's a lot to like, I need something with a little more whoomph than the dual 1.8G5. OSX is certainly ummm. what did they use to call Windows, bloated. I can't believe how much overhead OSX has, Tiger is better, Panther flew, such is the price of progress.
    Oh and I don't miss having to turn off my monitor manually when Cubase was running as it would interfere with the screen saver and energy settings. Although this was relatively minor, it was completely unacceptable and extremely annoying. I sincerely hope it's been fixed in recent versions of Cubase.
    I never minded the monitor thing, nor the fact that the computer didn't sleep when Cubase was running. OSX and some audio interfaces lose connecton if/when the computer goes to sleep or a screensaver opens. Seems more professional, they could make it an option though. I think most users disable those OSX features when using their machines for Audio/MIDI.
    As far as the colors go, you'll forget all about it once you start colorizing your regions.
    Didn't you use the custom color setup?
    When working on my own material I've often gone back and forth between the two as ideas develop differently on each platform.
    Have fun!
    pancenter-

  • Some question, please, help

    Hi all.(sorry for my bad inglish)
    I try install Sol8 to computer where i have Win2000 instaled. I'm free some disk size(i'm use PartitionMagick)
    and try install Sol8 to this free disk.(i have IBM Deskstar
    30Gb hard drive = 57000 cylinders) Instalation start ok and wright detect my hard drive, but when installation
    want make swap filesystem at the begin of hard disk,
    i'm answer "no" and Inst programme sugest me choise,
    from what cylinder i want start swap file system and
    sugest me choise ONLY from 3 to 10000 cylinders!!!
    but Solaris partition start from 40000!!! What dose this mean? How i can make swap at the start of Slaris partititon?
    Please, help.
    Best regards, Yaroslav.

    Solaris is most restrictive as regarded to the size of its primary partition. Since it is not possible to have Solaris UFS file system on a logical volume, all Solaris stuff must go into primary fdisk partitions. There is no use in having more than one Solaris primary partitions, if we want to install alternative operating systems. The conclusion is as follows:
    if you need large Solaris partition and want to install additional operating systems on the same hard disk, partition the hard disk so that Solaris partition is a last primary partition that begins, but not necessarily ends, within the first 1024 cylinders.
    The workaround for swap space, Though I have not tested it myself.
    Solaris 7 and earlier do not support IDE hard disk drives larger than 8 GB, that is, they may access only the first 1024 cylinders of such a disk. Since the problem is on Solaris fdisk side, the workaround is quite straightforward:
    1. Using Linux fdisk program on Linux installation floppy, or Ranish PM create a Linux swap primary partition. It is also possible to create e.g. DOS partition and change its ID to 0x82 (Solaris ID) with a favorite hex-editor and BOOT program, or a disk editor.
    2. Boot Solaris from e.g. its installation CD.
    3. Run format utility and create slices on Solaris partition.
    4. Run newfs to construct file systems on all created slices.
    Note: Pls. make sure you have a backup of all of the windows data before doing this exercise.
    regards,
    Mohsin.

  • Slower than slow. Not the first I know but have some questions please.

    Hello fellow Verizon users. First let me tell you about my pc.  It's second hand,  HP Pavilion, Windows Vista, 32-bit, Windows 7, sp2. Hope this helps. My router is Gateway Westell 7500.
    I have been reading the replies to others who have posted that their connections are very slow, but do not understand the replies and don't have the technical know-how to report back all of the info. 
    There was one link that I did click on where I typed in the IP address and it brought up my router information. All but two headings read that , more or less if you don't know what you are doing..Don't!  However I did write one thing down. One was the down speed which is 3360 Kbps, and the up speed is 864 Kbps. Does this say anything about why my internet is so slow? 
    In task manager I noticed that there is information .... Processes, performance, CPU Usage and so forth. Although these numbers mean nothing to me, do these stats say anything about why I am having this issue? I was told at one time that the Services tab that shows a listing of the names and status of functions that are running, needs to be cleaned up. Here again, I do not know what these functions are and what they are for.
    When I first signed on with Verizon High Speed Internet, everything ran fine and fast.  I have talked to tech support about this and they took control over my pc, but did not fix anything.
    Off of the topic, but when I would try to get help on Verizon Help Page, all I'd get is IE Cannot Display This Webpage. Called tech support and they installed Google Chrome.  So what did that do?  Anyway.... 
    Also, when the Verizon Internet Security Suite is scanning while I am online, most of the websites stop responding or it takes so long to open a website that I just shut down.
    I am at a loss here and getting ready to trash the thing. Could it be the router, or something else?  I have cleaned up, done defragging, deleted cookies and so forth.
    Thanks for reading and for any advice that someone could give to a not so technical user.  

    Sounds like you've done much of what would cover a slow computer. if the system, booted into either Windows Vista or Windows 7 isn't feeling slow it's most likely something up with the Internet connection. We'll sort that out for you and also work with anything that needs to be tweaked on the PC to get the most out of the service.
    We've established one thing already. Your line is synchronized properly for 3Mbps service, which is 3360/864kbps. This also signifies you are on G.DMT ADSL or another ADSL1 standard. ADSL2 and ADSL2+ modes display different sync rates for the same speed.
    If you could, can you supply to us a Speed Test from this website: http://web100.rit.edu:7123/  (needs Java) or for that matter, use http://www.speedtest.net/ to supply a speed test? The second site is easier to get results from as it gives you an image link. The first test is often more reliable for testing but you'll need to take a screenshot as lately they haven't been allowing Clipboard access due to tightened browser security.
    In addition, if your service feels slow, does it only feel like this during the evening and night time hours or is it like this constantly, even in the morning?
    Since you mentioned the machine getting really slow during a VISS scan, that makes me wonder: How much RAM is installed in your system? To find out go to the Start Menu, right click on Computer and then click on Properties. Under "Memory" it will display how much memory the system has, and if there is a certain amount of memory that can be used. Knowing that bit of information would be good too since a virus scan should not cause slow net performance unless the machine itself is loaded down. Your browser should be operating in RAM and using limited disk resources (which virus scans consume, due to Disk I/O).
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • Opening my own plan! I got some questions. please help!

    Hi, I'm 18 and going monday to open my own plan at the Apple Store and since i have no credit and since i'll have to pay a deposit if the Apple store would be able to do that? Also, does anyone know how much the deposit might be? Will they let me have a co signer for the account?

    You would probably be better off going over to an ATT store and have them do the preapproval process to see how much of a deposit you will need to provide. Cell phone accounts do not have co-signers. If you want it to be your account, it has to be in your name. Otherwise, you would have to be added to someone else's account and it wouldn't be your account.

  • Some Questions on BPM

    Hi Master,
    I Attended the one Interview...I have some Questions, Please Reply ASAP..
    <b>What is Pattern</b>? Why we are using with Real time Example.
    Thanks & Regards,
    SReddy

    Hi,
    As moorthy already said pattersns are like templates that can solve many of the real time scenarios either as given or with some customization.
    In BPM there are different patterns and each one having some sub patterns within them with slight variations.
    Some Patterns are,
    1. Multicast Pattern.
    2. Serialization Pattern.
    3. Sync/Async Bridge Pattern.
    4. Collect/Bundle Pattern.
    You can go thro this help link for more examples in Patterns,
    http://help.sap.com/saphelp_nw04/helpdata/en/de/766840bf0cbf49e10000000a1550b0/content.htm
    Regards,
    P.Venkat

  • The iPhone 5 is Finally Here!!  Some Questions About My First Smartphone

    Hello-
    I do not see any personal set-up or mini class advertised with the iphone 5 purchase webpage.  Does anybody know if theyare not offering this initially or at all?  Does the new adapter come with the iPhone 5 or is that extra?
    For Verizon customers who are not in contract and ready for an iPhone 5, can they purchase one from Apple.com, and when it arrives at their door, bring it in to the Apple Store to get help with the personal set-up?  And also help with setting it up with a Verizon plan?
    I am assuming this iPhone has the personal mobile hotspot.  Has this been a good thing on the other iPhones because I wuld like to get this activated and get a plan that allows me to use it.  any suggestions on a Verizon plan that allows me to do this?
    I did not see when they are available in-store.  Is that an option that I should consider if I do not mind waiting in lines.  Anybody know when this starts?  The pre sales starts on9/14 and ships on the 22nd?
    Thanks.

    hi kayaukayau,
    Welcome to the Lenovo Forums.
    Regarding your questions:
    1. Try to uninstall the current flash player then download and install the latest Adobe Flash Player 11.6.602.180 and test the videos in full screen. If the problem persist, disable hardware acceleration (see spoiler) and observe the PC.
    Spoiler (Highlight to read)
    2. If you're getting problems with the Lenovo EE Boot Optimizer,  try to uninstall this software and download the version below and observe the PC.
    Lenovo EE Boot Optimizer
    Windows 7 32bit / 64bit
    cale10ww.exe
    12.7MB
    Let me know your findings,
    Cheers
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Security question keep saying they are wrong and I know they are right. I can't change them cuz when I try it tells me to answer the questions. I have tried everything changing my account and all and still can't get it can some one please help me out.

    Security question keep saying they are wrong and I know they are right. I can't change them cuz when I try it tells me to answer the questions. I have tried everything changing my account and all and still can't get it can some one please help me out.

    Go here and select "Reset your password."  You will receive an email message with a link that bypasses the questions.  You will then be able to select and answer the questions again.

  • I am using iphone5 and when sending sms within 160 characters i am getting 2 sms counts deduction & i hear the message send sound twice. what is wrong here. can some one please help me here???

    i am using iphone5 and when sending sms within 160 characters i am getting 2 sms counts deduction & i hear the message send sound twice. what is wrong here. can some one please help me here???
    APPLE need to do something here!!!!!!1

    Hi...
    Thanks for your repaly .
    and i am not bale to post a question in developer forum i tried hard but i didnt get .Can you plz explain me how to post a question in developer forum this is very helpfull for me.Because i never did this thing.

  • TS1424 security questions i do not know the answer to then please send me one some more please david adams

    security questions i do not know the answer to then please send me one some more please david adams

    Please be aware that you are not communicating with Apple when you post in these forums. The only people who will reply to your posts are your fellow users.
    As to your issue, go to:
    https://appleid.apple.com/
    If you've forgotten your answers, there should be a link just under the security questions fields where you can have a reset email sent to your Rescue email address. If the link for the email doesn't appear, as can happen if you didn't set a rescue email address or (apparently) have a .Mac email address, go here:
    http://www.apple.com/emea/support/itunes/contact.html
    to report the issue to the iTunes Store.
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Hi Sir! I have some questions regarding word report generation please.1.How can i add border to a word page?.2.How can i add grid lines to a table generated in word report?.3.How can i add border to a table of word report?.Thanks Imran Pakistan

    Hi !
    Sir I have some questions regarding word report generation using(C language in labwindows) Please.
    1.How can i add border to a word page?.
    2.How can i add border and grid lines to a table generated in word report(Not the " cvi table control" inserted from gui,i am asking about the table generated in word report)?
    3.How can i fill a cell of word report table withe the data type other than "character"?.
    And sir one question about use of timer in cvi labwindows please.
    Sir i'm trying to set minimum delay interval of timer control to 1millisecond(0.001s),as i set ,timer don't cares of the interval that is set by me it responds only to the default minimum time interval which is i think 10milliseconds(i'am using windows xp service pack3 version 2002).
    Regards
    Imran
    Pakistan
    Solved!
    Go to Solution.

    Hello sir!
    Sir i'm using daq6251.But Sir before implimenting it to my final application now i'm just trying to achieve 1millisecond time interval for timer in a vary simple programe i mean at this time no hardware (daq device) is  involved i,m just trying to achieve minimum time interval of 1millisecond.
    Sir i read form "help" of labwindows how this time interval can be set,i'm trying for,as described in help notes but i could'nt.I'm attaching a screen shot sir for you it may helpful for you to explain me.
    And sir also waiting for your kind reply regarding word report generation.
    Thanks.
    Imran.
    Attachments:
    screen_shot_rigistry.docx ‏65 KB

  • I have iphone 4g and have updated to ios6 an updated itunes 2, but while sync itunes freezes and iphone is not sybc fully, finally i have to disconnect my iphone for itunes to shunt down. Can some one please tell why this is happening?

    I have iphone 4g and have updated to ios6 an updated itunes 2, but while sync itunes freezes and iphone is not sybc fully, finally i have to disconnect my iphone for itunes to shunt down. Can some one please tell why this is happening?

    I am having this problem.  At first with the new iPhone 5, and then with the iPad 2.  I am not sure why this is happening. 
    My gut feeling is this is an iO6 issue and here's why -
    The problem mainly occurs with apps.  I have about 150 apps, and when I plugged in the phone, iTunes went to sync all of them.  The process would hang up after about 20 - 30 apps were loaded onto the phone. I could tell where about the process hung up because the apps on the phone showed up as "waiting".
    Then on the iPad 2 I plugged in to sync and saw there was a huge "Other" component in my storage.  It required me to restore the iPad 2 from backup.  With this restore the same issues occurred - putting the apps back on the iPad would hang up.  The videos on the iPad also got stuck - maybe after about 10 hours of videos transfered iTunes crashed.
    My solution has been to soft reset the device, restart Windows, and continue the process until it's complete.  This is remarkably inefficient and time-intensive but everything works with patience.
    I have been wondering if others have had these same problems. 

  • My apple ID was hacked.  Trying to reset password but the email never reached my account.  Trying to answer security questions, the birthday was changed.  I am really miserable.  Can anyone shed some light, please?

    My gmail email is my apple ID.  I found I lost access of gmail last night and I reset the password before bed.  But this morning the password was changed again.  My ipad also requested a password that didn't match to the one I used.  I have reset my gmail once more.  In addition, I added 2-step verification.  But I have not received any new mail up to now.  I tried to reset my apple ID.  When I selected sending an email for resetting, the mail was sent but never reached my mailbox;  When I selected answering security questions: the birthday was wrong.  It's been changed.  I am SO SO UPSET.  Can any genius take pity on me and show me some guidance, please?

    You should get Apple involved in sorting this out. Start at this site:
    https://getsupport.apple.com/Issues.action
    Your Apple ID can be handled through iTunes.

Maybe you are looking for

  • Can't make new hard drive stream to ATV

    After my computer crashed, the hard drive was replaced but I lost all content. However, my ATV has much of my music, photos and movies so I don't want to lose this content. I would love to be able to retrieve these from ATV but I would settle for bei

  • Can nested IIf be created in custom workflow (in Designer)?

    I need to explore building a custom workflow in Designer that will allow me to update a hidden field in the list.  Is it possible for me to recreate the nested IIf statement I have written below?  I'm not seeing how to do get an AND operator in the w

  • MessageTransformationBean in JMS Adapter

    Hi Experts, Proxy message is coming from ECC to PI and at receiver side JMS adapter is used.Source structure has 2 fields .one is filename and payload.Actual XML content will be sent as string in Payload field.In PI JMS adapter,I am using message tra

  • How to open my Macbook without Master or Login Passwords?

    How to access my Macbook, 2,1, A1181, 1.83ghz, 2GB (not sure), 80 ram if I do not have my Login or Master Password?

  • How to backspace in Pages on iPad?

    How may I backspace in Pages on an iPad (without deleting)?