Think about ways you can promote your finished game. Come up with a few unique ways you might be able to promote your game based on its content. How could you make AR or Siri-like technology work in your game?

What will be an ideal response?

After students have reviewed the “Discoverability” section in the chapter, they should come up with a mini marketing plan for their original games involving at least five promotional ideas. In addition, students should discuss how they might utilize emerging technologies (often associated with mobile applications) such as voice recognition and augmented reality in their games.

Computer Science & Information Technology

You might also like to view...

What numbers are displayed in the list box when the button is clicked on?

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim file As String = 'Beatles.txt" Dim fabFour() As String = FillArray(file) lstBox.Items.Add(Array.IndexOf(fabFour, "Ringo") lstBox.Items.Add(fabFour.Count - 1) End Sub Function FillArray(file As String) As String() Dim names() As String = IO.File.ReadAllLines(file) Return names End Function ``` Assume the four lines of the file Beatles.txt contain the following entries: John, Paul, Ringo, George. (A) 3 and 3 (B) 3 and 4 (C) 2 and 3 (D) 2 and 4

Computer Science & Information Technology

Failure to cite the source of research material that you use is called ____.

A. ?fair use B. ?plagiarism C. ?libel D. ?tort

Computer Science & Information Technology