9/24 Daily Do Now

9/24 Daily Do Now

Assessment

Interactive Video

Information Technology (IT)

9th - 12th Grade

Hard

Created by

Amy Austin

FREE Resource

4 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function in Godot 4 is described as the most basic loop, running every frame?

func _ready()

func _input()

func _process(delta)

func _physics_process(delta)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When using a for loop with 'for n in 100: print(n)', what range of numbers will be printed?

1 to 100

0 to 99

1 to 99

0 to 100

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To iterate through the actual child nodes of a parent node using a for loop, which method should be used?

get_child_count()

get_children()

get_node()

get_parent()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the consequence if the condition controlling a while loop never evaluates to false?

The loop will execute only once.

The program will terminate with an error.

The loop will continue indefinitely, leading to an infinite loop.

The loop will automatically break after a default number of iterations.