0

Collision Detection and Response

Description: Collision Detection and Response Quiz
Number of Questions: 15
Created by:
Tags: collision detection collision response game development physics
Attempted 0/15 Correct 0 Score 0

Which of the following is a common method used for collision detection in 2D games?

  1. Bounding Boxes

  2. Ray Casting

  3. Sweep and Prune

  4. All of the above


Correct Option: D
Explanation:

Bounding Boxes, Ray Casting, and Sweep and Prune are all common methods used for collision detection in 2D games.

What is the purpose of a collision response algorithm?

  1. To calculate the direction of the collision

  2. To calculate the force of the collision

  3. To determine how objects should move after a collision

  4. All of the above


Correct Option: D
Explanation:

A collision response algorithm calculates the direction of the collision, the force of the collision, and determines how objects should move after a collision.

Which of the following is a common collision response algorithm?

  1. Impulse-based

  2. Penetration-based

  3. Constraint-based

  4. All of the above


Correct Option: D
Explanation:

Impulse-based, Penetration-based, and Constraint-based are all common collision response algorithms.

What is the difference between an elastic collision and an inelastic collision?

  1. In an elastic collision, objects bounce off each other, while in an inelastic collision, objects stick together.

  2. In an elastic collision, objects lose energy, while in an inelastic collision, objects gain energy.

  3. In an elastic collision, objects deform, while in an inelastic collision, objects do not deform.

  4. None of the above


Correct Option: A
Explanation:

In an elastic collision, objects bounce off each other, while in an inelastic collision, objects stick together.

Which of the following is a common method used for collision detection in 3D games?

  1. Bounding Spheres

  2. Bounding Boxes

  3. Octrees

  4. All of the above


Correct Option: D
Explanation:

Bounding Spheres, Bounding Boxes, and Octrees are all common methods used for collision detection in 3D games.

What is the purpose of a broad-phase collision detection algorithm?

  1. To identify potential collisions between objects

  2. To calculate the exact point of collision between objects

  3. To determine how objects should move after a collision

  4. None of the above


Correct Option: A
Explanation:

A broad-phase collision detection algorithm identifies potential collisions between objects.

What is the purpose of a narrow-phase collision detection algorithm?

  1. To identify potential collisions between objects

  2. To calculate the exact point of collision between objects

  3. To determine how objects should move after a collision

  4. None of the above


Correct Option: B
Explanation:

A narrow-phase collision detection algorithm calculates the exact point of collision between objects.

Which of the following is a common method used for narrow-phase collision detection in 3D games?

  1. GJK

  2. EPA

  3. Minkowski Difference

  4. All of the above


Correct Option: D
Explanation:

GJK, EPA, and Minkowski Difference are all common methods used for narrow-phase collision detection in 3D games.

What is the difference between a contact point and a collision point?

  1. A contact point is the point where two objects touch, while a collision point is the point where two objects collide.

  2. A contact point is the point where two objects collide, while a collision point is the point where two objects touch.

  3. There is no difference between a contact point and a collision point.

  4. None of the above


Correct Option: A
Explanation:

A contact point is the point where two objects touch, while a collision point is the point where two objects collide.

Which of the following is a common method used for collision response in 3D games?

  1. Impulse-based

  2. Penetration-based

  3. Constraint-based

  4. All of the above


Correct Option: D
Explanation:

Impulse-based, Penetration-based, and Constraint-based are all common methods used for collision response in 3D games.

What is the purpose of a restitution coefficient?

  1. To determine how much energy is lost in a collision

  2. To determine the direction of the collision

  3. To determine the force of the collision

  4. None of the above


Correct Option: A
Explanation:

A restitution coefficient determines how much energy is lost in a collision.

Which of the following is a common method used for resolving collisions in 2D games?

  1. Slide

  2. Bounce

  3. Stick

  4. All of the above


Correct Option: D
Explanation:

Slide, Bounce, and Stick are all common methods used for resolving collisions in 2D games.

Which of the following is a common method used for resolving collisions in 3D games?

  1. Slide

  2. Bounce

  3. Stick

  4. All of the above


Correct Option: D
Explanation:

Slide, Bounce, and Stick are all common methods used for resolving collisions in 3D games.

What is the purpose of a friction coefficient?

  1. To determine how much energy is lost in a collision

  2. To determine the direction of the collision

  3. To determine the force of the collision

  4. To determine how much force is required to move an object along a surface


Correct Option: D
Explanation:

A friction coefficient determines how much force is required to move an object along a surface.

Which of the following is a common method used for detecting collisions between a moving object and a static object?

  1. Ray Casting

  2. Sweep and Prune

  3. Octrees

  4. All of the above


Correct Option: A
Explanation:

Ray Casting is a common method used for detecting collisions between a moving object and a static object.

- Hide questions