answersLogoWhite

0


Best Answer

chances are your compressor has seized. mine cost $1800 to have Lexus replace it. if the A/C is not run for a while the oil will come out of the freon and you are supposed to keep the idle under 1000 rpm before turning on the A/C.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you fix a Lexus es 300 1994 model that keeps blowing the airconditonerradio fuse fuse 8 you replaced it once and it lasted a day but then it blew again you reaplaced it and no result you checke?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

You want checke your intermediate result?

Your question needs clarification.


What should be checked regularly in a medical checke up?

At least once a month!


2002 jetta door ajar light won't turn off?

Mine wont either, not sure what the problem is. I checke all the doors including trunk and hood! Not sure what to do or why its doing it?


How was forks of a bike made?

Just like anything similar would be produced. Parts are cut, trimmed to fit, then joined together. After being checke over, they'd go to be painted, if required.


What does a cat have when it has a bloody nose and sneezing I adopted a kitten and he had a respiratory infection took him back and he was treated for 2 weeks get him home and now he is sneezing?

go back to the vet and get it checke agian. samw thing with my dog


What has the author Perceval Wiburn written?

Perceval Wiburn has written: 'A checke or reproofe of M. Howlets vntimely shreeching in her Maiesties eares' -- subject(s): Catholic Church, Catholics, Controversial literature, Early works to 1800


What does the name Marta mean?

actually it means Lady of the House in Romanian i checke on babynameaddicts and others and my friend was adopted from Romania and her parents let her keep her name also, it comes from the latin god, mars, the god of war.


What is wrong with a 95 Buick Lesabre if the battery light is blinks and there is not enough power for the turn signal but the next day the battery can start the car and the alternator has been checke?

Will any light come on when it's messing up? If not, you might have a problem with the ignition lock cylinder (where the key goes) or the ignition switch (the electrical part inside the steering wheel). Good Luck!!


How do you know what type of a guitar you have?

Look on a website for your guitar specs, and checke the string gauge, it should be under specs. if you cant find it online bring your guitar to sombody whos knows what they're doing. Wrong guage strings will make tuning a pain Strings are a personal choice, not set by the manufacturer. tell the sales bods at the shop what you want to achieve, and they will get the right strings for you. Some strings will require a new instrument set-up as the neck behaves differently with every gauge, but its not a big deal.


Write a program in C language to implement the insertion and deletion operations in a circular queue?

//posted by Mr. VINOD KUMAR HOODA from HISAR, HARYANA #include<stdio.h> #include<conio.h> void insert(int); int delet(int); void display(void); void run(void); void checkf(int z); void checke(void); int size=5; int rear=-1; int front=-1; int queue[5]={55,66,77}; void main() { front+=1; rear+=3; int n; int op; printf("current queue is:"); display(); printf("\nPress:"); printf("\n1: for insertion of an element into the queue"); printf("\n2: for deletion of an element from the queue"); printf("\n3: check for full queue"); printf("\n4: check for empty queue"); printf("\n5: for exit\n"); scanf("%d",&op); switch(op) { case 1:insert(size);break; case 2:delet(size);break; case 3:checkf(size); break; case 4:checke(); break; case 5:exit(1); break; default:printf("\nWrong operator"); } getch(); } void insert(int n) { int item; if(front!=-1&&rear!=n) { printf("\nEnter the item to be inserted"); scanf("%d",&item); queue[rear+1]=item; } else { printf("\ncan not be inserted\n"); } display(); } int delet(int n) { printf("\ndeleted from queue\n"); if(front!=-1 && front!=rear) { run(); display(); } else if(front!=-1 && front==rear) { run(); front=front-1; display(); } else if(front==-1) { printf("\nQueue is empty"); } } void display(void) { int i; printf("\nDisplaying Queue\n"); for(i=0;i<size;i++) printf("%d ",queue[i]); } void run(void) { int m,temp; for(m=front;m<=rear-1;m++) {temp=queue[m]; queue[m]=queue[m+1]; } for(m=rear;m<size;m++) { queue[m]=0; } rear=rear-1; } void checkf(int z) { if(rear==z-1) { printf("Queue is Full \n"); } else { printf("Queue is not Full, new values can be inserted. \n"); } } void checke(void) { if(front==-1) { printf("Queue is empty \n"); } else { printf("Queue is not empty, new values can be deleted. \n"); } }