Answer:
You should find a good game engine that is not hard. Unity and Unreal are some good ones.
You should also search for the programming language you like the most, and use engines that use that specific language.
Answer:
Option A(True) is the correct answer for the above question.
Explanation:
- An array is used for the collection variables which is of the same type and uses memory in continuous Passion for the storage.
- When any user wants to use the array then he needs to declare the size and type of the array because array holds the same type of data.
- For example, int a[5] is an array of integer variable whose name is 'a' and the size is 5 in c language.
- Anyone can use the array with the help of the index value of the array. The starting index value is 0 and the ending index value is (size-1) for any array.
- The user can use it by the help of loop, in which the loop variable refers to the index of the array and it starts from 0 and ends in the (size of the array-1).
- It is because the loop executes the same line multiple times.
- The above statement also wants to state, which is defined as above. Hence the above statement is true which is referred by option A. Hence option A is the correct answer.
tessa the same with me I hate it and then I'll click I and then it's blank
Answer:
Following are the code to this question:
import array as a#import package array
def silence(typecode, length):#defining method silence that accepts two parameters
Val= a.array(typecode, [0]*length)#defining Val variable that stores zeros of the given type code and length
return Val# use return keyword for return Val variable value
typecode = input('Enter typecode value: ')#use input method for input
length = int(input('Enter length value: '))#defining length variable that input integer value
print(*(silence(typecode, length)))#use print method to call silence method
Output:
Enter typecode value: b
Enter length value: 10
0 0 0 0 0 0 0 0 0 0
Explanation:
description of the code:
- In the above-given Python code, Firstly we import a package that is the array, after that a method "silence" is defined that accepts two variables in its parameter that is "typecode and length".
- Inside the method, the "Val" variable is declared, which is used to calculate and store all zeros of the typecode and length variable.
- Outside the method, "typecode and length variable" is used for input the value from the user end-use the print method to call the function "silence" with an asterisk.
Answer:
The code to this question as follows:
Code:
if(x < y) //if block that check value of x less then value of y
{
if(x<z) // inner if block that check value of x less then value of z
{
min = x; //assign value of x in min variable
}
else // inner else block when condition is false
{
min = z; //assign value of z in min variable
}
}
else //outer else block
{
if(y<z) //if block to check value of variable y is less then value of z
{
min = y; //assign value of y in min variable
}
else //else block
{
min = z; //assign value of z in min variable
}
}
Explanation:
In the given question it is defined, that an integer variable " x, y,z, and min" is declared, in which variable "x,y, and z" value is defined, and the variable is used to assign a big value.
- To check the biggest value we use the if-else statement in which, and if block check value of x is less than then the value of y if this condition is true so, inside this another if block declares, that will check if the value of x is less then z. if this is true, it will assign the value of x in min variable else it will assign the value of z in min.
- In the outer else part, another conditional block has used, that checks if the value of y is less than then the value of z if it is true, it assigns the value of y in min else it will assign the value of z in min.