27.9k views
2 votes
What symbol will a programmer use to assign a value of 4 to the variable with the name of gameType?

A) =
B) *
C) &
D) /

User Feodoran
by
5.8k points

2 Answers

3 votes

Answer:

a. =

Step-by-step explanation:

User Avivr
by
6.3k points
4 votes

Answer is A).


int gameType = 4;


or if it's js or something


var gameType = 4;

User Numanqmr
by
5.9k points