Third Generation (3G) Mobile Phones

Arjun Thakur
Updated on 25-Jun-2020 12:54:19

14K+ Views

Third generation mobile phones, or “3G Internet” mobile phones, is a set of standards for wireless mobile communication systems, that promises to deliver quality multimedia services along with high quality voice transmission.Features3G systems comply with the International Mobile Telecommunications-2000 (IMT-2000)specifications by the International Telecommunication Union (ITU).The first 3G services were available in 1998.It provides high speed transmission having data transfer rate more than 0.2Mbps.Global roaming services are available for both voice and data.It offers advanced multimedia access like playing music, viewing videos, television services etc.It provides access to all advanced Internet services, for example surfing webpages with audio and video.It ... Read More

Set Add Function in JavaScript

Samual Sam
Updated on 25-Jun-2020 12:53:47

245 Views

The add() function of the Set object accepts a value and adds/appends it to the current Set object.SyntaxIts Syntax is as followssetObj.add()Example Live Demo    JavaScript Example           const setObj = new Set();       setObj.add('Java');       setObj.add('JavaFX');       setObj.add('JavaScript');       setObj.add('HBase');       document.write("Contents of the Set:");       document.write("");       for (let item of setObj) {          document.write(item);          document.write("");       }     OutputContents of the Set: Java JavaFX JavaScript HBase

Set All Border Radius Properties with CSS

seetha
Updated on 25-Jun-2020 12:53:01

79 Views

Use the border-radius property to set all the four border-radius properties. You can try to run the following code to implement border-radius property:ExampleLive Demo                    #rcorner {             border-radius: 25px;             background: #85C1E9;             color: white;             padding: 20px;             width: 200px;             height: 250px;          }                     Rounded corners!    

Set and Clear Function in JavaScript

karthikeya Boyini
Updated on 25-Jun-2020 12:52:59

589 Views

The clear() function of the Set object removes all elements from the current Set object.SyntaxIts Syntax is as followssetObj.clear()Example Live Demo    JavaScript Example           const setObj = new Set();       setObj.add('Java');       setObj.add('JavaFX');       setObj.add('JavaScript');       setObj.add('HBase');       setObj.clear();       document.write("Contents of the Set:");       for (let item of setObj) {          document.write(item);          document.write("");       }     OutputContents of the Set:

Euler's Totient Function for Numbers Less Than or Equal to n in Java

Chandu yadav
Updated on 25-Jun-2020 12:51:01

1K+ Views

Following is a program to get the result of Euler’s Totient function for all numbers smaller than or equal to n when n is given.Programimport java.util.Scanner; public class EulerTotient {    public static int gcd(int a,int b){       int i, hcf = 0;          for(i = 1; i

Set Entries Function in JavaScript

karthikeya Boyini
Updated on 25-Jun-2020 12:50:45

140 Views

The entries() function of the Set returns an iterator object which holds the contents of the current Set. This iterator object returns a pair of values for each entry just like map (key and value). But here, instead of both key and value it returns the element of the set in the particular position.SyntaxIts Syntax is as followssetObj.entries()Example Live Demo    JavaScript Example           const setObj = new Set();       setObj.add('Java');       setObj.add('JavaFX');       setObj.add('JavaScript');       setObj.add('HBase');       const entries = setObj.entries();     ... Read More

Euler's Criterion in Java

Arjun Thakur
Updated on 25-Jun-2020 12:50:12

559 Views

According to Euler’s criterion a square root of n under modulo p exists if and only if a number num exists such that num%p is equal to n%p.Programimport java.util.Scanner; public class EulersCriterion {    public static void main(String args[]) {       Scanner sc = new Scanner(System.in);       System.out.println("Enter n value :");             int n = sc.nextInt();       System.out.println("Enter p value :");       int p = sc.nextInt();       n = n % p;       int flag = 0;            for ... Read More

Set forEach Function in JavaScript

Samual Sam
Updated on 25-Jun-2020 12:50:08

940 Views

The forEach() function of the Set object accepts the name of a particular function and runs that function for every value in the current set. For Example, if you have written a function to print a value, if you use forEach() function it prints the value of every element in the set.SyntaxIts Syntax is as followssetObj.forEach()Example Live Demo    JavaScript Example           function sampleFunction(value){          document.writeln(value+", ");       }       const setObj1 = new Set();       setObj1.add('Java');       setObj1.add('JavaFX');       setObj1.add('JavaScript'); ... Read More

Number.isSafeInteger Function in JavaScript

Samual Sam
Updated on 25-Jun-2020 12:49:17

107 Views

The isSafeInteger() function of the Number object accepts a number and determines if it is safe integer. If the given number is a safe integer it returns true else, it returns false.SyntaxIts Syntax is as followsNumber.isSafeInteger(90071991);Example Live Demo    JavaScript Example           var result = Number.isSafeInteger(90071991);       if(result) {          document.write("Given number is a safe integer");       }else {          document.write("Given number is not a safe integer");       }     OutputGiven number is a safe integerExamplePassing Decimal value, negative value ... Read More

Number.parseFloat Function in JavaScript

karthikeya Boyini
Updated on 25-Jun-2020 12:48:30

86 Views

The parseFloat() function of the Number object accepts a string, parses and returns floating point number represented by it.SyntaxIts Syntax is as followsNumber.parseFloat("32.01");Example Live Demo    JavaScript Example           var result = Number.parseFloat("32.01");       document.write(result);     Output32.01

Advertisements