answersLogoWhite

0

What else can I help you with?

Continue Learning about Engineering

Cold air from a heating unit?

I'm guessing this is in a car, truck, or van since it is in that category.Diverter door malfunction: Most if not all cars use a diverter door to push air past either the Heater Core, or Evap (air conditioning); these doors are controlled by a vacuum pot (hose and line) in most cars, and by electric means (In rare instances). You will need to find specifics about 'your car' to tell what type, as well as its location to see if 'that' is the problem.Some cars use a valve on the heater line (the line that allows hot water to enter the heater core) if this valve is damaged, or stops working, then hot water will not reach the core to provide heat.There is always the case that someone has bypassed the heater core (disconnected it) as well.That should give you enough information to start at least.


What data type allows you to type your birthday in ms access?

You should use the Date/Time data type for this. It allows you to enter dates.


Write a program with a loop that lets the user enter a series of integers the user should enter -99 to signal the end of the series after the program should display the largest and smallest.?

#include<iostream.h> #include<conio.h> main() { int i,j; i=0; j=0; for(i=1;i<=5;i++) { if(i>j){ cout<"the value of i is="<<i; } else { cout<<"the value of j is="<<j; } } getch(); }


Write a program to accept two string and display weather they are identical or not?

I assume the program should be case-sensitive. Here is a code of such program:#include #include int main() {char str1[100];char str2[100];printf("Please enter first string: ");gets(str1);printf("Please enter second string: ");gets(str2);if (strcmp(str1, str2) == 0) {printf("Strings are Equal.\n");} else {printf("Strings are Not Equal.\n");}return 0;}Testing:Please enter first string: APlease enter second string: AStrings are Equal.Please enter first string: aPlease enter second string: AStrings are Not Equal.If you want to make not case-sensitive comparing before checking you should make both string in lowercase or uppercase.Here is how it should look:#include #include #include void upString(char *str);int main() {char str1[100];char str2[100];printf("Please enter first string: ");gets(str1);printf("Please enter second string: ");gets(str2);upString(str1);upString(str2);if (strcmp(str1, str2) == 0) {printf("Strings are Equal.\n");} else {printf("Strings are Not Equal.\n");}return 0;}void upString(char *str) {register int ind = 0;while (str[ind]) {str[ind] = toupper(str[ind]);ind++;}}Testing:Please enter first string: aaaPlease enter second string: AAAStrings are Equal.Please enter first string: aaaPlease enter second string: aAaStrings are Equal.Note: You should not be using gets() function in real-world application. There is no way you can limit number of characters to read thus allowing to overflow buffer. It was used only for example.


How do you find out addition of all numbers between two inputed numbers in for loop?

First of all we will describe how our program should be working.After entering number 1 and 5 I want it count 2 + 3 + 4 and return 9. After entering 4 and 9 it should count 5 + 6 + 7 + 8 and return 26. After entering X and X I should get 0. If I enter X and X - 1 I should get and error.Here is the code of such application:#include int main() {int firstNum, secondNum, sum, tmp;printf("Please enter first number: ");scanf("%d", &firstNum);printf("Please enter second number: ");scanf("%d", &secondNum);if (secondNum < firstNum) {printf("Sorry, second number must be higher than first one.\n");return 1;}sum = 0;for (tmp = firstNum + 1; tmp < secondNum; tmp++) {sum += tmp;}printf("All numbers between %d and %d sum equals %d\n", firstNum, secondNum, sum);return 0;}Testing:Please enter first number: 1Please enter second number: 5All numbers between 1 and 5 sum equals 9Please enter first number: 4Please enter second number: 9All numbers between 4 and 9 sum equals 26

Related Questions

Which certification should LED lighting pass to enter the European market?

CE certification is the certification that the LED lighting should pass to enter the European market.


Where is the heater control valve on a 1999 Jeep?

near the fire wall where the heater hoses enter


Picture of heater core?

Go to advanceautoparts.com and enter your vehicle's info. Search for heater core and it will show you a pic. Mike


Do heater core hoses need to be hooked up a certain way where they enter the heater core?

In most cases no. The core flows both ways.


Where can one purchase arts and crafts lighting?

You can purchase arts and crafts lighting from the Amazon website. Once on the page, type "Artcraft lighting" into the search field at the top of the page and press enter to bring up the lights.


How do you use dynamic lighting on Roblox?

To use dynamic lighting 1. open up roblox studio if you dont have it download it (You should have it) 2.enter your game or make one 3.Find your explorer it should be all the way on your right in top corner.(If you cant find it click view&gt;Explorer) 4.Click on lighting 5. Experiment change the colors make the sky dark grey white purple anything really. I hoped this helped :)


Where can one purchase Feiss lighting products?

Feiss lighting products are widely available at a number of dealers depending on one's location. Some sites that carry Feiss lighting are Lighting Direct and Canada Lighting. Some Feiss lighting products are also available at Macy's or one can visit the Feiss lighting website and enter a zip code or postal code to find dealers that are located in a specific area.


How do you install a heater core on a 1967 Chevelle?

remove the four nuts in the engine bay on the heater box near where the heater core hoses enter. Drain coolant remove the hoses and pull the heater box out from the inside of the car. Remove clips holding heater core, than put your new one in.


What should you do when you see do not enter sign?

When you see a do not enter sign, do not enter.


Where is the heater core on a 97' BMW 328i?

In the dash. You can see 2 hoses to it enter your firewall. Right there.


When you use air conditioning in car you smell antifreeze and see vapor coming from vents?

You have either a cracked heater core or bad heater hoses that are allowing antifreeze to enter into the vehicle............


How do you remove a heater core from a 95 ford F250 pickup?

Remove the glove-box door. Behind that is the heater core cover on the interior, passenger side of the firewall. Remove that cover and there is the heater core. Open the hood and look where the heater hoses enter the front right passenger area of the exterior side of the firewall. Disconnect the two heater hose clamps and you can then remove the heater core.