Scala short /(x: Byte): Int Last Updated : 05 Dec, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report Short, a 16-bit signed integer (equivalent to Java's short primitive type) is a subtype of scala.AnyVal. The /(x: Byte) method is utilized to return a result of the quotient operation on the specified Byte value by the x. Method Definition: def /(x: Byte): Int Return Type: It returns quotient with value and x. Example #1: Scala // Scala program of Short /(x: Byte) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Short /(x: Byte) function val result = (998.toShort)./(20:Byte) // Displays output println(result) } } Output: 49 Example #2: Scala // Scala program of Short /(x: Byte) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Short /(x: Byte) function val result = (-111.toShort)./(47:Byte) // Displays output println(result) } } Output: -2 Comment More infoAdvertise with us Next Article Scala short /(x: Int): Int S Shivam_k Follow Improve Article Tags : Scala Scala Scala-Method Similar Reads Scala Byte %(x: Short): Int In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method %(x:Short) method is utilized to return the remainder of the division of this value by x Method Definition: Byte %(x: Short): Int Return Type: It returns the remainder of the division of this value by x. 1 min read Scala Byte +(x: Short): Int In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method +(x:Short) method is utilized to return the sum of this value by x Method Definition: Byte +(x: Short): Int Return Type: It returns the sum of this value by x. Example #1: Scala // Scala program of Byte + 1 min read Scala short &(x: Byte): Int Short, a 16-bit signed integer (equivalent to Java's short primitive type) is a subtype of scala.AnyVal. The &(x: Int) method is utilized to return a result of the bitwise AND operation on the specified Byte value by the Int value. Method Definition: def +(x: Byte): Int Return Type: It returns I 1 min read Scala short /(x: Int): Int Short, a 16-bit signed integer (equivalent to Java's short primitive type) is a subtype of scala.AnyVal. The /(x: Int) method is utilized to return a result of the quotient operation on the specified Int value by the x. Method Definition: def /(x: Int): Int Return Type: It returns quotient with valu 1 min read Scala short /(x: Char): Int Short, a 16-bit signed integer (equivalent to Java's short primitive type) is a subtype of scala.AnyVal. The /(x: Char) method is utilized to return a result of the quotient operation on the specified Char value by the x. Method Definition: def /(x: Char): Int Return Type: It returns quotient with v 1 min read Scala short &(x: Int): Int Short, a 16-bit signed integer (equivalent to Java's short primitive type) is a subtype of scala.AnyVal. The &(x: Int) method is utilized to return a result of the bitwise AND operation on the specified Int value by the Int value. Method Definition: def +(x: Int): Int Return Type: It returns Int 1 min read Like