I think it would be A because that seems to be the mot important thing, but maybe B, C if you are too serious than the crowd will get bored but if you are too friendly than you can get off topic and maybe get annoying, so I am pretty sure A but possibly B.
Answer:
Here we use the shift programming code
(a)var age1: Int=24
(b)let ear_grav:Float=9.8
Explanation:
(a) To declared any variable in swift we follow following syntax
Syntax:var variableName = <initial value>
var age1: Int=24
Here age1 is a variable that stores the age of a person
to print this use we print command in swift
print(age1)
(b)To declared the constant in swift we follow following syntax
Syntax: let constantName = <initial value>
let ear_grav:Float=9.8
Here ear_grav is a constant that stores the earth gravity 9.8
to print this use we print command in swift
print(ear_grav)
Answer:
Go to Control Panel > Devices and Printers.
Right-click on the printer and select Properties.
Click on the Web Services tab.
Make a note of the IP address in the Troubleshooting section
Explanation:
Answer:
a.
,
Explanation:
The array is used to store the multiple data with same data type.
Syntax for initialization of array:
type name[] = {data_1, data_2, data_3,....};
the comma ',' is used to separate the data with other data.
for example:
int array[] = {1,2,3,4,5};
we cannot used dot '.', colon ':' and semicolon ';' as separator.