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
sweet-ann [11.9K]
2 years ago
10

May you please rate my game out of ten, and also please telll me what I need to do to improve it, thx.

Engineering
2 answers:
Bingel [31]2 years ago
8 0
Yeah okay sure……:)!!!!!
stellarik [79]2 years ago
3 0

Hey hun^^

Your game was very fun. Here are a few bugs I found-

*At the beginning, the game flashed a few times before I could click start

*When I hit an obstacle the game froze and didn't take me back to the menu screen

*There are lots of obstacles. I suggest that you put levels and slowly make them easy to hard

Overall I rate this game an 8/10.

Great job!

~Alanna~

You might be interested in
The creation of designer drugs is outpacing the ability of society to enact laws to prohibit them. Many of these substances have
Andreas93 [3]

Answer:

The creation of "designer drugs" is outpacing the ability of society to enact laws to prohibit them.  Many of these substances have negative side effects, ranging from violent behavior to death.

 

40.  Which of the following responses to the problem would best fit the "crime control" philosophy?

a.  Government takes steps to limit the availability of ingredients used in the manufacture of designer drugs.

b.  Design a public awareness campaign to warn potential users of the dangers presented by use of these drugs.

c.  Partner with community leaders to identify underlying social issues promoting the drug subculture.

d.  Pass legislation and increase enforcement efforts to send a message of "zero tolerance" to those who manufacture, sell, and use designer drugs

The answer to the above question is

d.  Pass legislation and increase enforcement efforts to send a message of "zero tolerance" to those who manufacture, sell, and use designer drugs

Explanation:

State governments, naturally provide early response to the domestic issue of designer drug abuse than the federal government through the early banning of synthetic drug use.

State legislation on restricting designer drug use can be defined into three groups including

1. Specific synthetic substance ban

2. Ban on generic language

3. Ban based on the effect a substance has on the body.

It can be clearly demonstrated that legislation which combines this three categories is highly effective in reducing the supply and use of designer drugs.

3 0
3 years ago
You’ve experienced convection cooling if you’ve ever extended your hand out the window of a moving vehicle or into a flowing wat
Anna35 [415]

Answer:

Condition A

Heat flux is 1400 W/M^2

Condition B

Heat flux is 12800 w/m^2

Explanation:

Given that:

T_s is given as  30 degree celcius

condition A

Air temperature =  - 5 degree c

convection coefficient h = 40 w/m^2. k

heat\ flux = \frac{Q}{a}= h\Delta = 40{30 - (-5)} = 1400 w/m^2

condition A

water temperature  = 10 degree c

convection coefficient = 800 w/m^2.k

heat\ flux = \frac{Q}{A} = H(\Delta} = 800\times (30-14) = 12800w/m^2

7 0
3 years ago
For some metal alloy, the following engineering stresses produce the corresponding engineering plastic strains prior to necking.
kirza4 [7]

Answer:

203.0160

Explanation:

Because you add then subtract then multiply buy 7 the subtract then divide then you add that to the other numbers you got than boom

7 0
2 years ago
Set up the following characteristic equations in the form suited to Evanss root-locus method. Give L(s), a(s), and b(s) and the
Sunny_sXe [5.5K]

Answer:

attached below is the detailed solution and answers

Explanation:

Attached below is the detailed solution

C(iii) : versus the parameter C

The parameter C is centered in a nonlinear equation, therefore the standard locus will not apply hence when you use a polynomial solver the roots gotten would be plotted against C

4 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:
  • Memory Question!
    7·1 answer
  • Hi, I have an assignment in which i needs to write a report on (Rationalization of electrical energy consumption) and i need cha
    6·1 answer
  • Suppose you are implementing a relational employee database, where the database is a list of tuples formed by the names, the pho
    14·1 answer
  • Its an opinion!!!!
    8·1 answer
  • The value of the critical Reynolds number for the flow over a flat plate is 5 x10^5. The significance of the value is:
    13·1 answer
  • IN JAVA,
    6·1 answer
  • Realize the function f(a, b, c, d, e) = Σ m(6, 7, 9, 11, 12, 13, 16, 17, 18, 20, 21, 23, 25, 28)using a 16-to-1 MUX with control
    13·1 answer
  • Find all the words, Figure out my puzzle!
    14·2 answers
  • Should i show my face?
    8·2 answers
  • Which term describes the lowest of a foundation?
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!