Is it true if i apply for a credit card and get rejected, my credit score will be lowered?

I want to apply for an American Express Blue Cash card. I’m 21 and I don’t know my credit score as of right now. I have one credit card right now with 0 balance from Bank of America. Should I apply for the AMEX card?


Related Blogs

I don't know my Credit Score.I want to apply for 0 APR and 0 Annual Fee Visa Credit Card.?

May i get an application form by mail to get 0 APR & 0 Annual Fee VISA Credit Card ? I am confused to fill online application.


Related Blogs

How hard is to recover from bad credit card collections?

Ok if you have a credit card go into collections 6 months ago, and have another credit card that is basically maxed and you don’t wont to make the several hundred dollar a month minimum so you stop paying. In 3 months its sent to collections so you then work with the collection agencies on both cards and get them squared away. How long will it take you to get to a good rating if you do everything right with your credit from here on out. I know 7 years clears a bankruptcy, but this isn’t a bankruptcy.


Related Blogs

where can i get free ipods by selling credit cards?

i know there is a site where you can get free ipods and xbox360s and computers by signing people up for credit cards does anyone know this site?


Related Blogs

Online Credit Card Applications

www.ecreditcardworld.info Apply for a credit card online today.

Related Blogs

Should i cancel my old credit card with high interest rate!?

i recently transferred my balance from my high interest rate card 23.99% to one with 0% the old card also had an annual fee and the new card has no annual fee! now that the old card has a 0 balance should i cancel it?


Related Blogs

Is Capital One a good credit card to apply for if someone has limited credit history or mediocre credit?


Related Blogs

    Transfer credit card debt into another 0% credit card?

    I applied and received a letter stating that the process cannot go through due to same credit company but under a different name, the next day I recived my new credit card, but i don’t want it now, If my card is not activated will it show on my credit report?


    Related Blogs

    Help with credit card interest calculating program for C++(urgent!)?

    Could anyone please help me with some of the errors in this code? Here is the assignment:

    Complete programming project 6 on page 243.

    Read the description carefully, insure that you allow the user a choice to run the program or exit.

    The function prototype is:

    double interest (double initBalance, double rate, int months);

    Your initial output to the user should be something like this:

    Credit card interest
    Enter: initial balance, monthly interest rate as
    a decimal fraction, e.g. for 1.5% per month write 0.015
    and the number of months the bill has run.
    I will give you the interest that has accumulated.
    100 .1 2

    Interest accumulated = .00
    Y or y repeats, any other character quits
    y

    Credit card interest
    Enter: initial balance, monthly interest rate as
    a decimal fraction, e.g. for 1.5% per month write 0.015
    and months the bill has run.
    I will give you the interest that has accumulated.
    100 .1 3

    Interest accumulated = .10
    Y or y repeats, any other character quits
    n

    My code will come in the posts after this.

    //File Name: workshop4.zip
    //Author: Celest Guardian
    //Email Adress: cg26@students.uwf.edu
    //Workshop Number: 4
    //Description: A C++ program used to calculate the interest on a credit card balance.
    //Last Edited: October 10, 2008

    #include <iostream>
    using namespace std;

    double interest (double initBalance, double rate, int months);
    //Caluclates the interest accumulated from a credit card balance
    //from the intitial balance, interest rate, and number of months the user has had the loan.

    int main ( )
    {
    double initBalance, initAccumulated, rate;
    int months;
    char quit;

    {
    cout << "\nCredit card interest";
    cout << "\nEnter: initial balance, monthly interest rate as";
    cout << "\na decimal fraction, e.g. for 1.5% per month write 0.015";
    cout << "\nand the number of months the bill has run.";
    cout << "\nI will give you the interest that has accumulated.";

    cin >> initBalance; "\t";
    cin >> rate; "\t";
    cin >> months; "\t";

    initAccumulated = interest(initBalance, rate, months);

    cout.setf(ios::fixed);
    cout.setf(ios::showpoint);
    cout.precision(2);

    cout << "\nInterest accumulated = $" << initAccumulated;

    }

    return 0;
    }

    double interest (double initBalance, double rate, int months)
    {
    for (int i=0; i < months; i++)
    {
    double interest = initBalance * rate;

    double initBalance = initBalance + interest;
    }
    initAccumulated = initAccumulated + interest;
    return (initBalance);
    }
    Here is a the main error from the compiler:

    error: ‘initAccumulated’ was not declared in this scope

    I know I need to declare this but when I do it causes even more errors. Also, there is a logic error because the Accumulated interest is only equal to the value entered for the balance. :( Please help!
    Dear Charlie,

    *sigh* Because this much will get me an F. :( My teacher just assigned it so and it is due tonight. It is not going very well and I don’t know anyone to ask for help.
    Thanks, Mr. C but that one you have to pay for and this project is due at 11:30 central time so I really dout that I would be able to get help in time. :(


    Related Blogs

    i want to get a credit card for my small business do i use a business credit card?


    Related Blogs

      Powered by Yahoo! Answers