Friday, January 8, 2010

Help me with this C++ coding problem please?

Write a nested loop that displays a table consisting of 3 rows and 11 columns. The first column should contain the numbers 1 through 3. The second and subsequent columns should contain the result of multiplying the number in the first column by the numbers 0 through 9. The table will look similiar to the following chart. Use two ';for'; statement.


1 0 1 2 3 4 5 6 7 8 9


2 0 2 4 6 8 10 12 14 16 18


3 0 3 6 9 12 15 18 21 24 27





Thanks allHelp me with this C++ coding problem please?
#include%26lt;iostream%26gt;





using namespace std;





int main()


{


for( int i=1; i %26lt;= 3; i++ ) {


cout %26lt;%26lt; endl %26lt;%26lt; i;


for( int j=0; j %26lt;= 9; j++ ) {


cout %26lt;%26lt; '; '; %26lt;%26lt; (j*i);


}


}





return 0;


}Help me with this C++ coding problem please?
ill give you a hint.....





u need a counter and 2 variables(3 INTs)....
#include%26lt;iostream.h%26gt;


#include%26lt;conio.h%26gt;


#include%26lt;math.h%26gt;


void main()


{


clrscr();


for(int i=1;i%26lt;=3;i++)


{


for(int j=10;j%26lt;21;j++)


{


cout%26lt;%26lt;abs(j-11)*i;


}


cout%26lt;%26lt;'\n';


}


getch();


}
gosh, you didn't even try
  • hair shampoo
  • tca chemical peel
  • caption
  • facial scrub
  • Do you work in billing/coding for a Chiropractor??

    I'm working with a new Chiropractor fresh out of school. I think he's underbilling, but he seems to think he isn't. I want to help him, but don't have the knowledge to back up my suspicion that he is underbilling. What do you bill for for a regular visit?Do you work in billing/coding for a Chiropractor??
    Chiropractor under billing. I reviewed a file in which a D.C. was insurance approved for 400 plus chiropractic visits!! The trick to D.C. billing is that the items are not high take one at a time. But, when you add all of these goofy procedures or manipulations the sum is is enormous. Why are most D.C.s adverting for post-injury patients? Could it be that a third party payer is responsible for the bill? If you are paying out of your own funds then you may be getting a break on the bill. Best example: item for ';De-tension.'; When asked the D.C. explained that the patient was placed in a room for 30 minutes to lower this tension level!Do you work in billing/coding for a Chiropractor??
    Well I can certainly help you. But it all depends on what thgins he does in the office. Does he just do adjustments? Does he also do physical therapy? I would need to know more to help you. What is he billing now? Like initial visit and follow up visit and I need to knbow how many patients he sees in a day. Then I can help you.





    Well like I asked I would need to know his daily PV( patient visits). I mean if he is at a PV of 50 per day he could do what he is doing and be fine. So it depends. However the kid probably has a low daily PV. Thus he must learn to bill insurance at a high fee. It depends on the area. But 35 is in general way too low. Mabey charge 45 self pay and 60 insurance pay for adjustment. Withe physical therapy he should be averaging maybe 90 per visit and charging insurance like 120. As a rule you charge as much as the insurance carrier will pay or slightly under that. A lot of DCs fresh out of school fail because they do not know the ropes and are too idealistic. So I would really need to know more like PV per day and what physical therapy he does and more. If you want to talk about this e mail me. Where did he go to school?





    Example:





    Manipulation...60.00


    Traction..45.00


    Ultrasound...45.00


    Total..........................


    150.00





    Example: Injury patient..





    Initial exam..225.00


    x rays.350.00


    Manipulation...60.00


    Traction..45.00


    Ultrasound..45.00


    Total.725.00

    Please help! HTML / JavaScript password coding problem!?

    Here is my code! My problem is when I do this from my computer it works great, but as soon as I upload it to the server it no longer works! The page shows up fine but my login box does not pop up!





    %26lt;html%26gt;


    %26lt;HEAD%26gt;





    %26lt;meta http-equiv=';Content-Type'; content=';text/html; charset=utf-8';%26gt;


    %26lt;style type=';text/css';%26gt;


    %26lt;!--


    .style13 {


    color: #CC66CC;


    font-weight: bold;


    }


    .style16 {font-size: 18px}


    .style22 {font-size: 16px}


    --%26gt;


    %26lt;/style%26gt;%26lt;BODY%26gt;


    %26lt;center%26gt;


    %26lt;p%26gt;%26lt;img src=';ORIGINAL LOGO.JPG'; alt=';Crystal Boutique'; width=';300'; height=';100'; longdesc=';http://www.x.com';%26gt;%26lt;/p%26gt;


    %26lt;p class=';style10';%26gt;%26lt;font size=';5'; face=';Perpetua';%26gt; %26lt;span class=';style13';%26gt;Please Sign In!%26lt;/span%26gt;%26lt;/font%26gt;%26lt;/p%26gt;


    %26lt;p class=';style10';%26gt;聽%26lt;/p%26gt;


    %26lt;/center%26gt;


    %26lt;SCRIPT LANGUAGE=';JavaScript';%26gt;


    function LogIn(){


    loggedin=false;


    username=';';;


    password=';';;


    username=prompt(';Username:';,';';);


    username=username.toLowerCase();


    password=prompt(';Password:';,';';);


    password=password.toLowerCase();

















    --%26gt;Enter Username/Password Below %26lt;--


    if (username==';ashley00'; %26amp;%26amp; password==';2838';) {


    loggedin=true;


    window.location=';http://216.105.55.115鈥?br>

    }


    if (username==';evi01'; %26amp;%26amp; password==';2594';) {


    loggedin=true;


    window.location=';http://216.105.55.115鈥?br>

    }


    if (username==';kristen02'; %26amp;%26amp; password==';6510';) {


    loggedin=true;


    window.location=';http://216.105.55.115鈥?br>

    --%26gt;Enter Username/Password Above %26lt;--





    if (loggedin==false) {


    alert(';Sorry! Invalid Login Information!';);


    }


    }


    %26lt;/SCRIPT%26gt;





    %26lt;center%26gt;


    %26lt;form%26gt;


    %26lt;input type=button value=';Sign In!'; onClick=';LogIn()';%26gt;


    %26lt;/form%26gt;


    %26lt;/center%26gt;


    %26lt;p%26gt;聽%26lt;/p%26gt;


    %26lt;p align=';center';%26gt;聽%26lt;/p%26gt;


    %26lt;p align=';center'; class=';style16';%26gt;%26lt;span class=';style9 style22';%26gt;%26lt;font face=';Perpetua';%26gt;If you are having problems logging in click %26lt;a href=';mailto:x@comcast.net';%26gt;here%26lt;/a%26gt; to report it.%26lt;/font%26gt; %26lt;font face=';Perpetua';%26gt;%26lt;br%26gt;


    Click %26lt;a href=';http://www.x.com';%26gt;here%26lt;/a%26gt; to return to main page.%26lt;/font%26gt;%26lt;font face=';Perpetua';%26gt;%26lt;/font%26gt;%26lt;/span%26gt; %26lt;/p%26gt;


    %26lt;/center%26gt;


    %26lt;/body%26gt;


    %26lt;/html%26gt;Please help! HTML / JavaScript password coding problem!?
    You had a number of syntax errors. I corrected those. There are some style and convention issues which I did not correct, but those will not prevent the proper functioning of the code. I tagged my changes with the HTML comment blocks that include the string ';ruie'; to make it easier to identify them. I tested only in Firefox 2 and IE7.





    %26lt;html%26gt;


    %26lt;HEAD%26gt;





    %26lt;meta http-equiv=';Content-Type'; content=';text/html; charset=utf-8';%26gt;


    %26lt;style type=';text/css';%26gt;


    %26lt;!--


    .style13 {


    color: #CC66CC;


    font-weight: bold;


    }


    .style16 {font-size: 18px}


    .style22 {font-size: 16px}


    --%26gt;


    %26lt;/style%26gt;


    %26lt;!-- ruie - move script block to head --%26gt;


    %26lt;SCRIPT LANGUAGE=';JavaScript';%26gt;


    function LogIn(){


    loggedin=false;


    username=';';;


    password=';';;


    username=prompt(';Username:';,';';);


    username=username.toLowerCase();


    password=prompt(';Password:';,';';);


    password=password.toLowerCase();


    //--%26gt;Enter Username/Password Below %26lt;-- %26lt;!-- ruie - js comment --%26gt;


    if (username==';ashley00'; %26amp;%26amp; password==';2838';) {


    loggedin=true;


    window.location=';http://216.105.55.鈥?ruie - ??? --%26gt;


    }


    if (username==';evi01'; %26amp;%26amp; password==';2594';) {


    loggedin=true;


    window.location=';http://216.105.55.鈥?ruie - ??? --%26gt;


    }


    if (username==';kristen02'; %26amp;%26amp; password==';6510';) {


    loggedin=true;


    window.location=';http://216.105.55.鈥?ruie - ??? --%26gt;


    //--%26gt;Enter Username/Password Above %26lt;-- %26lt;!-- ruie - js comment --%26gt;


    }%26lt;!-- ruie - close if block --%26gt;


    if (!loggedin) { %26lt;!-- ruie - simplify syntax --%26gt;


    alert(';Sorry! Invalid Login Information!';);


    }


    }


    %26lt;/SCRIPT%26gt;


    %26lt;/head%26gt; %26lt;!-- ruie - close head --%26gt;


    %26lt;BODY%26gt;


    %26lt;center%26gt;


    %26lt;p%26gt;%26lt;img src=';ORIGINAL LOGO.JPG'; alt=';Crystal Boutique'; width=';300'; height=';100'; longdesc=';http://www.x.com';%26gt;%26lt;/p%26gt;


    %26lt;p class=';style10';%26gt;%26lt;font size=';5'; face=';Perpetua';%26gt; %26lt;span class=';style13';%26gt;Please Sign In!%26lt;/span%26gt;%26lt;/font%26gt;%26lt;/p%26gt;


    %26lt;p class=';style10';%26gt; %26lt;/p%26gt;


    %26lt;form%26gt;


    %26lt;input type=button value=';Sign In!'; onClick=';LogIn()';%26gt;


    %26lt;/form%26gt;


    %26lt;/center%26gt;


    %26lt;p%26gt; %26lt;/p%26gt;


    %26lt;p align=';center';%26gt; %26lt;/p%26gt;


    %26lt;p align=';center'; class=';style16';%26gt;%26lt;span class=';style9 style22';%26gt;%26lt;font face=';Perpetua';%26gt;If you are having problems logging in click %26lt;a href=';mailto:x@comcast.net';%26gt;here%26lt;/a%26gt; to report it.%26lt;/font%26gt; %26lt;font face=';Perpetua';%26gt;%26lt;br%26gt;


    Click %26lt;a href=';http://www.x.com';%26gt;here%26lt;/a%26gt; to return to main page.%26lt;/font%26gt;%26lt;font face=';Perpetua';%26gt;%26lt;/font%26gt;%26lt;/span%26gt; %26lt;/p%26gt;


    %26lt;/center%26gt;


    %26lt;/body%26gt;


    %26lt;/html%26gt;Please help! HTML / JavaScript password coding problem!?
    Javascript is a really bad solution for a password. Anyone can look at your source code and even modify your script however they like.





    If you want a password you need to do something on the server side, not the client side.

    Anyone know what type of coding or programming this is?

    ... lin0\itap0 { \par 49. Antioch provides a solid example of a truly \'93catholic\'94 community because it \par 1) was inclusive in its welcome to Jews and Gentiles; 2) sided with Peter, \par the first pope; 3) was universally acknowledged to be a better community than \par }\pard \ql \li0\ri0\sl-243\slmult1\nowidctlpar\tx20鈥?{54. The early Church ...





    I found this on a website... is anyone familiar with the program or method used to encode the formatting on the original text?Anyone know what type of coding or programming this is?
    LaTeX. It is a descriptive language for word processing.





    http://www.pages.drexel.edu/~pyo22/stude鈥?/a>


    http://www.math.cam.ac.uk/undergrad/cata鈥?/a>Anyone know what type of coding or programming this is?
    Roff?

    Will they be resseting the leaderboards and ranks on the cod world at war when the game is released?

    for xbox 360 and also the ranks?Will they be resseting the leaderboards and ranks on the cod world at war when the game is released?
    Yes they will.Will they be resseting the leaderboards and ranks on the cod world at war when the game is released?
    yes it is just like any new game that comes out to the public


    with a demo first.1

    Whats the name of that song played with that PS3 Coded Arms assault TGS trailer?

    I have no idea who sings the song.Whats the name of that song played with that PS3 Coded Arms assault TGS trailer?
    get it from a website

    I am looking for someone on xbox 360 that plays cod waw that is like willing to help me be a better player?

    I am still on 0 perstige but i am 6th prestige on cod4 so..


    Just leave yur gtI am looking for someone on xbox 360 that plays cod waw that is like willing to help me be a better player?
    Well, if you're good at Call of Duty 4 then you're probably decent at Call of Duty World at War. I think you can be a better player on your own if you're 6th prestige on Cod 4.





    Just keep working hard, try class combos. If you really need help, I'd rather tutor you in Call of Duty 4. Think about it.





    Oh, and just to add. Call of Duty 4 %26gt; Call of Duty World at War.I am looking for someone on xbox 360 that plays cod waw that is like willing to help me be a better player?
    Ok prestiege is how people judge most of the time. If your 0 prestiege 65 DONT rush into prestiege I made the mistake. Usually its how you think of yourself in gameplay not others. Once I got like 28 kills without dying and didnt even notice we were losing. So its all how you play the game. :)
    Prestige doesn't matter my friend. And play alot of 1v1, it will make you better.


    And by the way, CoD4 is way better.
  • hair shampoo
  • printer toner
  • caption
  • facial scrub
  • Does having rds on ak make the gun weaker in COD 4?

    I have a ps3, 10 prestige already with golden ak.....i just came across today that the ak is weakened by certain attachments. At first i thought the guy commenting on a video on youtube was joking but when i searched through it through google numerous ppl are agreeing. What attachment or no attachment provides the most power for the ak?Does having rds on ak make the gun weaker in COD 4?
    The red dot sight does nothing, just give you a better sight on things. The ACOG increases range but decreases accuracy. The silencer just decreases the range a little. Hope that helped.

    What sort of dress would you wear to a friend's confirmation dinner and the invitation dress cod was ';formal';?

    I have been invited to a friend's confirmation dinner and I have been told it is formal, but as I have never been to anything like this before, I don't know what dress to be looking for, what is appropriate etc.What sort of dress would you wear to a friend's confirmation dinner and the invitation dress cod was ';formal';?
    http://www.topshop.com/webapp/wcs/stores鈥?/a>








    somethng like that would be nice, but i wouldn't say you should where black, blue, or yellow would be nice or a colour really and truly it doesn't have to be black or you could just chose a black dress and jazz it up a bit with sum nice jewlerryWhat sort of dress would you wear to a friend's confirmation dinner and the invitation dress cod was ';formal';?
    A black dress that goes down to your ankles; nothing flashy, it isn't prom.
    A black dress, knee length, with high-heels, hair loose. The dress mustn't look stiff and square. Have fun at the confirmation dinner!
    i think maybe a long past yo knees or a little bit above yo knees black dress or white both will look good on u.
    A black strapless dress past your knees, and maybe some lace or see through gause at the bottom. Good luck!
    Just a smart frock or some kind of smart suit of jacket and trousers -





    Something that looks like you've thought about it and made an effort.





    - i.e. not a top that stops at your midriff with leggings, not shorts, not jeans, not t-shirt - BUT something you feel both comfortable and glamorous wearing.
    Don't go wearing a ';cod'; or any other sort of fish dress.Wear the sort of dress that you'd expect to wear if you wer'e going to church on a sunday.

    What kind of modes does GTA China town wars and COD:WAW have for online play?

    can you tell me what kinda of modes are in COD:WAW or GTA China towns war online wifi play. Also can u tell does both of them can do 1 card game mulitplayer. like one game card can make me play with my bothers next to me so they dont have to buy itWhat kind of modes does GTA China town wars and COD:WAW have for online play?
    WaW has all the same online modes as Modern warfare.

    When i play cod 4 or 5 my fans blow really fast and loud?

    whenever i play call of duty games my ps3 fans go mad what should i do p.s its definatley when i play call of duty games.When i play cod 4 or 5 my fans blow really fast and loud?
    Well it's because those games spins too fast and the fans are cooling the ps3 down to prevent over-heating.





    Don't play for long hours if online in those games, it spins really fast.


    Dust the vents, and vacuum them a month with it being low powered, make sure it's 2-3 cm away.





    Hope i helped!When i play cod 4 or 5 my fans blow really fast and loud?
    keep it in an open space like on the floor, and it should run fine (not overheat or run loud).
    It means that the CPU or your GPU is under load and will spin the fan at a higher RPM to offset the increased heat.





    What to do? Clean out your PC.





    Dust may clog the fans and cause heat buildup. Otherwise, it should be fine as long as it doesn't blow or reach 100+ C

    Whats Better Call of Duty 4 Modern Warfare or CoD World at War?

    I personaly think CoD world at War is better only beacause i like the guns and Cod4 got kind of old. Thats only my opinion so yea im just asking for yours???Whats Better Call of Duty 4 Modern Warfare or CoD World at War?
    Cod 5 Is way better you can kill zombies how ever long you want you will die. cod4 is more modern and has m16 m4 Ak 47. Cod5 vehicles cod4 no vehicles. But you can ride in them.Whats Better Call of Duty 4 Modern Warfare or CoD World at War?
    I agree with you, I think after playing COD4 for a year the new guns and maps are a nice change of pace. I don't see why everyone is complaining about it being in WWII again. The guns are not any worse than the ones in modern warefare and now we have dogs, tanks, and flamethrowers. Bouncing bettys are way better than claymores because you can put them in so many places without them being seen. They are both great games but I think COD WaW is worth it to buy and play.
    wat u should do before asking any question is searching up the question in the search bar to see if the question has already been posted, yes it has... ALOT...
    world at war is 901325438927423x better. i have both and enjoy world at war alot more than modern warfare

    How can I download CoD:W@W Nazi Zombies?

    I have CoD5 for PS3, but I want to download it for PC so I can play all those costum zombie maps. Thats it, I dont want multiplayer or single player JUST Zombies is this possible?How can I download CoD:W@W Nazi Zombies?
    Lol, no.


    If you have CoD for the PS3 you can only download it for the PS3.


    If you want custom maps and all go buy CoD on the PC.How can I download CoD:W@W Nazi Zombies?
    No, you cant. You need to buy the full version for your pc to play them, its not a add on, its part of the game itself.
  • hair shampoo
  • printer toner
  • caption
  • facial scrub
  • Can I have a COD 4 multi-player LAN party on PS3?

    I have 2 systems, 2 tvs, 8 controlers, 2 games and 8 people.





    I want to play call of duty 4 with all of them, 4 on one system 4 on the other.


    I can play multiplayer, but I can only get one person on each console. Can someone help me?


    Can this be done, and how?Can I have a COD 4 multi-player LAN party on PS3?
    Yes, just have your PS3's be close together and go to Lan Party something like that and connect your 4 people party with the other 4 people party.Can I have a COD 4 multi-player LAN party on PS3?
    i think u can but i never tried it but it should be able to be done just keep tryiig
    i believe it is able to be done

    I just completed Mile High Club achievement on Veteran in COD 4?

    That is the hardest thing ive even done in a video game.I just completed Mile High Club achievement on Veteran in COD 4?
    good job


    one you get it


    you just feel so proud hehe


    it took me like 2 hoursI just completed Mile High Club achievement on Veteran in COD 4?
    I have come VERY...VERY close to completing that achievement. You are lucky, I think I read on Infinity Ward's website that only like 1-2% of people that have played COD4 have gotten that. Congrats.
    cool

    How do you do the its a tarp achievement on cod 5?

    my friend and i want to get this achievement but we dont how 2 so if anyone can help us plz and thank uHow do you do the its a tarp achievement on cod 5?
    You mean ';It's a Trap!';? I think that's on Shi No Numa. You have to kill zombies with three traps. One is the Flogger. I think you can then either kill zombies with two different Electroshock Defenses or 1 Electroshock Defense and 1 with the Zipline.





    Hope this helped!How do you do the its a tarp achievement on cod 5?
    there is no such thing but i don't think anyone has achieved it SOL

    Whats the name of that song played with that PS3 Coded Arms assault TGS trailer?

    I have no idea who sings the song.Whats the name of that song played with that PS3 Coded Arms assault TGS trailer?
    get it from a website

    I am looking for someone on xbox 360 that plays cod waw that is like willing to help me be a better player?

    I am still on 0 perstige but i am 6th prestige on cod4 so..


    Just leave yur gtI am looking for someone on xbox 360 that plays cod waw that is like willing to help me be a better player?
    Well, if you're good at Call of Duty 4 then you're probably decent at Call of Duty World at War. I think you can be a better player on your own if you're 6th prestige on Cod 4.





    Just keep working hard, try class combos. If you really need help, I'd rather tutor you in Call of Duty 4. Think about it.





    Oh, and just to add. Call of Duty 4 %26gt; Call of Duty World at War.I am looking for someone on xbox 360 that plays cod waw that is like willing to help me be a better player?
    Ok prestiege is how people judge most of the time. If your 0 prestiege 65 DONT rush into prestiege I made the mistake. Usually its how you think of yourself in gameplay not others. Once I got like 28 kills without dying and didnt even notice we were losing. So its all how you play the game. :)
    Prestige doesn't matter my friend. And play alot of 1v1, it will make you better.


    And by the way, CoD4 is way better.

    Does having rds on ak make the gun weaker in COD 4?

    I have a ps3, 10 prestige already with golden ak.....i just came across today that the ak is weakened by certain attachments. At first i thought the guy commenting on a video on youtube was joking but when i searched through it through google numerous ppl are agreeing. What attachment or no attachment provides the most power for the ak?Does having rds on ak make the gun weaker in COD 4?
    The red dot sight does nothing, just give you a better sight on things. The ACOG increases range but decreases accuracy. The silencer just decreases the range a little. Hope that helped.
  • hair shampoo
  • printer toner
  • caption
  • facial scrub
  • What sort of dress would you wear to a friend's confirmation dinner and the invitation dress cod was ';formal';?

    I have been invited to a friend's confirmation dinner and I have been told it is formal, but as I have never been to anything like this before, I don't know what dress to be looking for, what is appropriate etc.What sort of dress would you wear to a friend's confirmation dinner and the invitation dress cod was ';formal';?
    http://www.topshop.com/webapp/wcs/stores鈥?/a>








    somethng like that would be nice, but i wouldn't say you should where black, blue, or yellow would be nice or a colour really and truly it doesn't have to be black or you could just chose a black dress and jazz it up a bit with sum nice jewlerryWhat sort of dress would you wear to a friend's confirmation dinner and the invitation dress cod was ';formal';?
    A black dress that goes down to your ankles; nothing flashy, it isn't prom.
    A black dress, knee length, with high-heels, hair loose. The dress mustn't look stiff and square. Have fun at the confirmation dinner!
    i think maybe a long past yo knees or a little bit above yo knees black dress or white both will look good on u.
    A black strapless dress past your knees, and maybe some lace or see through gause at the bottom. Good luck!
    Just a smart frock or some kind of smart suit of jacket and trousers -





    Something that looks like you've thought about it and made an effort.





    - i.e. not a top that stops at your midriff with leggings, not shorts, not jeans, not t-shirt - BUT something you feel both comfortable and glamorous wearing.
    Don't go wearing a ';cod'; or any other sort of fish dress.Wear the sort of dress that you'd expect to wear if you wer'e going to church on a sunday.

    What kind of modes does GTA China town wars and COD:WAW have for online play?

    can you tell me what kinda of modes are in COD:WAW or GTA China towns war online wifi play. Also can u tell does both of them can do 1 card game mulitplayer. like one game card can make me play with my bothers next to me so they dont have to buy itWhat kind of modes does GTA China town wars and COD:WAW have for online play?
    WaW has all the same online modes as Modern warfare.

    When i play cod 4 or 5 my fans blow really fast and loud?

    whenever i play call of duty games my ps3 fans go mad what should i do p.s its definatley when i play call of duty games.When i play cod 4 or 5 my fans blow really fast and loud?
    keep it in an open space like on the floor, and it should run fine (not overheat or run loud).When i play cod 4 or 5 my fans blow really fast and loud?
    Well it's because those games spins too fast and the fans are cooling the ps3 down to prevent over-heating.





    Don't play for long hours if online in those games, it spins really fast.


    Dust the vents, and vacuum them a month with it being low powered, make sure it's 2-3 cm away.





    Hope i helped!
    It means that the CPU or your GPU is under load and will spin the fan at a higher RPM to offset the increased heat.





    What to do? Clean out your PC.





    Dust may clog the fans and cause heat buildup. Otherwise, it should be fine as long as it doesn't blow or reach 100+ C

    For a career in Medical Coding:Degree or Certificate?

    I've been considering a career in the Medical Billing and Coding field for a while now.I know that the most important thing is that I get certified,but to get certified,I need the proper education.This is where I have a problem:Should I take a class that would give me an associates degree in medical coding,or should I take a class that would give me a certificate?





    I'm just not sure if it matters.It seems as though both courses would provide me with the education I'd need to get certified,but I want to be certain.





    Does it matter?If so,is a a certificate better than a degree?Or is it vice versa?Or are they both equally acceptable?For a career in Medical Coding:Degree or Certificate?
    idk but im getting a certificate in billing and coding %26amp; medical assisting

    Please help with this matlab coding!?

    what is wrong with this line of code? Its something with the dot division i think :[[


    I will rate! please help!


    v=0:5:1000;


    T=70:5:320;


    R=8.31


    M=0.032


    P=4.*pi.*(M./(2.*pi.*R.*T)).^(3/2).*v.鈥?br>




    Its screwing up where im defining P...im pretty sure its in the exponentiation areaPlease help with this matlab coding!?
    You must use X and Y for calculate P, let麓s redefine the names:





    ...


    [vm, Tm] = meshgrid(v,T);


    P=4.*pi.*(M./(2.*pi.*R.*Tm)).^(3/2).*v鈥?br>

    mesh(vm,Tm,P);


    ...





    for use mesh, vm, Tm and P must be matrices of same size.

    Can anyone help me with coding? preferably rs2 private servers!?

    Hi, my name is Alec. and i have been fascinated by coding for a while now and im looking for a tutor. I would like to start off with coding rs2 private servers also known as runescape private servers. I would prefer learning over msn. My msn is cool90sup00@hotmail.com.. And yes i have the windows live messanger. So if you could help me at all and or tutor me ( experienced person ) I would GREATLY apreciate it!!! ( P.S. im free all day for 3 months temperarily )Can anyone help me with coding? preferably rs2 private servers!?
    I don't have time to be a full time tutor but the best place to start for web programming is w3schools.com. You don't need a sever you can run one on your pc. This will turn your personal computer into a server: http://www.wampserver.com/en/download.ph鈥?/a>





    Install that and start it up.


    Then add a file named index.php to the C:/wamp/www directory on your computer. Open a browser window, and type local host. this will load that file like its your own personal website. IN the file open it using text pad or better yet Aptana (its free). and type


    %26lt;h1%26gt;THIS IS MY WEBSITE%26lt;/H1%26gt; save it then open that local host in your browser (firefox IE what ever)


    And your off to the races





    Start with the HTML tutorial on W3Schools.com then work up to php and Javascript. you need HTML as a base before moving onCan anyone help me with coding? preferably rs2 private servers!?
    I can try to help right now. Since I am familiar with RSPS, (because I used to play on them) i know how they work. I used to spend my time decompiling runescape java files in order to see how it works.. Anyway, this is what I would do. Find a runescape private server. Right click and click view source. Find the .class or .jar. If they're isn't a .jar get the .class, and vice versa. Download them by entering the link in your browser and save it to your desktop. Next, save the viewed page source as a .html and link the .jar file to the file you just downloaded. Upload both files and boom. Since the people cracking the runescape servers are erasing codes to only make it work on runescape you will be able to use it as well. If you would like to make your own banner for the private server, that's another story. I'm sure there's a tutorial somewhere on the web.


    -Good Luck!


    -Aus
  • hair shampoo
  • printer toner
  • caption
  • facial scrub
  • Whats's wrong with my coding?

    #include%26lt;stdio.h%26gt;


    int PrintToZero(int *num)


    {


    int val = *num;


    for(val %26gt;= 0; val--)


    printf(';\t%d';,val);


    }


    main()


    {


    int *n;


    printf(';enter num: ';);


    scanf(';%d';,%26amp;n);


    PrintToZero(int *n);


    getch();








    }





    it doesn't work.








    if a enter no 10





    it will show: 10 9 8 7 6 5 4 3 2 1 0





    but i cant do it. pls help me.....Whats's wrong with my coding?
    Your for loop looks suspect:





    for ( int val = *num; val %26gt;= 0; val-- )Whats's wrong with my coding?
    use for loop as :


    for(;val%26gt;=0;val--)
    I'm not too good at C, but it looks like you should be declaring





    int n;





    and not





    int *n;





    but otherwise it looks good to me.





    One more more error; your for loop should be


    for(;val%26gt;=0;val--)





    (Notice the ; at the start)
    I don't see why you are using pointers, while you can easily programm it without it; I'll sum some faults you've made ;-)





    * your for-loop should have 3 parameters, when you leef the first one blank, you should set a ';'





    *In the main-function, you shouldn't declare n as a pointer to int. just declare it as a int





    *when you call for the function PrintToZero, you should give 'n' as parameter, not int *n, because its allready declared ;-)





    I'll show you the code now, without pointers.; If you need more help, mail me





    #include%26lt;stdio.h%26gt;





    int PrintToZero(int val)


    {


    for(;val%26gt;=0;val--)


    {


    printf(';\t%d';,val);


    }


    }





    int main(void)


    {


    int n;


    printf(';Enter Number :';);


    scanf(';%d';,%26amp;n);


    PrintToZero(n);





    return 0;


    }

    C++, help me check my coding! ?

    I encounter error on this multiple source program and i cant track down the error..help plz!!





    //header.h





    #include';video.cpp';





    char selection(char n)





    //mainVideo.cpp





    #include%26lt;iostream%26gt;


    #include%26lt;cstdlib%26gt;


    using namespace std;





    #include';header.h';





    main()


    {


    int pwd;


    char n;





    cout%26lt;%26lt;';\t .:: Welcome to AJ Video Store System ::.';%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;





    cout%26lt;%26lt;';Enter your password: ';;


    cin%26gt;%26gt;pwd;





    if (pwd = 1234)


    {


    cout%26lt;%26lt;';Successful log in!';%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;





    cout%26lt;%26lt;';\t .:::: Video Store System Menus ::::. ';%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;





    cout%26lt;%26lt;'; A) Add a new video record ';%26lt;%26lt;endl;


    cout%26lt;%26lt;'; B) Exit ';%26lt;%26lt;endl;





    cout%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;





    cout%26lt;%26lt;';Please enter your menu: ';;


    cin%26gt;%26gt;n;





    system(';CLS';);





    n = selection();


    }





    else


    { cout%26lt;%26lt;'; Incorrect Password!';%26lt;%26lt;endl;


    }





    return 0;





    }





    //video.cpp





    char selection (char n)





    {


    switch(n)


    {


    case 'a' : case 'A':


    cout%26lt;%26lt;'; case A';;


    break;





    case 'b': case 'B':


    return 0;





    default:


    cout%26lt;%26lt;';Please select the appropriately la.';;


    }


    }


    C++, help me check my coding! ?
    You were missing a semi-colon a couple of lines up. The line that was defining the function ';selection';.


    You have a lot of unnecessary lines in the code. As examples, you have #include ';video.cpp';, which is this file itself. You shouldn't do a recursive include of the implementation file itself.


    You missed passing a parameter to the ';selection'; function when it was actually used.


    Also, you missed a few spaces in the code. Please try and use adequate spacing not only to make the code more readable, but easier to debug where errors are.


    Here is the corrected code that I tested compilation with:





    // video.cpp





    #include %26lt;iostream%26gt;


    #include %26lt;cstdlib%26gt;


    using namespace std;





    char selection(char n);





    main()


    {


    int pwd;


    char n;





    system(';CLS';);


    cout %26lt;%26lt; ';\t .:: Welcome to AJ Video Store System ::.'; %26lt;%26lt; endl;


    cout %26lt;%26lt; endl;





    cout%26lt;%26lt;';Enter your password: ';;


    cin%26gt;%26gt;pwd;





    if (pwd = 1234)


    {


    cout %26lt;%26lt; ';Successful log in!'; %26lt;%26lt; endl;


    cout %26lt;%26lt; endl;


    cout %26lt;%26lt; endl;





    cout %26lt;%26lt; ';\t .:::: Video Store System Menus ::::. '; %26lt;%26lt; endl;


    cout %26lt;%26lt; endl;





    cout %26lt;%26lt; '; A) Add a new video record '; %26lt;%26lt; endl;


    cout %26lt;%26lt; '; B) Exit '; %26lt;%26lt; endl;





    cout %26lt;%26lt; endl;


    cout %26lt;%26lt; endl;





    cout %26lt;%26lt; ';Please enter your menu: ';;


    cin %26gt;%26gt; n;





    system(';CLS';);





    n = selection(n);


    }





    else


    { cout %26lt;%26lt; '; Incorrect Password!'; %26lt;%26lt; endl;


    }





    return 0;





    }





    //video.cpp





    char selection (char n)


    {


    switch(n)


    {


    case 'a' : case 'A':


    cout %26lt;%26lt; '; case A';;


    break;





    case 'b': case 'B':


    return 0;





    default:


    cout %26lt;%26lt; ';Please select the appropriately la.';;


    }


    }


    C++, help me check my coding! ?
    So you are calling your function that you named selection... that you said would return a char... and you are setting a char you named n to be the result of your function call. 2 flaws I see with that.





    First, your function doesn't return the right data type(not intuitively anyways) So fix that. Either declare it as returning an int, or change what it returns or change it to void and return nothing.





    Second, where the real problem with your program is, you said selection would take one argument. Exactly one argument. Yet you never give it one argument. So how can it know what selection the user actually made?





    // pass argument


    selection(n);





    // fix function declaration(in both places)


    void selection(char n)





    EDIT





    Make that 3 errors then. You don't have a semicolon after your function header.





    Also, save yourself future headaches and organize your includes more consistently.





    #include %26lt;iostream%26gt;


    #include %26lt;cstdlib%26gt;


    #include ';header.h';


    #include ';video.cpp';


    using namespace std;





    Put the function header for your selection function in header.h, or after your includes. If video.cpp uses this function, put it in header.h You would then #include ';header.h'; in both source files.
    include';video.cpp';





    char selection(char n);





    //mainVideo.cpp





    #include%26lt;iostream%26gt;


    #include%26lt;cstdlib%26gt;


    using namespace std;





    #include';header.h';





    main()


    {


    int pwd;


    char n;





    cout%26lt;%26lt;';\t .:: Welcome to AJ Video Store System ::.';%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;





    cout%26lt;%26lt;';Enter your password: ';;


    cin%26gt;%26gt;pwd;





    if (pwd = 1234)


    {


    cout%26lt;%26lt;';Successful log in!';%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;





    cout%26lt;%26lt;';\t .:::: Video Store System Menus ::::. ';%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;





    cout%26lt;%26lt;'; A) Add a new video record ';%26lt;%26lt;endl;


    cout%26lt;%26lt;'; B) Exit ';%26lt;%26lt;endl;





    cout%26lt;%26lt;endl;


    cout%26lt;%26lt;endl;





    cout%26lt;%26lt;';Please enter your menu: ';;


    cin%26gt;%26gt;n;





    system(';CLS';);





    n = selection();


    }





    else


    { cout%26lt;%26lt;'; Incorrect Password!';%26lt;%26lt;endl;


    }





    return 0;





    }





    //video.cpp





    char selection (char n)





    {


    switch(n)


    {


    case 'a' : case 'A':


    cout%26lt;%26lt;'; case A';;


    break;





    case 'b': case 'B':


    return 0;





    default:


    cout%26lt;%26lt;';Please select the appropriately la.';;


    }


    }
    try correcting the statement:n = selection();


    to: selection(n);
    What's the error message?

    Can someone help me with coding for this.?

    The following activity involves properties of trigonometric and exponential functions.





    1. Write a VBScript to make a bouncing ball move across the screen. The movement of the ball is modelled by taking a sine wave [ A sin(wt) ] with a decreasing amplitude [ put A = exp(-kt) ] for chosen values of w and k. To model the bounce, the absolute value is taken of the whole expression [ abs(A sin(wt)) ]. You will need to scale the equation appropriately so that it displays properly on the web page.





    Your script should give a choice of values of w and k via buttons on the page, and one button should revert to the default setting where the ball takes one second for each bounce, and halves its height at each bounce.





    [Note 鈥?this is not a physically accurate model for a bouncing ball, but is chosen to Illustrate the use of the sin and exp functions]





    If you help me out with this i will give you a lot of points.Can someone help me with coding for this.?
    Southampton solent university is a **** university my life was so **** i was studying law after first year,i failed because of people and no support lecturers because of my medical condition.Isuggest go to another uni and start again dont let your life turn go bad becase of those **** people.

    Can you help me with coding?

    Okay,


    you know how in order to place certain things on your myspace,etc. you have to use a code? Well,I want to know how to read them so I can place and replace certain things inside that code without deleting all the other things on my page and starting all over again (like I ALWAYS have to!)


    I began separating codes by placing these inside the boxes ';~'; or ';*'; and it doesn't look good on my profile.


    Can you PLEASE help me with reading the coding??!!


    Coding,you know,such as


    %26lt;br%26gt;


    %26lt;style%26gt;


    and etc. Thank youCan you help me with coding?
    If you need to know what some specific code means, email it to me at marshmallow1304@yahoo.com

    Tell me to create class (coding) in c#.[any site name]?

    i have find to how we create a class in to c#.Tell me to create class (coding) in c#.[any site name]?
    This is a Sample class





    using System;


    public class Sample {


    private int x;


    public Sample() { } //Constructor


    pubilc void Method1() { //Method


    }


    }





    to get an overview of the C# language follow this link http://www.codeproject.com/csharp/quickc鈥?/a>





    There are many good websites to learn C#. In my openion 'Codeproject[ http://www.codeproject.com/csharp/ ]' is the best. However 'CSharpCorner[ http://www.csharpcorner.com/ ]' is also a good websiteTell me to create class (coding) in c#.[any site name]?
    If I could, I would have uploaded a file which contains detailed explaination for this.





    Now you can get it from this link





    http://www.geocities.com/omer_akhter/cla鈥?/a>
    class is made by the keyword class. The visibility mode can be public, private and protected like


    class student


    {


    private:


    int x, y;


    }





    Classes can be understood only through good study.....


    Herbet Schild, Balaguruswamy, Robert Lafore, etc.. are good books!!


    Best of luck!!


    Happy studing
    If u know Java, u can use the same syntax.





    class Simple{


    int a;


    public :void disp(){


    System.Console.WriteLine(';This is a Sample Program';);


    }


    };





    public static void main(String [ ] args){


    Simple s=new Simple();


    s.disp();


    }

    Choosing a major? Accounting? Medical Coding? Real Estate?

    I am currently in school to be a cosmetologist I have 2 months left.. However its not what I thought it was going to be.. I do love it and will continue to do it but I would like to have something else to fall back on or maybe vise versa with hair I have been doing some researching and having a really hard time figuring something out! I would like something that doesn't take long (2 yrs or less) and maybe something like an office job.. I am HORRIBLE at math however I heard accounting only uses basic math but considering algebra almost stopped me from graduating high school that probably wouldn't be my best choice! I have been looking stuff up and I ran across medical billing and coding.. I have never heard of this before.. Is it hard (school and job)? What would I be required to do? What is other security/office jobs called? I don't want to do anything in the medical field as far as nurse ect.. I am squeamish! I don't want to do something that is terribly difficult as I am not the smartest apple on the tree! I also LOVE the real estate business.. I love homes and decorating ect.. interior design is not an option as it is not very stable or at least it wouldn't be around here.. is there a degree to be an appraiser or real estate agent? Is it hard? Any answers are appreciated!Choosing a major? Accounting? Medical Coding? Real Estate?
    Find something you LOVE. I became an accountant because it paid well. And it has, but I hate it. I hate the 9-5 routine and the cubicle environment. Go for your cosmetologist license and maybe your real estate license. Real estate would be fun. Maybe not now in this economy but things will change. Plus if you have an eye for decorating, this may be your thing. You can make a lot of money at it.
  • hair shampoo
  • printer toner
  • triamcinolone cream
  • facial scrub
  • Javascript problem: Any suggestions for coding this?

    Susie enters a hallway at school with 100 lockers numbered 1-100. She goes down the hallway and opens all of the lockers beginning with locker 1 and ending with locker 100. She goes down the hallway again beginning wth locker 1 and ending with locker 100- this time, for every locker that has a number that is a multiple of 2 she closes the locker. She is going down the hallway again beginning wiht locker 1 and ending with locker 100 - this time, for every locker that has a number that is a multiple of 3 she closes the locker if it is open and opens the locker if it is open and opens the locker if it is closed. She repeats this process again for multiples of 4, 5, 6... all the way up to 100.Javascript problem: Any suggestions for coding this?
    %26lt;html%26gt;


    %26lt;head%26gt;


    %26lt;!--


    No matter which you select


    as ';best answer'; - pick one.


    --%26gt;


    %26lt;style%26gt;


    td.locker {


    border: 1px solid black;


    color: white;


    background-color: black;


    font-family: Arial, sans-serif;


    font-size: small;


    text-align: center;


    width: 70px;


    }


    %26lt;/style%26gt;





    %26lt;script%26gt;


    function get(eid) {


    var d = document;


    var r = d.getElementById(eid);


    return r;


    }





    var lockers = new Array();





    function initLockers() {


    for (var i = 1; i %26lt; 101; i++) {


    lockers[i] = 'closed';


    }


    }





    function closeLocker(i) {


    get('L' + i).style.color = 'white';


    get('L' + i).style.backgroundColor = 'black';


    }





    function openLocker(i) {


    get('L' + i).style.color = 'black';


    get('L' + i).style.backgroundColor = 'white';


    }





    var passNumber = 0;





    function doPass() {


    passNumber++;


    if (100 %26lt; passNumber) {


    alert('pass 100 already done - resetting all to initial state - click ';pass'; button again to make first pass');


    initLockers();


    for (var i = 1; i %26lt; 101; i++) {


    closeLocker(i);


    }


    passNumber = 0;


    }


    for (var i = 1; i %26lt; 101; i++) {


    if (0 == i%passNumber) {


    if ('open' == lockers[i]) {


    lockers[i] = 'closed';


    closeLocker(i);


    }


    else {


    lockers[i] = 'open';


    openLocker(i);


    }


    }


    }


    reportPass(passNumber);


    }





    function reportPass(p) {


    get('rptPass').innerHTML = 'pass number = ' + p;


    }





    initLockers();


    %26lt;/script%26gt;


    %26lt;/head%26gt;


    %26lt;body%26gt;


    %26lt;table%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L1';%26gt;locker 1%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L2';%26gt;locker 2%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L3';%26gt;locker 3%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L4';%26gt;locker 4%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L5';%26gt;locker 5%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L6';%26gt;locker 6%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L7';%26gt;locker 7%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L8';%26gt;locker 8%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L9';%26gt;locker 9%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L10';%26gt;locker 10%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L11';%26gt;locker 11%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L12';%26gt;locker 12%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L13';%26gt;locker 13%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L14';%26gt;locker 14%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L15';%26gt;locker 15%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L16';%26gt;locker 16%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L17';%26gt;locker 17%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L18';%26gt;locker 18%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L19';%26gt;locker 19%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L20';%26gt;locker 20%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L21';%26gt;locker 21%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L22';%26gt;locker 22%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L23';%26gt;locker 23%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L24';%26gt;locker 24%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L25';%26gt;locker 25%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L26';%26gt;locker 26%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L27';%26gt;locker 27%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L28';%26gt;locker 28%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L29';%26gt;locker 29%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L30';%26gt;locker 30%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L31';%26gt;locker 31%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L32';%26gt;locker 32%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L33';%26gt;locker 33%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L34';%26gt;locker 34%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L35';%26gt;locker 35%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L36';%26gt;locker 36%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L37';%26gt;locker 37%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L38';%26gt;locker 38%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L39';%26gt;locker 39%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L40';%26gt;locker 40%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L41';%26gt;locker 41%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L42';%26gt;locker 42%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L43';%26gt;locker 43%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L44';%26gt;locker 44%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L45';%26gt;locker 45%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L46';%26gt;locker 46%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L47';%26gt;locker 47%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L48';%26gt;locker 48%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L49';%26gt;locker 49%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L50';%26gt;locker 50%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L51';%26gt;locker 51%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L52';%26gt;locker 52%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L53';%26gt;locker 53%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L54';%26gt;locker 54%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L55';%26gt;locker 55%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L56';%26gt;locker 56%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L57';%26gt;locker 57%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L58';%26gt;locker 58%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L59';%26gt;locker 59%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L60';%26gt;locker 60%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L61';%26gt;locker 61%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L62';%26gt;locker 62%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L63';%26gt;locker 63%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L64';%26gt;locker 64%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L65';%26gt;locker 65%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L66';%26gt;locker 66%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L67';%26gt;locker 67%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L68';%26gt;locker 68%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L69';%26gt;locker 69%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L70';%26gt;locker 70%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L71';%26gt;locker 71%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L72';%26gt;locker 72%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L73';%26gt;locker 73%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L74';%26gt;locker 74%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L75';%26gt;locker 75%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L76';%26gt;locker 76%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L77';%26gt;locker 77%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L78';%26gt;locker 78%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L79';%26gt;locker 79%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L80';%26gt;locker 80%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L81';%26gt;locker 81%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L82';%26gt;locker 82%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L83';%26gt;locker 83%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L84';%26gt;locker 84%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L85';%26gt;locker 85%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L86';%26gt;locker 86%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L87';%26gt;locker 87%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L88';%26gt;locker 88%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L89';%26gt;locker 89%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L90';%26gt;locker 90%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;tr%26gt;


    %26lt;td class=';locker';


    id=';L91';%26gt;locker 91%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L92';%26gt;locker 92%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L93';%26gt;locker 93%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L94';%26gt;locker 94%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L95';%26gt;locker 95%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L96';%26gt;locker 96%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L97';%26gt;locker 97%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L98';%26gt;locker 98%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L99';%26gt;locker 99%26lt;/td%26gt;


    %26lt;td class=';locker';


    id=';L100';%26gt;locker 100%26lt;/td%26gt;


    %26lt;/tr%26gt;


    %26lt;/table%26gt;


    %26lt;form%26gt;


    %26lt;input type=';button'; value=';make a locker pass'; onclick=';doPass();'; /%26gt;


    %26lt;form%26gt;


    %26lt;div id=';rptPass';%26gt;no passes made yet%26lt;/div%26gt;


    %26lt;/body%26gt;


    %26lt;/html%26gt;

    COD Call of duty 5 PC separate screen 2 player multiplayer?

    I've always wondered if this was possible not just with call of duty 5 but with any other split screen multiplayer game. I have a dual graphics card that can output to 2 monitors/tv screens. Is it possible for a split screen game on the PC or even PS3 to let each player play on a separate screen without it being split. I just hate the fact that its squashed and that people can look at each others screens so that they can cheat. COD Call of duty 5 PC separate screen 2 player multiplayer?
    Check this out:





    http://pcsplitscreen.freehostia.com/Cod%鈥?/a>





    It's the closest thing I could find. Tested and it works, but I can't seem to set it up well with two mouses . Still trying !





    You should go and buy a console if you want to play split screen. It's what I'm going to do on Christmas.

    What should I wear to Cape Cod?

    Can you please make me an outfit to wear to Cape Cod! I am 12 and I like Hollister, American Eagle, Abercrombie, and Aeropostale. Thanks!What should I wear to Cape Cod?
    http://www.polyvore.com/cgi/appWhat should I wear to Cape Cod?
    how can some one plan you an outfit with out knowing what you wear like what you have for clothes..
    Then how is it hard to find an outfit??


    All Hollister, A%26amp;E Ab, and aero clothes are the same...just pick a top and bottom...





    When you have a specific style is when its difficult to find and outfit.
    i dont know what your style is so i pulled some stuff you can choose from,





    top:





    http://www.hollisterco.com/webapp/wcs/st鈥?/a>





    either one of thes tops would be good.








    bottom:





    http://www.hollisterco.com/webapp/wcs/st鈥?/a>





    these shorts are really really cute. (: and they would go with any of those shirts.





    shoes:





    just wear some gladiator snadels or some flip flops.


    perferably old navy flip flops if you have any.





    (:





    sorry if its too much hollister, but i dont really shop


    at any of the other stores. and at least you wont


    have to go to a billion stores just to find something


    to match with the tops or shorts.

    Who is your favorite Character from the Shi No Numa zombie mode from COD WaW?

    Mine is Nikolai.';This is the weapon i used to kill my first wife!'; LmaoWho is your favorite Character from the Shi No Numa zombie mode from COD WaW?
    nikolai or takeo... takeo cracks me up when he says '; you have been screwwwwwwwwed into pieces'; hahaWho is your favorite Character from the Shi No Numa zombie mode from COD WaW?
    same i love nikolai thts my favorite quote to lol


    i also like how he talks about vodka all the time

    How come there is only a cod:WaW beta only on 360 and pc but not the ps3?

    I bet Microsoft payed them extra to make it only for 360 and PCHow come there is only a cod:WaW beta only on 360 and pc but not the ps3?
    i read this somewhere. they said they werent focussing it on the ps3 cuz its pointless. anyways why would microsoft pay extra just for a beta release.





    How come there is only a cod:WaW beta only on 360 and pc but not the ps3?
    donno the beta part of it but CoD:WaW is still on ps3 http://en.wikipedia.org/wiki/Call_of_Dut鈥?/a>
    Because the people that made COD5 are gay and dislike PS3!


    maybe because ps3 is focusing on betas such as LBP and R2 (which i have!!!)
    Microsoft be hating cause we got the sickest betas out there.





    Microsoft even paid for Gears of War to be a 360 exclusive.
    I was going to say what Carlito said.

    Purple and green to cape cod/beachy style?

    i can't get new furniture, so i have to work with what i have. army green chair and a half and ottoman, dark purple sofa, and purple side chair. my tv armoire and console table is dark, almost a mohagany and i plan on painting the walls a taupey color. drapes are a goldish-tan chenille fabric.





    any ideas of how to use these pieces to create a cape cod/hamptons look? i'm not sure i can afford slipcovers, but i do want to purchase a new rug.Purple and green to cape cod/beachy style?
    I would paint the walls a creamy ivory. It sounds like the rest of your things are dark colors, and I would want to off-set this with a lighter color. Some taupes tend to look ';muddy,'; and I don't think this is what you want.





    For a cottage-y look, you might try a natural sisal area rug. Add some throw pillows for the sofa. Since your pieces are solids, you can go for a print or stripe, picking up the green and purple shades. You could throw in a few solids in a hue close to your drapes, or use this in your prints/abstract/stripes for the pillows.





    I always think of the Cape Cod look as light colors - blues, whites, creams, yellows, etc. So you may want to work with what you've got and try to create a beachy, casual look. Stack some good-looking books on your coffee table, and top them with a nice big shell. Candles in holders or wall sconces will add ambience and a nice glow to your room.





    It's fine to work with what you have. Few of us can afford to do otherwise. But you can make your room attractive with well-chosen accessories.Purple and green to cape cod/beachy style?
    My best suggestion is to go to your library %26amp; check out a book or 2 on interior decorating . My favorite book for this is called '; Colors for your every mood '; by Leatrice Eiseman (ISBN : 1-892123-38-X ) she helps you understand the colors %26amp; how they affect you %26amp; some on placement. You can also get great books from Home Depot on decorating (ie ';Trade Secrets';)) to purchase or do as I do - look thru it get the ideas %26amp; put book back on shelf.


    The colors you have suggest that you can decorate in ';complementary colors'; those are colors on opposite sides of the color wheel. You might consider painting the walls cream or a white with hints of green .
    you might pick up some ideas here


    http://mariesmanordecorating.com/beach/s鈥?/a>
  • hair shampoo
  • printer toner
  • triamcinolone cream
  • facial scrub
  • When Bush stated ';America is addicted to oil';, was he sending a coded message to his oil backers?

    Because he sure hasn't done one thing to alter that reality.When Bush stated ';America is addicted to oil';, was he sending a coded message to his oil backers?
    He was simply trying to make his Halliburton Corp. buddies in Iraq smile.When Bush stated ';America is addicted to oil';, was he sending a coded message to his oil backers?
    and the aliens have a space base on the dark side of the moon. come one, oil dependence is going extinct, stop with the oil rhetoric
    Actually the speech was on alternate energy sources Boy you are really lacking tonight
    What did he mean when he said ';Americans will learn to do without'; G.W Bush ?
    Didn't he say that same thing 7 years ago in another speech? And every year since becoming President? He doesn't need to send them a message they already know it.
    No conspiracies or coded massages here - Bush was just stating the obvious.


    America IS addicted to oil - in every aspect of our lives and especially in our economy.


    And if you're looking for alternative energy sources, you can bet the farm they won't be forth coming from the likes of Exxon/Mobile $$$$$$$$$$$$.
    You got that right!
    Once again the uneducated liberal masses expect Bush to wave his magic wand and create pixie dust powered SUVs.





    Give reality a chance.. you might like it.
    I don't know if was sending a message to his oil backers, but I'm sure the oil cartel understands that it needs to continue to feed Americans' addiction to black gold. Without it, we might actually have to walk to work, use paper or canvas shopping bags, and turn our thermostats down in the winter! -RKO- 09/20/07
    He was just paying lip service to the American people like he always does....His family made a lot of their money in oil...He has a vested interest in the oil business. Anyone who thinks he's going to do anything of any significant value to reduce how much money the oil industry makes of this country is incredibly nieve....I can't wait til the moron is out of office....


    Worst president ever!!!!
    nothing coded about it


    he is as arrogant as he is incompetent


    his texas buddies keep on smoking those cuban cigars and laughing all the way to the bank








    i cannot believe some of you guys think there are no alternatives to oil burning combustion engines


    do you not know that when something is invented the oil companies buy the patents and put the technology in the drawer for later


    there is too much money to be made


    wake up and smell the roses before the greenhouse gases make them disappear
    he comes from a big oil back ground, conda sleeza rice used to work for exxon, there is a sea going tanker named after her , cheney worked for halliburton, what coded message would they be sending?they are running the whole g*********M thing , there is no reason to sneak around ..


    and yes we are addicted to oil , because there is no alternitive ,I can not ride my bike 30 miles to work every day


    no mass transit to speak of, other than busses in urban areas, and no real fuel alternitive...
    Not really coded, the oil companies know this.





    But what would you have him do? Outlaw oil?





    Every society on earth has always needed a souce of power. Oil is what we have now. Someday, we may use something else.





    Oil is a beneficial product. Everyone in the world is kept alive with it.





    Love, Jack
    No, Bush doesn't play those games. The ONLY coded message that I know of from the President of the United States of America was when slick willey wiggled his tie during a national television broadcast which was a signal to Monica that he was thinking about her. You know, the intern that he used to cheat on his wife and the first lady of this country. POOR FORM.
    no but if the libs would let us drill more here we would have more oil but all the crazy environment radicals stop us
    America isn't addicted to oil, it has no choice but use oil since the automobile has not advanced in technology in the last 80 years, except for the hydrogen cars that appear for a day then disappear the next.





    Who killed the electric car?

    What is the protein molecule coded for by this piece of mRNA: CUCAAGUGCUUC?

    This is another question for the practice test I'm working on.





    What does the mRNA strand CUCCAAGUGCUUC code for?


    a.Ser-Tyr-Arg-Gly


    b.Val-Asp-Pro-His


    c.Leu-Lys-Cys-Phe


    d.Pro-Glu-Leu-Val





    Any ideas? Please help if you can. Thanks!What is the protein molecule coded for by this piece of mRNA: CUCAAGUGCUUC?
    CUC = Leu


    AAG = Lys


    UGC = Cys


    UUC = Phe


    So your answer would be (C)





    remember the three nucleotides in an mRNA codon are coded designated, respectively, as the first position. You must always have three,

    Which is better cod4 or cod world at war?

    i wanna get 1 of those for the ps3 but idk which 1 so help me out


    -which has better graphics?


    -which is more addicting to u?


    -which has better online play??if cod4 is there still lots of ppl that play online?Which is better cod4 or cod world at war?
    Graphics are about the same - they are built on the same engine.





    I like the campaign of World at War better, but the multiplayer of Modern Warfare more. Never have a problem finding a game on the 360.Which is better cod4 or cod world at war?
    -cod4 has better graphics because cod5 added an old style to it.





    -cod4 online is more addicting but cod5 nazi zombies is more addicting.





    -probably the same amount play both.





    -cod4's campaign is better.





    -cod5 has tanks.





    -cod4's weapons are way better.





    Cod5 is worth it just for nazi zombies but if your not looking to play that then get 4.





    OR you can w8 until november and get modern warfare 2 which is rumored will have a new version of nazi zombies... alien terrorists.
    which has better graphics?





    ---- Both are built on the same engine, so they both look very very similar, however Call of Duty 4 looks a little more polished because the textures look a little bit sharper.





    which is more addicting to u?





    ---- Call of Duty 4 is more addicting because of the online play.





    which has better online play??if cod4 is there still lots of ppl that play online?





    ---- Call of Duty 4 takes this one no problem, yes a lot of people still play it.








    In my opinion, both of the games are very good.





    Call of Duty 4 has better online play, however Call of Duty - WaW has much better single player campaign.
    Better graphics: Ehh, probably WaW, they're not insanely different, but since it's newer the graphics are a bit better.





    More addicting: CoD4





    Better online: CoD4. Hundreds of thousands of people still play.
    COD 4 is better. Cod 5 is annoying. Nazi Zombies is not that great.
    CoD4 has good story and good online play but world of war beats CoD4 on all your points.





    Buy them both! :)
    yeah COD4 is alotttta fun

    Will there be zombies in COD modern warfare 2?

    I want to buy COD WaW cause i love the game nazi zombies, but i dont want to buy it if the new COD will have them since everyone will play that one- probably?





    anyone got any idea?Will there be zombies in COD modern warfare 2?
    I highly doubt it. Modern Warfare 2 technically isn't Call of Duty anymore. Infinity Ward, the creators of the series, dropped the COD title in order to pursue the Modern Warfare franchise. Treyarch, creators of COD: WAW and COD 3, are the ones that came up with the zombie idea, and will be carrying on the Call of Duty name. So, count on the next one...COD 6, to have zombies, not Modern Warfare 2.Will there be zombies in COD modern warfare 2?
    Infinity War did not drop the Call of Duty title. The game, currently reads (on the box), Call of Duty: Modern Warfare 2. Report Abuse

    No.
    not sure. i read the full article on COD MW2 in GameInformer, it didn't say whether or not it would have nazi zomebies. I hope there is something different though. i didn't really like the zombie game that much.
    No. Robert ';402'; Bowling, Community Manager of Infinity Ward has confirmed they will not take any pages out of Treyarch's books. There will be Special-Ops, however that is nothing like Nazi Zombies.
    no


    treyarch is not making MW 2


    and infinity ward has already said they will include the Spec Ops mode


    which will be MW 2's co-op
    MW2 will not have nazi zombies. their replacement for it will be Spec Ops mode.
    I heard you will fight Aliens, just a rumor though...

    Is the Wii version of CoD: World at War any good?

    I know its a bit watered down, but is it still good?Is the Wii version of CoD: World at War any good?
    According to the reviews, yes. They also say the gameplay is superior.Is the Wii version of CoD: World at War any good?
    no because its alot harder to shoot with the wii then the 360 go with the 360 trust me. cna you put this as your best answer please.

    Can I have a COD 4 multi-player LAN party on PS3?

    I have 2 systems, 2 tvs, 8 controlers, 2 games and 8 people.





    I want to play call of duty 4 with all of them, 4 on one system 4 on the other.


    I can play multiplayer, but I can only get one person on each console. Can someone help me?


    Can this be done, and how?Can I have a COD 4 multi-player LAN party on PS3?
    Yes, just have your PS3's be close together and go to Lan Party something like that and connect your 4 people party with the other 4 people party.Can I have a COD 4 multi-player LAN party on PS3?
    i think u can but i never tried it but it should be able to be done just keep tryiig
    i believe it is able to be done
  • hair shampoo
  • printer toner
  • triamcinolone cream
  • facial scrub
  • I just completed Mile High Club achievement on Veteran in COD 4?

    That is the hardest thing ive even done in a video game.I just completed Mile High Club achievement on Veteran in COD 4?
    good job


    one you get it


    you just feel so proud hehe


    it took me like 2 hoursI just completed Mile High Club achievement on Veteran in COD 4?
    I have come VERY...VERY close to completing that achievement. You are lucky, I think I read on Infinity Ward's website that only like 1-2% of people that have played COD4 have gotten that. Congrats.
    cool

    How do you do the its a tarp achievement on cod 5?

    my friend and i want to get this achievement but we dont how 2 so if anyone can help us plz and thank uHow do you do the its a tarp achievement on cod 5?
    You mean ';It's a Trap!';? I think that's on Shi No Numa. You have to kill zombies with three traps. One is the Flogger. I think you can then either kill zombies with two different Electroshock Defenses or 1 Electroshock Defense and 1 with the Zipline.





    Hope this helped!How do you do the its a tarp achievement on cod 5?
    there is no such thing but i don't think anyone has achieved it SOL

    How can I help my kill to death ratio in COD 4????

    My kill to death ratio is like 0.55 right now. How can I improve that. I get tons of kills each round but I also die a lot. I tried camping out but I hardly get any kills that way. I am a level 51 right now but have a bad kill to death ratio.(Xbox 360) Any suggestions pleese!!!!!!!=)How can I help my kill to death ratio in COD 4????
    if you die alot


    use either noob tubes or 3 frags as the first perk and martydom or last stand as the third








    this way you maximize your chance of a least breaking even each time you die. sometimes with the noob tube and minimal skill u can make your kill to death ratio 2:1 b/c the tube can kill even the best players if shot right.





    With 3 frags you can just lobs grenades and get ';random'; grenade kills.





    Martydom gives you the chance to get a kill right after you die and works great in close combat. Same with last stand. people sometimes dont finish off their kills leaving you to rack up a few easy last stand kills.





    kill to death is overrated in some situationsHow can I help my kill to death ratio in COD 4????
    ur the same way i am i take it run and gun a lot make sure ur never off guard if u need to reload find a new gun or run to a hidden place and reload but be ready to lay on the trigger if some1 comes up always carry a decent second weapon never have the pistol as soon as u can find a decent gun for back up i use stopping power to give me that extra pack of power with my shots so im never caught with my pants down hope this helps
    try playin mercenary deathmatch. cause it doesnt allow teams so clans cant gang up on you if that doesnt help than play everyday like youre used to and sooner or later youll get better