Google assistant on my lava iris 820 smartphone in the following way.
Explanation:
Google Assistant on your smartphone, here’s a complete ready to use guide
How to download and install Google Assistant
- Most of the Android smartphones today come with Google Assistant pre installed and if it is not there.You can download it from Google Play Store.Apple iphone/ipad user installed it fro the App store.
How to set up google assistant .
-
Turn the Google Assistant on or off
- On your Android phone or tablet, touch and hold the Home button or say "OK Google" or "Hey Google."
- In the bottom right, tap .
- In the top right, tap your Profile picture or initial Settings. ...
- Under "Assistant devices," select your phone or tablet.
- Turn Google Assistant on or off.
Link your voice
To use Voice Match, you must link a Google Account to the Google Assistant device. If you have multiple Google Accounts, you can choose which account you want to use.
Open the Google Home app Google Home.
At the bottom, tap Home Home and then Settings Settings.
Under “Google Assistant services,” tap More settings.
Tap Assistant and then Voice Match and then Add devices.
Follow the steps.
When you link your voice and use the Google Assistant in US English, the Google Assistant will automatically acknowledge when you ask it for something politely.
Answer:
hakkuna matata is the radious of a circle
Answer:
The method can be accessible from main method of any class.
Explanation:
Main method is the entry point of a program, which means when you start you program the first thing to execute is the main method.
public static void main(String[] args){
// Your code here
}
In the given display method you have int, double and char data types as a arguments. So in order to call display method you need to understand the datatype that you want to pass.
int only takes integers without decimal points.
double take numbers with decimal points.
and char only tak one character
so in order to call display method we need to pass those arguments in right order.
Below is the main method which will call the display method in a right way
public static void main(String[]args){
display(25,50000.00,'T');
}
Output
The values are 25, 50000.0, and T