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
Anuta_ua [19.1K]
3 years ago
12

I have a 308 bullet stuck in my ak,s mag help?

Engineering
2 answers:
polet [3.4K]3 years ago
4 0
Why not just use slight oil(olive oil or Coconut oil)... so you’re not getting anything on your tongue from the bullet?
Assoli18 [71]3 years ago
3 0
Lick the bullet and push it down
You might be interested in
A car is about to start but it blows up. what is the problem with the car<br> ?
ratelena [41]

Answer:

because there is a bomb

6 0
3 years ago
Read 2 more answers
What is the basic formula for actual mechanical advantage?
slavikrds [6]

Answer:

Mechanical Advantage Formula

The efficiency of a machine is equal to the ratio of its output to its input. It is also equal to the ratio of the actual and theoretical MAs. But, it does not mean that low-efficiency machines are of limited use. An automobile jack, for example, have to overcome a great deal of friction and therefore it has low efficiency. But still, it is extremely valuable because small effort can be applied to lift a great weight.

Also, in another way the mechanical advantage is the force generated by a machine to the force applied to it which is applied in assessing the performance of the machine.

The mechanical advantage formula is:

MA = FBFA

Explanation:

MAmechanical advantageFBthe force of the object

FAthe effort to overcome the force

3 0
3 years ago
A spring-loaded piston-cylinder contains 1 kg of carbon dioxide. This system is heated from 104 kPa and 25 °C to 1,068 kPa and 3
labwork [276]

Answer:

Q = -68.859 kJ

Explanation:

given details

mass co_2 = 1 kg

initial pressure P_1 = 104 kPa

Temperature T_1 = 25 Degree C = 25+ 273 K = 298 K

final pressure P_2 = 1068 kPa

Temperature T_2 = 311 Degree C = 311+ 273 K = 584 K

we know that

molecular mass of co_2 = 44

R = 8.314/44 = 0.189 kJ/kg K

c_v = 0.657 kJ/kgK

from ideal gas equation

PV =mRT

V_1 = \frac{m RT_1}{P_1}

       =\frac{1*0.189*298}{104}

V_1 = 0.5415 m3

V_2 = \frac{m RT_2}{P_2}

     =\frac{1*0.189*584}{1068}

V_1 = 0.1033 m3

WORK DONE

W =P_{avg}*{V_2-V_1}

w = 586*(0.1033 -0.514)

W =256.76 kJ

INTERNAL ENERGY IS

\Delta U  = m *c_v*{V_2-V_1}

\Delta U  = 1*0.657*(584-298)

\Delta U  =187.902 kJ

HEAT TRANSFER

Q = \Delta U  +W

   = 187.902 +(-256.46)

Q = -68.859 kJ

7 0
3 years ago
The basic barometer can be used to measure the height of a building. If the barometric readings at the top and at the bottom of
bixtya [17]

Answer:

h = 287.1 m

Explanation:

the density of mercury \rho =13570 kg/m3

the atmospheric pressure at the top of the building is

p_t = \rho gh  = 13570*908*0.73 = 97.08 kPa

the atmospheric pressure at bottom

p_b = \rho gh  = 13570*908*0.75 = 100.4 kPa

\frac{w_{air}}{A} =p_b -p_t

we have also

(\rho gh)_{air} = p_b - p_t

1.18*9.81*h = (100.4 -97.08)*10^3

h = 287.1 m

7 0
3 years ago
8.19 - Airline Reservations System (Project Name: Airline) - A small airline has just purchased a computer for its new automated
e-lub [12.9K]

Answer:

The App is written in C++ language using dev C++.

Explanation:

/******************************************************************************

You can run this program in any C++ compiler like dev C++ or any online C++ compiler

*******************************************************************************/

#include <iostream>

using namespace std;

class bookingSeat// class for airline reservation system

{

  private:

   

   

  bool reserveSeat[10];// 10 seats (1-5) for first class and 6-10 for economy class

  int firstClassCounter=0;//count first class seat

  int economyClassCounter=5;//count economy class seat

  char seatPlacement;/* switch between economy and first clas seat----- a variable for making decision based on user input*/

  public:  

  void setFirstClassSeat()//

  {

      if(firstClassCounter<5)// first class seat should be in range of 1 to 5

      {

          reserveSeat[firstClassCounter]=1; /*set first class seat..... change index value to 1 meaning that it now it is reserved*/

          cout<<"Your First Class seat is booked and your seat no is "<<firstClassCounter+1; //display seat number reserved

          firstClassCounter++; //increament counter

      }

      else//in case seats are ful

      {

          cout<<"\nSeats are full";

          if(economyClassCounter==10 && firstClassCounter==5)

          {

              cout<<"\n Next flight leaves in 3 hours.";

          }

          else

          {

              cout<<"\nIt’s acceptable to be placed to you in the first-class section  y/n ";//take input from user

              cin>>seatPlacement;//user input

              if(seatPlacement=='y')//if customer want to reserve seat in first class

              {

                  setEconomyClassSeat();// then reserve first class seat

              }

              else

              {

                  cout<<"\n Next flight leaves in 3 hours.";

               }

               

          }

      }

       

  }

  void setEconomyClassSeat()//set economy class seat

  {

    if(economyClassCounter<10)//seat ranges between 6 and 10

      {

          reserveSeat[economyClassCounter]=1;// reserve economy class seat

          cout<<"Your Economy class seat is booked and your seat no is "<<economyClassCounter+1;//display reservation message about seat

          economyClassCounter++;//increament counter

      }

      else// if economy class seats are fulled

      {

          cout<<"\nSeats are full";

          if(economyClassCounter==10 && firstClassCounter==5)//check if all seats are booked in both classes

          {

              cout<<"\n Next flight leaves in 3 hours.";

          }

          else

          {

              cout<<"\nIt’s acceptable to be placed to you in the first-class section  y/n ";//take input from user

              cin>>seatPlacement;//user input

              if(seatPlacement=='y')//if customer want to reserve seat in first class

              {

                  setFirstClassSeat();// then reserve first class seat

              }

              else

              {

                  cout<<"\n Next flight leaves in 3 hours.";

               }

               

          }

      }

  }

   

   

};

int main()

{   int checkseat=10;// check seat

   int classType;//class type economy or first class

   bookingSeat bookseat;//object declaration of class bookingSeat

   while(checkseat<=10)//run the application until seats are fulled in both classes

   {

       cout<<"\nEnter 1 for First Class and 2 for Economy Class ";

       cin>>classType;//what user entered

       switch (classType)//decide which seat class to be reserved  

       {

           case 1://if user enter 1 then reserve first class seat

           bookseat.setFirstClassSeat();

           break;

           case 2://if user enter 2 then reserve the economy class seat

           bookseat.setEconomyClassSeat();

           

       }

       

   }

   

   return 0;

}

8 0
3 years ago
Other questions:
  • 7 Single-use earplugs require a professional fitting before they can be used.
    10·2 answers
  • You are comparing distillation column designs at 1 atm and 3 atm total pressure for a particular separation. You have the same f
    5·1 answer
  • Material with hardness of 220 Vickers is harder than material with a hardness of 180 Vickers. a)-True b)- False
    8·1 answer
  • A receptacle, plug, or any other electrical device whose design limits the ability of an electrician to come in contact with any
    14·1 answer
  • Estimate the theoretical fracture strength (in MPa) of a brittle material if it is known that fracture occurs by the propagation
    8·1 answer
  • A window‐mounted air‐conditioning unit (AC) removes energy by heat transfer from a room, and rejects energy by heat transfer to
    13·1 answer
  • First real answer i’ll give Brainlyist
    12·1 answer
  • What information in drawing's title block identifies the project?
    12·1 answer
  • 6
    10·2 answers
  • which acpi power state allows a system to start where it left off, but all other components are turned off? sleeping mechanical
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!