Scala Byte /(x: Byte): Int Last Updated : 14 Jan, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method /(x:Byte) method is utilized to return the quotient of this value and x. Method Definition: Byte /(x: Byte): Int Return Type: It returns the quotient of this value and x. Example #1: Scala // Scala program of Byte /(x: Byte) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Byte /(x: Byte) function val result = (64.toByte)./(12:Byte) // Displays output println(result) } } Output: 5 Example #2: Scala // Scala program of Byte /(x: Byte) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Byte /(x: Byte) function val result = (125.toByte)./(11:Byte) // Displays output println(result) } } Output: 11 Comment More infoAdvertise with us Next Article Scala Byte +(x: Char): Int S Shivam_k Follow Improve Article Tags : Scala Scala Scala-byte Similar Reads Scala Byte %(x: Int): Int In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method %(x:Int) method is utilized to return the remainder of the division of this value by x Method Definition: Byte %(x: Int): Int Return Type: It returns the remainder of the division of this value by x. Exam 1 min read Scala Byte +(x: Int): Int In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method +(x:Int) method is utilized to return the sum of this value by x Method Definition: Byte +(x: Int): Int Return Type: It returns the sum of this value by x. Example #1: Scala // Scala program of Byte +(x: 1 min read Scala Byte ==(x: Int): Boolean In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method ==(x:Int) method is utilized to return true if this value is equal to x, false otherwise. Method Definition: Byte ==(x: Int): Boolean Return Type: It returns true if this value is equal to x, false otherw 1 min read Scala Byte %(x: Char): Int In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method %(x:Char) method is utilized to return the remainder of the division of this value by x Method Definition: Byte %(x: Char): Int Return Type: It returns the remainder of the division of this value by x. Ex 1 min read Scala Byte +(x: Char): Int In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method +(x:Char) method is utilized to return the sum of this value by x. Method Definition: Byte +(x: Char): Int Return Type: It returns the sum of this value by x. Example #1: Scala // Scala program of Byte +( 1 min read Scala Byte <(x: Int): Boolean In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method <(x:Int) method is utilized to return true if this value is less than x, false otherwise. Method Definition: Byte <(x: Int): Boolean Return Type: It returns true if this value is less than x, false 1 min read Like