0 votes
in Swift by

The built-in numeric types in Swift

A

Int4

B

Integer

C

UInt

D

Float16

1 Answer

0 votes
by

Answer: C

Reason:  The basic data types supported by swift are signed Int, unsigned UInt,and Fixed-size signed integers Int8, Int16, Int32, Int64, and unsigned integers UInt8, UInt16, UInt32, UInt64.Float(Float/Float32), Double(Float64/Double), Float80, Bool, String, Character, Optional and Tuples.

...