Lonnie needs to use a special kind of block in his game that will tell him whether an object has slammed into his car true or not false what kind of block should Lonnie use

Block in programming in other to evaluate a condition such that it returns a boolean upon which a statement or action is then taken is the conditional block . Hence, Lonnie should use the conditional block.
The conditional block evaluates a condition and gives a True or False output which can the be used perform any statement or action of choice.
Lonnie could use the block as follows :
if (object_slammed_into_car) :
Statement
else :
Statement
The statement could be replaced with True, False values or any output of choice.
Learn more : https://brainly.com/question/25264145