What is better? plz help

i just got a 42 inch lg hdtv. would it be better to hook up my power mac dvi to avg or dvi to hdmi?

Not sure what "avg" is but DVI to HDMI is better because there is no conversion to analog (which is what happens when you go to VGA). DVI to HDMI is just changing the shape of the connector.

Similar Messages

  • When i try to buy 50k Coins in Jet Pack Joyride (3.99$) it says "Error al comprar" (Im from Costa Rica but my account is from USA) IDK what to do plz help me

    When i try to buy 50k Coins in Jet Pack Joyride (3.99$) it says "Error al comprar" (Im from Costa Rica but my account is from USA) IDK what to do plz help me.

    Hello Dovahkiin03,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iTunes Store: About In-App Purchases
    http://support.apple.com/kb/ht4009
    Best of luck,
    Mario

  • HT1937 Hi Dear, My Wifi and Bluetooth is not on what can do plz help me!

    Hi i have iPhone 4s since 4 month my Wi-Fi and bluetooth is not connceting or on what do i do plz help i am very upset

    Seems kind of obvious, turn them on.

  • I forgot my personal questions on my acount and dont know what to do plz help

    i forgot my personal questions in my acount and i dont know what to do plz help

    Forgotten Security Questions / Answers...
    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact
    More Info >  Apple ID: All about Apple ID security questions
    Note:
    You can only set up and/or change a Rescue Email Before you forget the questions/answers.

  • HT4623 i have iphone 3gs but there is no option like update software ? what is this plz help me

    i have iphone 3gs But its verson is old 4.1 i want to update it ,,, How can i update plz help me

    You use iTunes. Read here:
    http://support.apple.com/kb/HT4623

  • Logic error(I cant make it do what i want) plz help

    im writing a program for my lab at school and i cant figure out how to make it work. i thought i had figured it out, its close but not all the way there. im supposed to write a program in which 2 dice are rolled and the sum is added up. the dice should continue to be rolled until i get all possible sums ( 2 to 12) and it should display how many tries it took. this whole process should be repeated as many times as the user wants to play. it works fine the 1st tiime but after that it keeps printing out 0. anywhere heres how i have it written.public void rollForSum(int trials) {
            sum = value1 + value2;
            counter = 2;
            counter2 = 0;
            counter3 = 1;
            while (counter3 <= trials) {
                while (counter <= 12) {
                    while (sum != counter){
                        value1 = 1 + generator.nextInt(6);
                        value2 = 1 + generator.nextInt(6);
                        sum = value1 + value2;
                        counter2++;
                counter++;
            System.out.println("It took " + counter2 + " times");
            counter2 = 0;
            counter3++;
    }

    Well I can see you've had a go, so good on you, but there are several problems.
    You seem to be doing your counter incrementing in the wrong places, and in any case, you'd be better to use "for" loops for the fixed loops because they make the functionality clearer - something like this:public void rollForSum(int trials) {
            int tries = 0;
            for (int trial = 0 ;  trial < trials ; trial++) {
                 for (int diceTot = 2 ; diceTot <= 12 ; diceTot++) {
                     do {
                        value1 = 1 + generator.nextInt(6);
                        value2 = 1 + generator.nextInt(6);
                         sum = value1 + value2;
                         tries++;
                     } while (sum != diceTot);
                 System.out.println("It took " + tries + " times");
    }However, I don't think this actually does what you want, because you are counting the number of tries to get a 2, then the number of tries to get a 3 and then the number of tries to get a 4, and so on up to 12. I suspect what you really should be doing is count the number of tries to get at least one of each number. To achieve that, you need to hold a flag saying whether you have found each number separately, and a counter of the numbers found so far.
    I would do this by holding an array of booleans and a counter then you only need two loops, one "for" loop for trials, and an inner "while" loop (like you used) like this:int tries = 0;
    for (int trial = 0 ;  trial < trials ; trial++) {
      boolean[] sums = new boolean[13];
      int sumsFound = 0;
      while (sumsFound < 11) {
        value1 = 1 + generator.nextInt(6);
        value2 = 1 + generator.nextInt(6);
        sum = value1 + value2;
        tries++;
        if (!sums[sum]) {
          sums[sum] = true;
          sumsFound++;
    }Hope this helps!
    Regards,
    Tim

  • I Idk what to do plz help

    I Am trying to my iemi Ik where to find it but when it put it into like the ATNT webcite or something it says that it is invalid

    ok, you all are just being mean. I am just a young girl trying to find out what is wrong with my phone and I am answering all the questions you ask I am not 100% sure what to put. I am new to Apple. I got my moms old iPhone and when she tried to get survice on it, the AT&T website said that the Imei was invalid. I am just trying to put a prepaid plan, or a pay as you go plan.
                                       does that help any

  • What happens? plz help?

    Oh Hi,
    I am gonna get an ipod touch and i need to know what will happen if i dont have broadband?

    what? a wireless router? A wireless router is technically a wire free internet, you don't need wires connected to your computer or anything but that it needs a wireless card to receive the signal. As for the touch it does have the wireless card built in so no need to worry about that. I'm sure you are using your internet now, you just need to hook up the wireless router to the cable modem and just follow the instructions there. If you really don't know what wireless router is, the best bet is to go to the store and ask them about it.

  • TS1363 i have and ipod touch  the with out the camera how do i get my facebook back  when i try it said i need iso4 donot know what that is plz help

    hi can you help me get my facebook back on my ipod touch. i have ipod touch with out the camera.

    It sounds like you may have a 2nd generation iPod. If so, it can not be upgraded beyond 4.2.1. The Apps you are trying to load are compatible with a higher version of the iOS.

  • I have a 4th gen ipod touch and i reset to factory settings but it is frozen with the apple logo with a gray lined circle. I've tried running out battery and when i connected to itunes, it flashes gray and freezes again. I don't know what to do plz help.

    it wont turn on after reset to factory settings

    there is a program called recboot. you can download it for free in two parts. one part takes your device out of recovery mode and the other puts it into recovery mode. ive used it before but it doesnt always work and you have to be patient. try it and tell me what happens

  • My daughter has forgotton her password to get onto her i pad and i dont know what to do plz help, my daughter has forgotton her password to get onto her i pad and i dont know what to do plz help

    hi my daughter has forgotton her password to gettin into her i pad and im not sure of what to do please help

    She'll will have to restore the ipad via itunes on a computer. If its the same computer that the ipad was originally synced with then she should be able to reset the password during this process. If unable to do this or restore then follow these instructions:
    http://support.apple.com/kb/HT4097
    But, all content on ipad will be deleted during restrore.

  • I lost my iphone and i couldnt track it because the one who stole it shut it down,, what to do plz help

    i lost my iphone and i couldnt track it because the one who stole it shut it

    you've lost you're phone, you can report it stolen but i doubt they will find the person, or if you had insurance use that. there is like a 1% chance you will find it. &like someone else said, the theif cant use it if it had a passcode lock or without your apple id and password

  • I forget my apple id password my phone locked after reset what i do plz help

    i have i phone 5s i forget my apple id passwor my phone locked after reset
    (S/N:DN*******FFW)
    (IMEI #**********)
    <Edited by Host>

    https://iforgot.apple.com

  • What's wrong? Plz Help

    okay, i'm pretty good with programming, and I dont like asking for support on forums before I give it, but i know pretty much nothing about hardware and drivers
    so i dont really know if I have a sound cardor anything
    I have a windows xp
    I used some speakers with this computer when I first got it, and they worked fine. Thats when my OS was Windows XP Home
    I installed Windows XP Professional onto the computer because i had several viruses, and I noticed that I didnt delete Windows XP Home
    So i deleted it from cmd
    Now I only have the Windows XP Professional OS and sound doesnt work at all
    When i check my driver list under sound it has "Sound Blaster 6 or AWE32 compatible (WDM)" and its enabled, but theres an error, Code 0
    I've gone to windows update, but I dcouldnt get a driver update for it
    I've googled for updates, which led me to this site, but that didnt work either
    The CNET link is broken
    I don't know whats wrong or what to do
    PLZ HELP ME
    Any information on whats wrong or what to do would be much appreciated
    Thanks, GreyHeart :-D

    s = scan.readLine();
    double i = scan.nextDouble();
    i = Double.parseDouble(s);think again of what this line is doing.
    first, it reads one line from standard input and store it to variable s.
    and then it tries to read a double value AFTER the line inputted (which would be non-existing at this point) and store it to variable i (I think there should be an exception thrown at this point already, no?)
    Even if this line works semantically, the combination of this line and the third doesn't make sense. You already assigned a value to variable i, and before it's even read you continute to reassign value to it with
    i = Double.parseDouble(s);

  • Plz help plzzzzzz

    hi i m advanced windows user and im new in the mac world i need help i know now that this is a new and better world and i just need understand something, plz can somebody tell me how can i give mantinance to my mac couse its getting slow and i think that i have to maybe delete unnecessary files and stuffs like that i dont know how to do that, i had already upgrade my os and still its slow really slow and i dont have the os x disk plz if somebody know what to do plz help me. thanks
    powerbook g4 667 mhz   Mac OS X (10.3.9)  

    So I assume from your post (i dont have the os x disk) means that you borrowed an OS X disk from someone? If that's the case, then sorry, but most people here frown on the use of pirated software.

  • PLz Help New To Java

    Hey im brand new to java and i just downloaded and installed jdk-1_5_0_01-windows-i586-p now im tryin to set up the PATH permanently but i have no clue how to i went to the install notes and typed in C:\Program Files\Java\jdk1.5.0_<windows>\bin in the command.com but everytime i do it says access is denied. i have no clue how to set up the path permanently beside what i tried plz help!!!

    You didn't which OS you are running, but it's fairly similar for all windows.
    Start->settings->control panel->system->advanced->environment variables
    Go to System variables, click on path, click edit button and add a semicolon and the path at the end. DO NOT REPLACE EVERYTHING THAT'S THERE NOW.
    I don't have 1.5 installed on this computer, but I'm willing to bet the real path doesn't have '<windows>' in it. Use Windows Explorer to find out where java.exe actually exists on the hard disk and use that path

Maybe you are looking for