Answer:
Open a text-based editor like Microsoft word, notepad, libraoffice, etc, type the name of the super hero on the first field and the main power on the second field. Then click on the file menu or press ctrl-s and save file as superheroes.dat.
Explanation:
The file extension 'dat' is used to hold data for programs, for easy access. The file above holds data in fields separated by a space and has multiple records.
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.
Bios, This stores all of the computers start-up information. It tells the computer where to find the operation system inside the main storage and how to start it.
Hope this helps! :)
Answer:
Seasons Write a program that takes a date as input and outputs the date's season. The input is a string to represent the month and an int to represent the day. Ex: If the input is: April 11 the output is: Spring In addition, check if the string and int are valid (an actual month and day). Ex: If the input is: Blue 65 the output is: Invalid Invalid The dates for each season are: Spring: March 20 - June 20 Summer: June 21 - September 21 Autumn: September 22 - December 20 Winter: December 21 - March 19 LAB ACTIVITY 3.24.1: LAB: Seasons 0/10 main.cpp Load default template... 1 #include eam> 2 #include <string> 3 using namespace std; 4 5 int main() 6 string inputMonth; 7 int inputDay; 8 9 cin >> inputMonth; 10 cin >> inputDay; 11 12 /* Type your code here. */ 13 14 return; 15 }