1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Vika [28.1K]
3 years ago
6

If my 98 dodge ram 1500 truck is dropping RPM's when i stop does that mean i need new throttle body sensors or does it mean i ne

ed a new 02 sensor. And their is also a vacuum leak somewhere in the engine bay; what is the easiest way to find it?
Computers and Technology
2 answers:
geniusboy [140]3 years ago
6 0
You might need a new 02 sensor and i really dont know about the vacuum leak.
larisa [96]3 years ago
4 0

Any vacuum-leak safari should start out with one important tool in hand: a vacuum-hose diagram. It might actually be placarded in the engine bay. If not, look one up in the service manual or consult an online service such as ­AllData. Armed with the right information, check that both ends of every vacuum line are accounted for. I photocopy the diagram and use a highlighter to verify that I've inspected each one. Is every line attached to the right fitting at both ends? Is it still supple enough to bend as needed to grip its attendant spud? Is the plastic fitting okay?  When I get an older car that shows signs of vacuum leaks, sometimes I systematically replace all of the vacuum lines individually. Ten feet or so of ­rubber line in a couple of sizes can be replaced—one line at a time, so you don't lose your place—in a half-hour or so. A half-dozen leaks so small they wouldn't be traceable can add up to one major leak. Here's how we old-line mechanics learned to chase leaks: To keep the engine computer from richening up the mix, pull the wire on the throttle position sensor or some other handy sensor that will keep the engine in open­-loop mode, where the computer just uses hard-coded default values for the amount of fuel instead of dithering the values around to stay near that golden 14.7:1 ratio.  This is analogous to the situation in a carbureted car (or motorcycle, or any other IC engine that doesn't have a computer). Start the engine and let it idle. Now spray aerosol carb cleaner onto the suspected leak. Yes, this is dangerous, especially if you consider your eyebrows important. There's not supposed to be an ignition source on the engine anywhere, but once in a blue moon, a stray spark or an overheated exhaust manifold can make the carb cleaner flare up. You've been warned.  The combustible carb cleaner will be sucked into the leak, and the engine will pick up its idle speed momentarily—and probably run on all cylinders if it's been misfiring. We quickly learned to use short, directed puffs of carb cleaner to localize the leak.

You might be interested in
Input 10 integers and display the following:
LekaFEV [45]

Answer:

// code in C++

#include <bits/stdc++.h>

using namespace std;

// main function

int main()

{

   // variables

   int sum_even=0,sum_odd=0,eve_count=0,odd_count=0;

   int largest=INT_MIN;

   int smallest=INT_MAX;

   int n;

   cout<<"Enter 10 Integers:";

   // read 10 Integers

   for(int a=0;a<10;a++)

   {

       cin>>n;

       // find largest

       if(n>largest)

       largest=n;

       // find smallest

       if(n<smallest)

       smallest=n;

       // if input is even

       if(n%2==0)

       {  

           // sum of even

           sum_even+=n;

           // even count

           eve_count++;

       }

       else

       {

           // sum of odd    

          sum_odd+=n;

          // odd count

          odd_count++;

       }

   }

   

   // print sum of even

   cout<<"Sum of all even numbers is: "<<sum_even<<endl;

   // print sum of odd

   cout<<"Sum of all odd numbers is: "<<sum_odd<<endl;

   // print largest

   cout<<"largest Integer is: "<<largest<<endl;

   // print smallest

   cout<<"smallest Integer is: "<<smallest<<endl;

   // print even count

   cout<<"count of even number is: "<<eve_count<<endl;

   // print odd cout

   cout<<"count of odd number is: "<<odd_count<<endl;

return 0;

}

Explanation:

Read an integer from user.If the input is greater that largest then update the  largest.If the input is smaller than smallest then update the smallest.Then check  if input is even then add it to sum_even and increment the eve_count.If the input is odd then add it to sum_odd and increment the odd_count.Repeat this for 10 inputs. Then print sum of all even inputs, sum of all odd inputs, largest among all, smallest among all, count of even inputs and count of odd inputs.

Output:

Enter 10 Integers:1 3 4  2 10 11 12 44 5 20                                                                                

Sum of all even numbers is: 92                                                                                            

Sum of all odd numbers is: 20                                                                                              

largest Integer is: 44                                                                                                    

smallest Integer is: 1                                                                                                    

count of even number is: 6                                                                                                

count of odd number is: 4

3 0
4 years ago
Write a statement that increments (adds 1 to) one and only one of these five variables: reverseDrivers parkedDrivers slowDrivers
MariettaO [177]

Answer:

The c++ coding for this scenario is given below.

if( speed < 0 )

           reverseDrivers = reverseDrivers + 1;

   else if( speed >= 0 && speed < 1 )

           parkedDrivers = parkedDrivers + 1;

   else if( speed >= 1 && speed < 40 )

           slowDrivers = slowDrivers + 1;

   else if( speed >= 40 && speed < 65 )

          safeDrivers = safeDrivers + 1;

   else

     speeders = speeders + 1;

Explanation:

First, five integer variables are declared and initialized.

int reverseDrivers = 0, parkedDrivers = 0, slowDrivers = 0, safeDrivers = 0, speeders = 0;

All the above variables need to be incremented by 1 based on the given condition, hence, these should have some original value.

Another variable speed of data type integer is declared.

int speed;

The variable speed is initialized to any value. User input is not taken for speed since it is not mentioned in the question.

Based on the value of the variable speed, one of the five variables, declared in the beginning, is incremented by 1.

The c++ program to implement the above scenario is as follows.

#include <iostream>

using namespace std;

int main() {

   int reverseDrivers = 0, parkedDrivers = 0, slowDrivers = 0, safeDrivers = 0, speeders = 0;

   int speed = 34;

   

   if( speed < 0 )

   {

       reverseDrivers = reverseDrivers + 1;

       cout<<" reverseDrivers " <<endl;

   }

   else if( speed >= 0 && speed < 1 )

   {

       parkedDrivers = parkedDrivers + 1;

      cout<<" parkedDrivers "<<endl;

   }

   else if( speed >= 1 && speed < 40 )

   {

       slowDrivers = slowDrivers + 1;

      cout<<" slowDrivers "<<endl;

   }

   else if( speed >= 40 && speed < 65 )

   {

       safeDrivers = safeDrivers + 1;

       cout<<" safeDrivers "<<endl;

   }

   else

   {

       speeders = speeders + 1;

       cout<<" speeders "<<endl;

   }

return 0;

}

The program only outputs the variable which is incremented based on the value of the variable speed.

3 0
3 years ago
True false) keybord has two shift keys.​
deff fn [24]

Answer:

True, looking at 'em right now!

Explanation:

8 0
4 years ago
Which group on the Home Ribbon allows you to create bulleted and numbered lists in a PowerPoint presentation?
igomit [66]
You gotta do the paragraph group its that one
3 0
3 years ago
Read 2 more answers
What would be one advantage and one risk of using an electric car?
Lemur [1.5K]
One advantage of using an electric car would be not having to pay for gas, one risk would be it malfunctioning.
4 0
3 years ago
Read 2 more answers
Other questions:
  • Study the sentence below. Highlighting a word, phrase, or a sentence is used to emphasize or CALL ATTENTION to the text Which wo
    10·1 answer
  • Write a program that read first a user's given name followed by the user's age from standard input. Then use an ofstream object
    8·1 answer
  • ________ are typically comprised of a mix of ________ and ________.
    5·2 answers
  • Which of the following is a set of short-range wireless technologies used to share information among devices within about two in
    8·1 answer
  • Which of the following is not a reserved keyword in python?​
    13·1 answer
  • To calculate perimeter of a rectangle​
    9·2 answers
  • Point out the correct statement:_____.
    6·1 answer
  • Cú pháp câu lệnh xóa thủ tục
    12·1 answer
  • Que nombre reciben los procesadores en miniatura en que se subdividen un microprocesador para mejorar su desempeño
    11·1 answer
  • The __________ contains the basic elements of a user's program and can be generated directly from a compiled object file
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!