Skip to main content
C++ program that inputs five floating-point values in an array and displays the values in reverse order. Program: #include<iostream> using namespace std; int main() {     float arr[5];     int i, num;     cout<<" How many numbers do you want to Enter: ";     cin>>num;     cout<<" Enter "<<num<<" numbers: ";     for(i=0; i<5; i++)         cin>>arr[i];     cout<<"\nThe Original Array is:\n";     for(i=0; i<5; i++)         cout<<arr[i]<<" ";     cout<<"\n\nThe Reverse of Given Array is:\n";     for(i=(5-1); i>=0; i--)         cout<<arr[i]<<" ";     cout<<endl;     return 0; } Output:

Gmail Account: Setting up a Gmail Account

 Gmail Account: Setting up a Gmail Account

Gmail Account

Setting up a Gmail account is so easy even your grandma could do it. You can get the job done in just a few minutes without any technical knowledge whatsoever. Also, it’s free.

Before we show you how to do it, it’s worth noting that when you create a Gmail account, you’re actually creating a Google account, which gives you access to all Google services including YouTube, Maps, Play Store, and many others. That’s a good thing because you don’t have to register for each of these services individually.

Setting up a Gmail account is easy. You will begin by creating a Google account, and during the quick sign-up process you will choose your Gmail account name. In this lesson, we’ll show you how to set up your Google account for Gmail, add and edit contacts, and edit your mail settings.

How to Create a Gmail Account:

Gmail is an extremely popular email service provided by Google. In order to create a Gmail account, you actually must sign up for a Google account. This account will give you access to the Google Suite.

Setting up a Gmail account:

To create a Gmail address, you’ll first need to create a Google account. Gmail will redirect you to the Google account sign-up page. You’ll need to provide some basic information like your name, birth date, gender, and location. You will also need to choose a name for your new Gmail address. Once you create an account, you’ll be able to start adding contacts and adjusting your mail settings.

To create a Gmail account:

  • Go to www.gmail.com.
  • Click Create account.
  • The sign-up form will appear. Follow the directions by entering the required information.
  • Next, enter your phone number to verify your account. Google uses a two-step verification process for your security.
  • You will receive a text message from Google with a verification codeEnter the code to complete the account verification.
  • Next, you will see a form to enter some of your personal information, like your name and birthday.
  • Review Google’s Terms of Service and Privacy Policy, then click I agree.
  • Your account will be created.

Just like with any online service, it’s important to choose a strong password—in other words, one that is difficult for someone else to guess. For more information, review our lesson on creating strong passwords.

Signing in to your Gmail account:

When you first create your account, you will be automatically signed in. Most of the time, however, you’ll need to sign in to your account and sign out when you’re done with it. Signing out is especially important if you’re using a shared computer (for example, at a library or office) because it prevents others from viewing your emails.

To sign in:
  • Go to www.gmail.com.
  • Type your user name (your email address) and password, then click Next.
To sign out:


Mail settings:
In the top-right corner of the page, locate the circle that has your first initial (if you’ve already selected an avatar image, it will show the image instead). To sign out, click the circle and select Sign out.

Occasionally, you may want to make adjustments to Gmail’s appearance or behavior. For example, you could create a signature or vacation reply, edit your labels, or change the theme. These adjustments can be made from your mail settings.

To access your mail settings:

  • Click the gear icon in the top-right corner of the page, then select Settings.
  • From here, you can click any of the categories at the top to edit the desired settings.

Adding contacts:

Like all major email providers, Gmail lets you keep an address book of contacts so you don’t have to memorize everyone’s email addresses. You can also add other contact information, like phone numbersbirthdays, and physical addresses.

To add a contact:
  • Click the Google apps button.
  • Click the Contacts button in the drop-down menu.
  • Your contacts screen will appear. Click the Add new contact button in the lower-right corner.
  • Enter the contact information, then click Save.
To edit a contact:
gmail account
  • In the Google apps drop-down menu, select Contacts.
  • Locate the contact you want to edit, then click Edit Contact.
  • You can now make any changes you want to the contact.

By default, when you send an email to a new address, Gmail adds the address to your contacts. You can then go to your contacts to edit the person’s information as needed.

Importing mail and contacts:

You may already have a contact list from another email address, and it would be a lot of work to re-enter all of this information manually. Gmail allows you to import your contacts from another email account, and you can even import all of your email messages from that account. Several email providers are supported, including Yahoo!Hotmail, and AOL.

Read More

Comments

Popular posts from this blog

Tecno: Tecno Mobiles new & latest Model 2020

 Tecno: Tecno Mobiles new & latest Model 2020 Tecno is a Chines mobile phone maker that established back in 2006. For two years, its business has focused on the South Asian market. In a short period,  Tecno Mobiles   has become a threat to major smartphone brands in Pakistan, which is a fantastic success. The main reason people started buying its phones is its mid-range prices. Tecno is giving a competitive edge to many major smartphone brands. Tecno Mobile is a mobile phone brand that's owned by Hong Kong-based Transsion Holdings, which in 2017 launched another mobile brand in India - Itel. Thus, Techno Mobiles was established in 2006. Hence, Techno's latest mobile launch is the Spark 6 Air (64GB). However, The smartphone launched on 21st September 2020. The phone comes with a 7.00-inch touchscreen display with a resolution of 720 pixels by 1640 pixels. The Tecno Spark 6 Air (64GB) powers by a quad-core MediaTek Helio A25 processor and it comes with 3GB of RAM. Thus, Th

iPhone 12: Problems with iPhone 12 series

 iPhone 12: Problems with iPhone 12 series Apple is expected to launch four new iPhones under the  iPhone 12 series and now a new report suggests. That one of the camera lens suppliers for the upcoming non-Pro  iPhone 12 models is facing quality issues. According to Apple analyst Ming-Chi Kuo, Genius Electronic Optical has discovered issues with cracking coatings on the wide-angle camera lens destined for the lower-end 5.4-inch and 6.1-inch models. The problem appeared during high-temperature/high-humidity (HTHH) testing, reports MacRumors. The iPhone 12 and iPhone 12 Pro promise the biggest update in years. Here's what we know so far. iPhone 12 and iPhone 12 Pro : We're very close to finally getting to see the new iPhone 12 and iPhone 12 Pro models from Apple. And these phones promise to feature some of the biggest changes to the iPhone lineup in a long time. It will reportedly drop the existing design for an all-new look, as well as add 5G connectivity across the range,
C++ program that inputs five floating-point values in an array and displays the values in reverse order. Program: #include<iostream> using namespace std; int main() {     float arr[5];     int i, num;     cout<<" How many numbers do you want to Enter: ";     cin>>num;     cout<<" Enter "<<num<<" numbers: ";     for(i=0; i<5; i++)         cin>>arr[i];     cout<<"\nThe Original Array is:\n";     for(i=0; i<5; i++)         cout<<arr[i]<<" ";     cout<<"\n\nThe Reverse of Given Array is:\n";     for(i=(5-1); i>=0; i--)         cout<<arr[i]<<" ";     cout<<endl;     return 0; } Output: