Thursday 4 June 2020

G Suite New Tenant Setup Steps and Prerequisites (High Level Brief For Administrators)

To setup new tenant in G Suite, you need to be ready with the following prerequisites:

Prerequisites:

·         Domain Name Registered with any public domain hosting providers (e.g. sampledomiain.com)

·         Admin access to your registered DNS control panel

·         List of MX Records

·         An email address Corporate or Personal

For Video tutorial on G Suite Setup Steps, please refer this one of the cool tutorial (by MiLA Educations):


Steps (New Tenant Setup at G Suite):

  •         Signup for G Suite at G Suite Signup Page
  •         Use your primary domain name or create one instantly
  •         Verify your Domain for G Suite authorization
  •         Setup Required DNS records (MX Records)
  •         Finish the setup process by login in to G Suite Admin Console you just activated
  •         Setup your billing, company and other information


List of MX records (for G Suite Tenant Setup):

Values for G Suite MX records

Name/Host/Alias Time to Live (TTL*) Record Type Priority Value/Answer/Destination
@ or leave blank 3600 MX 1 ASPMX.L.GOOGLE.COM
@ or leave blank 3600 MX 5 ALT1.ASPMX.L.GOOGLE.COM
@ or leave blank 3600 MX 5 ALT2.ASPMX.L.GOOGLE.COM
@ or leave blank 3600 MX 10 ALT3.ASPMX.L.GOOGLE.COM
@ or leave blank3600MX10ALT4.ASPMX.L.GOOGLE.COM


You are done now with setting up New G Suite Tenant.

Tuesday 2 June 2020

What is an Array? Why do we use it?

Array: Array is a Data Structure defined by the programmers/users that store data items of the same type sequentially i.e. an array contains data items of the same type and all these items are stored sequentially in memory. It is one of the most common user-defined data types used by the programmers.

In this, size of the array needs to be specified during array initialization.


To access data item at any index, we use array indexing like:

Syntax

type Array-name[index] // Array-name to be declared by user and type is a type of data to be stored

To access data item at index 2, we write:

type Array-name[2].


Array is widely used by the programmers because:

It is easy to implement.

As data items are stored sequentially and so can be accessed by array indexing in O(1) time complexity.


Note: here type refers to what type of data to be stored in the array.


Cheers! Please let me know if you have any queries or feedback on this.



Related common questions: Whats an Array?, Why we use Array?, Use of Array?, What is an Array?