Saturday, October 31, 2015

urgent requirement for accountant candidates

urgent requirement for accountant candidates

  +91 70753 72515

  +91-404000 2643

Role: Accounts Executive / Accountant

Experience: 2 To 3 Years

Job Type: Full Time

Job location: Hyderabad &Amp; Secunderabad

Qualification: Any Basic Graduation

Key skills: Telugu,English

Venue: Interested candidates can attend the interviews in
the following Address: LEAD MANPOWER SOLUTION .. Adress- Opp to Narayana Junior college,Above High
Way Bakery , Kukatpally BJP Office BUS Stop,Near
to KUK piller no-9. Contact: 7075372515 /Mahalakshmi Call us:10:00am to 5:00pm

Posted by: Company

Hi,

Greetings From LEAD MANPOWER SOLUTIONS 

Job Description:

Known Languages : English / Telugu 

Any graduates can apply

Interested candidates can attend the interviews in the following Address:

LEAD MANPOWER SOLUTION ..
Adress- to Narayana Junior college,Above High Way Bakery,Kukatpally BJP Office BUs Stop,Near to KUK piller no-9

Cognizant Walk-in Drive For Freshers

Cognizant Walk-in Drive For Freshers

Posted: 1 day ago

Role: Others

Experience: Fresher

Job Type: Full Time

Job location: Hyderabad &Amp; Secunderabad

Qualification: Any Basic Graduation / MBA/PGDM

Key skills: Excellent Communication Skills

Walkin date: Mon 02 Nov, 2015

Venue: Cognizant Technology services Pvt. Ltd, 1st Floor,Building No 12A, Raheja Mindspace, Hitec-city, Hyderabad

Posted by: Company

Company Name: Cognizant

Detailed Description of Job Opening: Cognizant Walk-in Excellent Freshers Drive - On 2nd Nov 2015 for Hyderabad Location

About Company: Cognizant is innovating new ways of doing business, experimenting with emerging technologies and business models. Our Innovation@Cognizant initiatives tackle the dual mandate and bring our clients the best technology and business expertise in today's digital world.

Required Skills: 
Excellent Communication Skills
Minimum of 15 years of education is mandate with supporting documents (10th, 12th, 3+ years graduation).
2015 Batch without certificates / results awaited are not eligible.

Year of Experienced : Freshers 0 Yrs ( 2013, 2014, 2015 Batch) 

Educational Qualification: Any Graduates, MBA (Except M.Pharm / B.Pharm / BCA / M.Tech / MCA are not eligible)

Work Location: Hyderabad, 

Walk-in Date:2nd Nov 2015, Time: 11.30 AM to 1 PM

Job Last Date: 2nd 2015

Walk-in Venue Contact Details
Cognizant Technology services Pvt. Ltd,
1st Floor,Building No 12A,
Raheja Mindspace,
Hitec-city,
Hyderabad

Jobs in Vodafone

Need graduates to work in voadfone 10000/-monthly

  +91 94933 57754

Role: Others

Experience: 0 To 1 Years

Job Type: Full Time

Job location: Hyderabad &Amp; Secunderabad

Qualification: Any Basic Graduation

Key skills: With Good Communication Skills

Walkin date: Mon 02 Nov, 2015 To Sat 07 Nov, 2015

Venue: Plot# 1043, Flat# 303, Ayyappa Society, Madhapur,
Hyderabad, Telangana 500081 040 3259 1701

Posted by: Company

we are hiring graduate candidates to work with vodafone,
need to handle with clients,good communications skills required,
Note:we don't charge any fee.
salary: monthly 10000 and allowances
contact 7730844541,u can also whatasp 9493357754

Walkin PHP Developers

PHP DEVELOPER codeigniter

  +91 83319 67710

Role: Software Engineer / Programmer

Experience: 3 Years

Job Type: Full Time

Job location: Hyderabad &Amp; Secunderabad

Qualification: Any Basic Graduation

Key skills: PHP DEVELOPER

Walkin date: Mon 02 Nov, 2015

Venue: FLAT NO : 302 BORRA LAKSHMI NILAYAM FILIM NAGAR
ROAD NO 8 JUBLIHILLS HYDERABAD-33

Posted by: Company

need php developer codeigniter frame work with 3 + year hands on experience

Ms Excel If function

The IF function is one of the most popular and useful functions in Excel. You use the IF function to ask Excel to test a condition and to return one value if the condition is met, and another value if the condition is not met.

In this tutorial, we are going to learn the syntax and common usages of Excel IF function, and then will have a closer look at formula examples that will hopefully prove helpful both to beginners and experienced Excel users.

Excel IF function - syntax and usageUsing the IF function in Excel - formula examplesIF examples for numbersHow to use the IF function with text valuesUsing Excel IF function with datesExcel IF examples for blank, non-blank cells

Excel IF function - syntax and usage

The IF function is one of Excel's logical functions that evaluates a certain condition and returns the value you specify if the condition is TRUE, and another value if the condition is FALSE.

The syntax for Excel IF is as follows:

IF(logical_test, [value_if_true], [value_if_false])

As you see, the IF function has 3 arguments, but only the first one is obligatory, the other two are optional.

logical_test - a value or logical expression that can be either TRUE or FALSE. Required.In this argument, you can specify a text value, date, number, or any comparison operator. For example, your logical test can be expressed as or B1="sold", B1<12/1/2014, B1=10 or B1>10.value_if_true - the value to return when the logical test evaluates to TRUE, i.e. if the condition is met. Optional.For example, the following formula will return the text "Good" if a value in cell B1 is greater than 10: =IF(B1>10, "Good")value_if_false - the value to be returned if the logical test evaluates to FALSE, i.e. if the condition is not met. Optional.For example, if you add "Bad" as the third parameter to the above formula, it will return the text "Good" if a value in cell B1 is greater than 10, otherwise, it will return "Bad": =IF(B1>10, "Good", "Bad")

Excel IF function - things to remember!

Though the last two parameters of the IF function are optional, your formula may produce unexpected results if you don't know the underlying logic beneath the hood.

1. If value_if_true is omitted.

If the value_if_true argument is omitted in your Excel IF formula (i.e. there is only a comma following logical_test), the IF function returns zero (0) when the condition is met. Here is an example of such a formula: =IF(B1>10,, "Bad")

If you don't want your IF formula to display any value when the condition is met, enter double quotes ("") in the second parameter, like this: =IF(B1>10, "", "Bad") Technically, in this case the formula returns an empty string, which is invisible to the user but perceivable to other Excel functions.

The following screenshot demonstrates the above approaches in action, and the second one seems to be more sensible:

2. If value_if_false is omitted.

If you don't care what happens if the specified condition is not met, you can omit the 3rd parameter in your Excel IF formulas, which will result in the following.

If the logical test evaluates to FALSE and the value_if_false parameter is omitted (there is just a closing bracket after the value_if_true argument), the IF function returns the logical value FALSE. It's a bit unexpected, isn't it? Here is an example of such a formula: =IF(B1>10, "Good")

If you put a comma after the value_if_true argument, your IF function will returns 0, which doesn't make much sense either: =IF(B1>10, "Good",)

And again, the most reasonable approach is to put "" in the third argument, in this case you will have empty cells when the condition is not met: =IF(B1>10, "Good", "")

3. Get the IF function to display logical values TRUE or FALSE

If you want your Excel IF formula to display the logical values TRUE and FALSE when the specified condition is met and not met, respectively, type TRUE in the value_if_true argument. The value_if_false parameter can be FALSE or omitted. Here's a formula example:

=IF(B1>10, TRUE, FALSE)
or
=IF(B1>10, TRUE)

Note. If you want your IF formula to return TRUE and FALSE as the logical values(Boolean) that other Excel formulas can recognize, make sure you don't enclose them in double quotes. A visual indication of a Boolean is middle align in a cell, as you see in the screenshot above.

If you want to "TRUE" and "FALSE" to be usual text values, enclose them in "double quotes". In this case, the returned values will be aligned left and formatted as General. No Excel formula will recognize such "TRUE" and "FALSE" text as logical values.

4. Get IF to perform a math operation and return a result

Instead of returning certain values, you can make your IF formula to test the specified condition, perform a corresponding math operation and return a value based on the result. You do this by using arithmetic operators or other Excel functions in the value_if_true and /or value_if_false arguments. Here are just a couple of formula examples:

Example 1: =IF(A1>B1, C3*10, C3*5)

The formula compares the values in cells A1 and B1, and if A1 is greater than B1, it multiplies the value in cell C3 by 10, by 5 otherwise.

Example 2: =IF(A1<>B1, SUM(A1:D1), "")

The formula compares the values in cells A1 and B1, and if A1 is not equal to B1, the formula returns the sum of values in cells A1:D1, an empty string otherwise.

Using the IF function in Excel - formula examples

Now that you are familiar with the Excel IF function's syntax, let's look at some formula examples and learn how to use IF as a worksheet function in Excel.

IF function examples for numbers: greater than, less than, equal to

The use of the IF function with numeric values is based on using different comparison operators to express your conditions. You will find the full list of logical operators illustrated with formula examples in the table below.

ConditionOperatorFormula ExampleDescriptionGreater than>=IF(A2>5, "OK",)If the number in cell A2 is greater than 5, the formula returns "OK"; otherwise 0 is returned.Less than<=IF(A2<5, "OK", "")If the number in cell A2 is less than 5, the formula returns "OK"; an empty string otherwise.Equal to==IF(A2=5, "OK", "Wrong number")If the number in cell A2 is equal to 5, the formula returns "OK"; otherwise the function displays "Wrong number".Not equal to<>=IF(A2<>5, "Wrong number", "OK")If the number in cell A2 is not equal to 5, the formula returns "Wrong number "; otherwise - "OK".Greater than or equal to>==IF(A2>=5, "OK", "Poor")If the number in cell A2 is greater than or equal to 5, the formula returns "OK"; otherwise - "Poor".Less than or equal to<==IF(A2<=5, "OK", "")If the number in cell A2 is less than or equal to 5, the formula returns "OK"; an empty string otherwise.

The screenshot below demonstrates the IF formula with the "Greater than or equal to" logical operator in action:

Excel IF function examples for text values

Generally, you write an IF formula for text values using either "equal to" or "not equal to" operator, as demonstrated in a couple of IF examples that follow.

Example 1. Case-insensitive IF formula for text values

Like the overwhelming majority of Excel functions, IF is case-insensitive by default. What it means for you is that logical tests for text values do not recognize case in usual IF formulas.

For example, the following IF formula returns either "Yes" or "No" based on the "Delivery Status" (column C):

=IF(C2="delivered", "No", "Yes")

Translated into the plain English, the formula tells Excel to return "No" if a cell in column C contains the word "Delivered", otherwise return "Yes". At that, it does not really matter how you type the word "Delivered" in the logical_test argument - "delivered", "Delivered", or "DELIVERED". Nor does it matter whether the word "Delivered" is in lowercase or uppercase in the source table, as illustrated in the screenshot below.

Another way to achieve exactly the same result is to use the "not equal to" operator and swap the value_if_true and value_if_false arguments:

=IF(C2<>"delivered", "Yes", "No")

Example 2. Case-sensitive IF formula for text values

If you want a case-sensitive logical test, use the IF function in combination with EXACT that compares two text strings and returns TRUE if the strings are exactly the same, otherwise it returns FALSE. The EXACT functions is case-sensitive, though it ignores formatting differences.

You use IF with EXACT in this way:

=IF(EXACT(C2,"DELIVERED"), "No", "Yes")

Where C is the column to which your logical test applies and "DELIVERED" is the case-sensitive text value that needs to be matched exactly.

Naturally, you can also use a cell reference rather than a text value in the 2nd argument of the EXACT function, if you want to.

Note. When using text values as parameters for your IF formulas, remember to always enclose them in "double quotes".

Example 3. IF formula for text values with partial match

If you want to base your condition on a partial match rather than exact match, an immediate solution that comes to mind is using wildcard characters (* or ?) in the logical_test argument. However, this simple and obvious approach won't work. Many Excel functions accept wildcards, but regrettably IF is not one of them.

A solution is to use IF in combination with ISNUMBER and SEARCH (case-insensitive) or FIND (case-sensitive) functions.

For example, if No action is required both for "Delivered" and "Out for delivery" items, the following formula will work a treat:

=IF(ISNUMBER(SEARCH("deliv",C2)), "No", "Yes")

We've used the SEARCH function in the above formula since a case-insensitive match suits better for our data. If you want a case-sensitive match, simply replace SEARCH with FIND in this way:

=IF(ISNUMBER(FIND("text", where to search)), value_if_true, value_if_false)

Excel IF formula examples for dates

At first sight, it may seem that IF formulas for dates are identical to IF functions for numeric and text values that we've just discussed. Regrettably, it is not so.

Unlike many other Excel functions, IF cannot recognize dates and interprets them as mere text strings, which is why you cannot express your logical test simply as >"11/19/2014" or >11/19/2014. Neither of the above arguments is correct, alas.

Example 1. IF formulas for dates with DATEVALUE function

To make the Excel IF function to recognize a date in your logical test as a date, you have to wrap it in the DATEVALUE function, like this DATEVALUE("11/19/2014"). The complete IF formula may take the following shape:

=IF(C2<DATEVALUE("11/19/2014"), "Completed", "Coming soon")

As illustrated in the screenshot below, this IF formula evaluates the dates in column C and returns "Completed" if a game was played before Nov-11. Otherwise, the formula returns "Coming soon".

Example 2. IF formulas with TODAY() function

In case you base your condition on the current date, you can use the TODAY() function in the logical_test argument of your IF formula. For example:

=IF(C2<DATEVALUE("11/19/2014"), "Completed", "Coming soon")

Naturally, the Excel IF function can understand more complex logical tests, as demonstrated in the next example.

Example 3. Advanced IF formulas for future and past dates

Suppose, you want to mark only the dates that occur in more than 30 days from now. In this case, you can express the logical_test argument as A2-TODAY()>30. The complete IF formula may be as follows:

=IF(A2-TODAY()>30, "Future date", "")

To point out past dates that occurred more than 30 days ago, you can use the following IF formula:

=IF(TODAY()-A2>30, "Past date", "")

If you want to have both indications in one column, you will need to use a nested IF function like this:

=IF(A2-TODAY()>30, "Future date", IF(TODAY()-A2>30, "Past date", ""))

Excel IF examples for blank, non-blank cells

If you want to somehow mark your data based on a certain cell(s) being empty or not empty, you can either:

Use the Excel IF function in conjunction with ISBLANK, orUse the logical expressions ="" (equal to blank) or <>"" (not equal to blank).

The table below explains the difference between these two approaches and provides formula example.

Logical testDescriptionFormula ExampleBlank cells=""Evaluates to TRUE if a specified cell is visually empty, including cells withzero length strings.

Otherwise, evaluates to FALSE.

=IF(A1="", 0, 1)

Returns 0 if A1 is visually blank. Otherwise returns 1.

If A1 contains an empty string, the formula returns 0.

ISBLANK()Evaluates to TRUE is a specified cell containsabsolutely nothing - no formula, no empty string returned by some other formula.

Otherwise, evaluates to FALSE.

=IF(ISBLANK(A1), 0, 1)

Returns the results identical to the above formula but treats cells with zero length strings as non-blank cells.

That is, if A1 contains an empty string, the formula returns 1.

Non-blank cells<>""Evaluates to TRUE if a specified cell contains some data. Otherwise, evaluates to FALSE.

Cells withzero length strings are consideredblank.

=IF(A1<>"", 1, 0)

Returns 1 if A1 is non-blank; otherwise returns 0.

If A1 contains an empty string, the formula returns 0.

ISBLANK()=FALSEEvaluates to TRUE if a specified cell is not empty. Otherwise, evaluates to FALSE.

Cells withzero length strings are considerednon-blank.

=IF(ISBLANK(A1)=FALSE, 0, 1)

Works the same as the above formula, but returns 1 if A1 contains an empty string.

The following example demonstrates blank / non-blank logical test in action.

Suppose, you have a date in column C only if a corresponding game (column B) was played. Then, you can use either of the following IF formulas to mark completed games:

=IF($C2<>"", "Completed", "")

=IF(ISBLANK($C2)=FALSE, "Completed", "")

Since there are no zero-length strings in our table, both formulas will return identical results:

Hopefully, the above examples have helped you understand the general logic of the IF function. In practice, however, you would often want a single IF formula to check multiple conditions, and our next article will show you how to tackle this task. In addition, we will also explore nested IF functionsarray IF formulas,IFEFFOR and IFNA functions and more. Please stay tuned and thank you for reading!

Ms Excel


Array Formulas


Many of the formulas described here are Array Formulas, which are a special type of formula 

in Excel.  If you are not familiar with Array Formulas, click here.


Array To Column


Sometimes it is useful to convert an MxN array into a single column of data, for example for charting (a data series must be a single row or column).  Clickhere for more details.


Averaging Values In A Range


You can use Excel's built in =AVERAGE function to average a range of values.  By using it 

with other functions, you can extend its functionality.


For the formulas given below, assume that our data is in the range A1:A60.


Averaging Values Between Two Numbers


Use the array formula


=AVERAGE(IF((A1:A60>=Low)*(A1:A60<=High),A1:A60))


Where Low and High are the values between which you want to average.


Averaging The Highest N Numbers In A Range


To average the N largest numbers in a range, use the array formula


=AVERAGE(LARGE(A1:A60,ROW(INDIRECT("1:10"))))


Change "1:10" to "1:N" where N is the number of values to average.


Averaging The Lowest N Numbers In A Range


To average the N smallest numbers in a range, use the array formula


=AVERAGE(SMALL(A1:A60,ROW(INDIRECT("1:10"))))


Change "1:10" to "1:N" where N is the number of values to average.


In all of the formulas above, you can use =SUMinstead of =AVERAGE to sum, rather

than average, the numbers. 


Counting Values Between Two Numbers


If you need to count the values in a range that are between two numbers, for example between

5 and 10, use the following array formula:


=SUM((A1:A10>=5)*(A1:A10<=10))


To sum the same numbers, use the following array formula:


=SUM((A1:A10>=5)*(A1:A10<=10)*A1:A10)


Counting Characters In A String


The following formula will count the number of "B"s, both upper and lower case, in the string in B1.


=LEN(B1)-LEN(SUBSTITUTE(SUBSTITUTE(B1,"B",""),"b",""))


Date And Time Formulas


A variety of formulas useful when working with dates and times are described on 

the DateTime page.


Other Date Related Procedures are described on the following pages.


Adding Months And Years


The DATEDIF Function


Date Intervals


Dates And Times


Date And Time Entry


Holidays


Julian Dates


Duplicate And Unique Values In A Range


The task of finding duplicate or unique values in a range of data requires some complicated

formulas.  These procedures are described inDuplicates.


Dynamic Ranges


You can define a name to refer to a range whose size varies depending on its contents.   For example, you may want a range name that refers only to the portion of a list of numbers that are not blank.  such as only the first N non-blank cells in A2:A20.   Define a name called MyRange, and set the Refers To property to:


=OFFSET(Sheet1!$A$2,0,0,COUNTA($A$2:$A$20),1)


Be sure to use absolute cell references in the formula.  Also see then Named Ranges page for more information about dynamic ranges.


Finding The Used Part Of A Range


Suppose we've got a range of data calledDataRange2, defined as H7:I25, and that 

cells H7:I17 actually contain values. The rest are blank. We can find various properties 

of the range, as follows:


To find the range that contains data, use the following array formula:


=ADDRESS(ROW(DataRange2),COLUMN(DataRange2),4)&":"&

ADDRESS(MAX((DataRange2<>"")*ROW(DataRange2)),COLUMN(DataRange2)+

COLUMNS(DataRange2)-1,4)


This will return the range H7:I17.  If you need the worksheet name in the returned range, 

use the following array formula: 


=ADDRESS(ROW(DataRange2),COLUMN(DataRange2),4,,"MySheet")&":"&

ADDRESS(MAX((DataRange2<>"")*ROW(DataRange2)),COLUMN(DataRange2)+

COLUMNS(DataRange2)-1,4)


This will return MySheet!H7:I17.


To find the number of rows that contain data, use the following array formula:


=(MAX((DataRange2<>"")*ROW(DataRange2)))-ROW(DataRange2)+1


This will return the number 11, indicating that the first 11 rows of DataRange2 contain data.


To find the last entry in the first column ofDataRange2, use the following array formula:


=INDIRECT(ADDRESS(MAX((DataRange2<>"")*ROW(DataRange2)),

COLUMN(DataRange2),4))


To find the last entry in the second column ofDataRange2, use the following array formula: 


=INDIRECT(ADDRESS(MAX((DataRange2<>"")*ROW(DataRange2)),

COLUMN(DataRange2)+1,4))


First And Last Names


Suppose you've got a range of data consisting of people's first and last names.

There are several formulas that will break the names apart into first and last names

separately.


Suppose cell A2 contains the name "John A Smith".


To return the last name, use


=RIGHT(A2,LEN(A2)-FIND("*",SUBSTITUTE(A2," ","*",LEN(A2)-

LEN(SUBSTITUTE(A2," ","")))))


To return the first name, including the middle name (if present), use


=LEFT(A2,FIND("*",SUBSTITUTE(A2," ","*",LEN(A2)-

LEN(SUBSTITUTE(A2," ",""))))-1)


To return the first name, without the middle name (if present), use


=LEFT(B2,FIND(" ",B2,1))


We can extend these ideas to the following.  Suppose A1 contains the 

string  "First   Second  Third Last".


Returning  First Word In A String


=LEFT(A1,FIND(" ",A1,1))

This will return the word "First".


Returning Last Word In A String


=RIGHT(A1,LEN(A1)-MAX(ROW(INDIRECT("1:"&LEN(A1))) *(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)=" ")))

This formula in as array formula.

(This formula comes from Laurent Longre). This will return the word "Last"


Returning All But First Word In A String


=RIGHT(A1,LEN(A1)-FIND(" ",A1,1))

This will return the words  "Second  Third Last"


Returning Any Word Or Words In A String


The following two array formulas come compliments of Laurent Longre. To return any single word from a single-spaced string of words, use the following array formula:


=MID(A10,SMALL(IF(MID(" "&A10,ROW(INDIRECT

("1:"&LEN(A10)+1)),1)=" ",ROW(INDIRECT("1:"&LEN(A10)+1))),

B10),SUM(SMALL(IF(MID(" "&A10&" ",ROW(INDIRECT

("1:"&LEN(A10)+2)),1)=" ",ROW(INDIRECT("1:"&LEN(A10)+2))),

B10+{0,1})*{-1,1})-1)


Where A10 is the cell containing the text, and B10 is the number of the word you want to get.


This formula can be extended to get any set of words in the string.  To get the words from M for N words (e.g., the 5th word for 3, or the 5th, 6th, and 7th words), use the following array formula:


=MID(A10,SMALL(IF(MID(" "&A10,ROW(INDIRECT

("1:"&LEN(A10)+1)),1)=" ",ROW(INDIRECT("1:"&LEN(A10)+1))),

B10),SUM(SMALL(IF(MID(" "&A10&" ",ROW(INDIRECT

("1:"&LEN(A10)+2)),1)=" ",ROW(INDIRECT("1:"&LEN(A10)+2))),

B10+C10*{0,1})*{-1,1})-1)


Where A10 is the cell containg the text, B10 is the number of the word to get, and C10 is the number of words, starting at B10, to get.


Note that in the above array formulas, the {0,1}and {-1,1} are enclosed in array braces (curly brackets {} ) not parentheses.


Download a workbook illustrating these formulas.


Grades


A frequent question is how to assign a letter grade to a numeric value.  This is simple.  First create a define name called "Grades" which refers to the array:


={0,"F";60,"D";70,"C";80,"B";90,"A"}


Then, use VLOOKUP to convert the number to the grade:


=VLOOKUP(A1,Grades,2)


where A1 is the cell contains the numeric value.  You can add entries to the Grades array for other grades like C- and C+.  Just make sure the numeric values in the array are in increasing order.


High And Low Values


You can use Excel's Circular Reference tool to have a cell that contains the highest ever reached value.  For example, suppose you have a worksheet used to track team scores.    You can set up a cell that will contain the highest score ever reached, even if that score is deleted from the list.  Suppose the score are in A1:A10.  First, go to the Tools->Options dialog, click on the Calculation tab, and check the Interations check box.  Then, enter the following formula in cell B1:


=MAX(A1:A10,B1)


Cell B1 will contian the highest value that has ever been present in A1:A10, even if that value is deleted from the range.  Use the =MIN function to get the lowest ever value.


Another method to do this, without using circular references, is provided by Laurent Longre, and uses the CALL function to access the Excel4 macro function library.   Click here for details.


Left Lookups


The easiest way do table lookups is with the=VLOOKUP function.   However, =VLOOKUP requires

that the value returned be to the right of the value you're looking up.  For example, if you're

looking up a value in column B, you cannot retrieve values in column A.  If you need to

retrieve a value in a column to the left of the column containing the lookup value, use

either of the following formulas:


=INDIRECT(ADDRESS(ROW(Rng)+MATCH(C1,Rng,0)-1,COLUMN(Rng)-ColsToLeft)) Or 

=INDIRECT(ADDRESS(ROW(Rng)+MATCH(C1,Rng,0)-1,COLUMN(A:A) ))


Where Rng is the range containing the lookup values, and ColsToLeft is the number of columns

to the left of Rng that the retrieval values are.  In the second syntax, replace "A:A" with the

column containing the retrieval data.  In both examples,  C1 is the value you want to look up.


See the Lookups page for many more examples of lookup formulas.


 


Minimum And Maximum Values In A Range


Of course you can use the =MIN and =MAX functions to return the minimum and maximum 

values of a range. Suppose we've got a range of numeric values called NumRange. 

NumRange may contain duplicate values.  The formulas below use the following example:

Address Of First Minimum In A Range


To return the address of the cell containing the first(or only) instance of the minimum of a list, 

use the following array formula:


=ADDRESS(MIN(IF(NumRange=MIN(NumRange),ROW(NumRange))),COLUMN(NumRange),4)


This function returns B2, the address of the first '1' in the range.


Address Of The Last Minimum In A Range


To return the address of the cell containing the last(or only) instance of the minimum of a list, 

use the following array formula:


=ADDRESS(MAX(IF(NumRange=MIN(NumRange),ROW(NumRange)*(NumRange<>""))),

COLUMN(NumRange),4)


This function returns B4, the address of the last '1' in the range.


Address Of First Maximum In A Range


To return the address of the cell containing the firstinstance of the maximum of a list, 

use the following array formula:


=ADDRESS(MIN(IF(NumRange=MAX(NumRange),ROW(NumRange))),COLUMN(NumRange),4)


This function returns B1, the address of the first '5' in the range.


Address Of The Last Maximum In A Range


To return the address of the cell containing the lastinstance of the maximum of a list, 

use the following array formula:


=ADDRESS(MAX(IF(NumRange=MAX(NumRange),ROW(NumRange)*(NumRange<>""))),

COLUMN(NumRange),4)


This function returns B5, the address of the last '5' in the range.


Download a workbook illustrating these formulas.


Most Common String In A Range


The following array formula will return the most frequently used entry in a range:


=INDEX(Rng,MATCH(MAX(COUNTIF(Rng,Rng)),COUNTIF(Rng,Rng),0))


Where Rng is the range containing the data.


Ranking Numbers


Often, it is useful to be able to return the N highest or lowest values from a range of data.  

Suppose we have a range of numeric data calledRankRng.   Create a range next to 

RankRng (starting in the same row, with the same number of rows) called TopRng. 

Also, create a named cell called TopN, and enter into it the number of values you want to 

return (e.g., 5 for the top 5 values in RankRng). Enter the following formula in the first cell in 

TopRng, and use Fill Down to fill out the range: 


=IF(ROW()-ROW(TopRng)+1>TopN,"",LARGE(RankRng,ROW()-ROW(TopRng)+1))


To return the TopN smallest values of RankRng, use


=IF(ROW()-ROW(TopRng)+1>TopN,"",SMALL(RankRng,ROW()-ROW(TopRng)+1))


The list of numbers returned by these functions will automatically change as you change the 

contents of RankRng or TopN.


Download a workbook illustrating these formulas.


See the Ranking page for much more information about ranking numbers in Excel.


Removing Blank Cells In A Range


The procedures for creating a new list consisting of only those entries in another list, excluding 

blank cells, are described in NoBlanks.


Summing Every Nth Value


You can easily sum (or average) every Nth cell in a column range. For example, suppose you want to sum every 3rd cell. 


Suppose your data is in A1:A20, and N = 3 is inD1.  The following array formula will sum the values in A3, A6, A9, etc.


=SUM(IF(MOD(ROW($A$1:$A$20),$D$1)=0,$A$1:$A$20,0))


If you want to sum the values in A1, A4, A7, etc., use the following array formula:


=SUM(IF(MOD(ROW($A$1:$A$20)-1,$D$1)=0,$A$1:$A$20,0))


If your data ranges does not begin in row 1, the formulas are slightly more complicated. Suppose our data is in B3:B22, and N = 3 is in D1.   To sum the values in rows 5, 8, 11, etc, use the followingarray formula:


=SUM(IF(MOD(ROW($B$3:$B$22)-ROW($B$3)+1,$D$1)=0,$B$3:B$22,0))


If you want to sum the values in rows 3, 6, 9, etc, use the following array formula:


=SUM(IF(MOD(ROW($B$3:$B$22)-ROW($B$3),$D$1)=0,$B$3:B$22,0))


Download a workbook illustrating these formulas.


Miscellaneous


Sheet Name


Suppose our active sheet is named "MySheet" in the file C:\Files\MyBook.Xls.


To return the full sheet name (including the file path) to a cell, use


=CELL("filename",A1)


Note that the argument to the =CELL function is the word "filename" in quotes, not your 

actual filename.


This will return "C:\Files\[MyBook.xls]MySheet"


To return the sheet name, without the path, use


=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,

LEN(CELL("filename",A1))-FIND("]",CELL("filename",A1)))


This will return "MySheet"


File Name


Suppose our active sheet is named "MySheet" in the file C:\Files\MyBook.Xls.


To return the file name without the path, use


=MID(CELL("filename",A1),FIND("[",CELL("filename",A1))+1,FIND("]",

CELL("filename",A1))-FIND("[",CELL("filename",A1))-1)


This will return "MyBook.xls"


To return the file name with the path, use either


=LEFT(CELL("filename",A1),FIND("]",CELL("filename",A1)))Or


=SUBSTITUTE(SUBSTITUTE(LEFT(CELL("filename",A1),FIND("]",

CELL("filename",A1))),"[",""),"]","")


The first syntax will return "C:\Files\[MyBook.xls]"


The second syntax will return "C:\Files\MyBook.xls"


In all of the examples above, the A1 argument to the=CELL function forces Excel to get the sheet name from the sheet containing the formula.   Without it, and Excel calculates the =CELL function when another sheet is active, the cell would contain the name of the active sheet, not the sheet actually containing the formula.



1. SUM

Formula: =SUM(5, 5) or =SUM(A1, B1) or =SUM(A1:B5)

The SUM formula does exactly what you would expect. It allows you to add 2 or more numbers together. You can use cell references as well in this formula.

The above shows you different examples. You can have numbers in there separated by commas and it will add them together for you, you can have cell references and as long as there are numbers in those cells it will add them together for you, or you can have a range of cells with a colon in between the 2 cells, and it will add the numbers in all the cells in the range.

2. COUNT

Formula: =COUNT(A1:A10)

The count formula counts the number of cells in a range that have numbers in them.

This formula only works with numbers though:

It only counts the cells where there are numbers.

**Learn more about the COUNT function in this on-demand, online course. FREE preview**

3. COUNTA

Formula: =COUNTA(A1:A10)

Counts the number of non-empty cells in a range. It will count cells that have numbers and/or any other characters in them.

The COUNTA Formula works with all data types.

It counts the number of non-empty cells no matter the data type.

4. LEN

Formula: =LEN(A1)

The LEN formula counts the number of characters in a cell. Be careful though! This includes spaces.

Notice the difference in the formula results: 10 characters without spaces in between the words, 12 with spaces between the words.

5. TRIM

Formula: =TRIM(A1)

Gets rid of any space in a cell, except for single spaces between words. I’ve found this formula to be extremely useful because I’ve often run into situations where you pull data from a database and for some reason extra spaces are put in behind or in front of legitimate data. This can wreak havoc if you are trying to compare using IF statements or VLOOKUP’s.

I added in an extra space behind “I Love Excel”. The TRIM formula removes that extra space. Check out the character count difference with and without the TRIM formula.

6. RIGHT, LEFT, MID

Formulas: = RIGHT(text, number of characters), =LEFT(text, number of characters), =MID(text, start number, number of characters).

(Note: In all of these formulas, wherever it says “text” you can use a cell reference as well)

These formulas return the specified number of characters from a text string. RIGHT gives you the number of characters from the right of the text string, LEFT gives you the number of characters from the left, and MID gives you the specified number of characters from the middle of the word. You tell the MID formula where to start with the start_number and then it grabs the specified number of characters to the right of the start_number.

I used the LEFT formula to get the first word. I had it look in cell A1 and grab only the 1st character from the left. This gave us the word “I” from “I love Excel”

I used the MID formula to get the middle word. I had it look in cell A1, start at character 3, and grab 5 characters after that. This gives us just the word “love” from “I love Excel”

I used the RIGHT formula to get the last word. I had it look at cell A1 and grab the first 6 characters from the right. This gives us “Excel” from “I love Excel”

7. VLOOKUP

Formula: =VLOOKUP(lookup_value, table_array, col_index_num, range_lookup)

By far my most used formula. The official description of what it does: “Looks for a value in the leftmost column of a table, and then returns a value in the same row from a column you specify…”. (See the full explanation of VLOOKUP) Basically, you define a value (the lookup_value) for the formula to look for. It looks for this value in the leftmost column of a table (the table_array).

Note: If at all possible use a number for the lookup_value. This makes it a lot easier to make sure the data you are getting back is a correct match.

If it finds a match of the “lookup_value” in the left column of the “table_array” it will return the value in the column you specify using the “index_num”. The “index_num” is relative to the left mostcolumn. So, if you have the table_index look in column A and you want what is returned to be what’s in column B the “index_num” would be 2 because the leftmost column, column A in this case, is the 1st column in the table array and column B is the 2nd column (hence the 2 for the index number). If you want what is in column C to be returned you’d put 3 for the index_num. The “range_lookup” is a TRUE or FALSE value. If you put TRUE it will give you the closest match. If you put FALSE it will only give you an exact match. I only use FALSE when using the VLOOKUP formula.

Example:

You have 2 lists: 1 with a sales person’s ID and the sales revenue for the quarter. Another with the sales person’s ID and the sales person’s name. You want to match up the sales person’s name to the sales person’s revenue numbers for the quarter. They are all jumbled around so to manually match this, even for a small number of salesmen would leave room for a high margin of error and take a lot of time.

The first list goes from A1 to B13. The 2nd list goes from D1 to E25.

In cell C1 I would put the formula =VLOOKUP(B18, $A$1:$B$13, 2, FALSE)

B18 = the lookup_value (the sales person’s ID. This is a number that appears on both lists.)

$A$1:$B$13 = the “table_array”. This is the area I want the formula to search the leftmost column (column E in this case) for the “lookup_value”. I went to F because if it finds match in column E, I want it to return what’s in column F. (The money signs are there so that the table_array will stay the same no matter where the formula is moved or copied to. This is called an absolute reference.)

2 = the index_num. This tells the formula the number of columns away from the left most column to return in case of match. So, if you find a match between the lookup_value and the leftmost column of the table array, return what’s in the same row in the 2nd column of the table (the 1st column is always the leftmost column. It starts at 1, not 0).

FALSE= tells the formula I want it to only return the value if it’s an exact match.

I would then copy and paste that formula along all the cells in column C next to the first list. This would give me a perfectly aligned list with the sales person’s ID, sales person’s revenue for the quarter, and the sales person’s name.

In order to get a nice neat list of Sales Person ID, Sales Person Name, and Sales Person Revenue all next to each other I used the VLOOKUP formula to compare 1 list to another.

This is a complicated formula, but an extremely useful one. Check out some other examples: Vlookup Example,Microsoft’s Official Example.

**Learn more about the VLOOKUP function in this on-demand, online course. FREE preview**

8. IF Statements

Formula: =IF(logical_statement, return this if logical statement is true, returnthis if logical statement is false)

When you’re doing an analysis of a lot of data in Excel there are a lot of scenarios you could be trying to discover and the data has to react differently based on a different situation.

Continuing with the sales example: Let’s say a salesperson has a quota to meet. You used VLOOKUP to put the revenue next to the name. Now you can use an IF statement that says: “IF the salesperson met their quota, say “Met quota”, if not say “Did not meet quota” (Tip: saying it in a statement like this can make it a lot easier to create the formula, especially when you get to more complicated things like Nested IF Statements in Excel).

It would look like this:

In the example with the VLOOKUP we had the revenue in column B and the person’s name in column C (brought in with the VLOOKUP). We could put their quota in column D and then we’d put the following formula in cell E1:

=IF(C3>D3, “Met Quota”, “Did Not Meet Quota”)

This IF statement will tell us if the first salesperson met their quota or not. We would then copy and paste this formula along all the entries in the list. It would change for each sales person.

Having the result right there from the IF statement is a lot easier than manually figuring this out.

9. SUMIF, COUNTIF, AVERAGEIF

Formulas: =SUMIF(range, criteria, sum_range), =COUNTIF(range, criteria), =AVERAGEIF(range, criteria, average_range)

These formulas all do their respective functions (SUM, COUNT, AVERAGE) IF the criteria are met. There are also the formulas: SUMIFS, COUNTIFS, AVERAGEIFS where they will do their respective functions based on multiple criteria you give the formula.

I use these formulas in our example to see the average revenue (AVERAGEIF) if a person met their quota, Total revenue (SUMIF) for the just the sales people who met their quota, and the count of sales people who met their quota (COUNTIF)

10. CONCATENATE

A fancy word for combining data in 2 (or more) different cells into one cell. This can be done with the Concatenate excel formula or it can be done by simply putting the & symbol in between the two cells. If I have “Steve” in cell A1 and “Quatrani” in cell B1 I could put this formula: =A1&” “&B1 and it would give me “Steve Quatrani”. (The “ “ puts aspace in between what you are combining with the &). I can use =concatenate(A1, “ “, B1) and it will give me the same thing: “Steve Quatrani”

Finding The Right Excel Formulas For The Job

There are 316 built in functions in Excel. You’re not going to sit there and memorize what all of them do (or at least I hope not!). Luckily Excel has a built in wizard that helps you find the correct formula for what you’re looking to do (if there is one).

Click the “fx” next to the formula bar in Excel

This brings up a menu and in there you can type in a description of what you are trying to do and it will bring up the correct excel formula:

I typed in “remove extra spaces” and it returned the TRIM formula that we went over earlier.

Excel basic formula




Formulas and Functions

 

Enter a Formula | Edit a Formula | Operator Precedence | Copy/Paste a Formula | Insert a Function

formula is an expression which calculates the value of a cell. Functions are predefined formulas and are already available in Excel.

For example, cell A3 below contains a formula which adds the value of cell A2 to the value of cell A1.

For example, cell A3 below contains the SUM function which calculates the sum of the range A1:A2.

Enter a Formula

To enter a formula, execute the following steps.

1. Select a cell.

2. To let Excel know that you want to enter a formula, type an equal sign (=).

3. For example, type the formula A1+A2.

Tip: instead of typing A1 and A2, simply select cell A1 and cell A2.

4. Change the value of cell A1 to 3.

Excel automatically recalculates the value of cell A3. This is one of Excel's most powerful features!

Edit a Formula

When you select a cell, Excel shows the value or formula of the cell in the formula bar.

1. To edit a formula, click in the formula bar and change the formula.

2. Press Enter.

Operator Precedence

Excel uses a default order in which calculations occur. If a part of the formula is in parentheses, that part will be calculated first. It then performs multiplication or division calculations. Once this is complete, Excel will add and subtract the remainder of your formula. See the example below.

First, Excel performs multiplication (A1 * A2). Next, Excel adds the value of cell A3 to this result.

Another example,

First, Excel calculates the part in parentheses (A2+A3). Next, it multiplies this result by the value of cell A1.

Copy/Paste a Formula

When you copy a formula, Excel automatically adjusts the cell references for each new cell the formula is copied to. To understand this, execute the following steps.

1. Enter the formula shown below into cell A4.

2a. Select cell A4, right click, and then click Copy (or press CTRL + c)...

...next, select cell B4, right click, and then click Paste under 'Paste Options:' (or press CTRL + v).

2b. You can also drag the formula to cell B4. Select cell A4, click on the lower right corner of cell A4 and drag it across to cell B4. This is much easier and gives the exact same result!

Result. The formula in cell B4 references the values in column B.

Insert a Function

Every function has the same structure. For example, SUM(A1:A4). The name of this function is SUM. The part between the brackets (arguments) means we give Excel the range A1:A4 as input. This function adds the values in cells A1, A2, A3 and A4. It's not easy to remember which function and which arguments to use for each task. Fortunately, the Insert Function feature in Excel helps you with this.

To insert a function, execute the following steps.

1. Select a cell.

2. Click the Insert Function button.

The 'Insert Function' dialog box appears.

3. Search for a function or select a function from a category. For example, choose COUNTIF from the Statistical category.

4. Click OK.

The 'Function Arguments' dialog box appears.

5. Click in the Range box and select the range A1:C2.

6. Click in the Criteria box and type >5.

7. Click OK.

Result. Excel counts the number of cells that are higher than 5.

Note: instead of using the Insert Function feature, simply type =COUNTIF(A1:C2,">5"). When you arrive at: =COUNTIF( instead of typing A1:C2, simply select the range A1:C2.



భారత దేశము

భారత గణతంత్ర రాజ్యము నూటఇరవై కోట్లకు పైగాజనాభా తో ప్రపంచంలో అత్యధిక జనాభా కలిగిన దేశాలలో రెండవది. వైశాల్యము లో ప్రపంచంలోఏడవదిభారత ఆర్ధిక వ్యవస్థ యొక్క స్థూల జాతీయోత్పత్తిపర్చేసింగ్ పవర్ పారిటీ) ప్రకారం నాలుగో స్థానంలో ఉంది. ప్రపంచంలో అతివేగంగా వృద్ధి చెందుతున్న వ్యవస్థలలో ఇది ఒకటి. ప్రపంచం లోనే అతి పెద్ద స్వేచ్ఛాయుత ప్రజాస్వామ్యము ఐన భారతదేశం, ప్రపంచంలోనే అతి పెద్ద సైనిక సామర్థ్యం కలిగి ఉన్న దేశాలలో ఒకటిగా, అణ్వస్త్ర సామర్థ్యం కలిగన దేశంగా ఒక ముఖ్యమైన ప్రాంతీయ శక్తిగా ఆవిర్భవించినది.

దక్షణాసియాలో ఏడు వేల కిలోమీటర్లకు పైగా సముద్రతీరము కలిగి ఉండి, భారత ఉపఖండములోఅధిక భాగాన్ని కూడుకొని ఉన్న భారతదేశం, అనేక చారిత్రక వాణిజ్య రహదారుల పైన ఉన్నది. దక్షిణాన హిందూ మహాసముద్రం, నైరుతిన అరేబియా సముద్రం, మరియు ఆగ్నేయాన బంగాళాఖాతం ఎల్లలుగా ఉన్నాయి. పాకిస్తాన్చైనామయన్మార్,బంగ్లాదేశ్నేపాల్భూటాన్ మరియు ఆఫ్ఘానిస్తాన్[1]దేశాలతో సరిహద్దులను పంచుకుంటోంది. శ్రీలంక,మాల్దీవులు మరియు ఇండోనేసియా భారతదేశం దగ్గరలో గల ద్వీప-దేశాలు. భారతదేశము కొన్నిపురాతన నాగరికతలకు పుట్టిల్లు మరియు నాలుగు ముఖ్య ప్రపంచ మతాలకు (హిందూ మతముబౌద్ధ మతముజైన మతము మరియు సిక్కు మతము) జన్మనిచ్చినది. 18 వ శతాబ్దం నుండి బ్రిటిష్ ఈస్ట్ ఇండియా కంపెనీ క్రమంగా స్వాధీనం చేసుకోవడంతో భారతదేశం బ్రిటిష్ కంపెనీ పరిపాలన కిందకు వచ్చింది. 19 వ శతాబ్దం మధ్య నుండి నేరుగా యునైటెడ్ కింగ్డమ్ నుండే పాలించబడింది. మహాత్మా గాంధీ నాయకత్వాన స్వాతంత్ర్యం కోసం చేసిన అహింసాయుత పోరాటం తర్వాత 1947 లో ఒక స్వతంత్ర దేశంగా ఆవిర్భవించింది. 1947 లో బ్రిటిష్ పరిపాలన నుండి విముక్తి పొందింది.

భారత ఆర్థిక వ్యవస్థ నామమాత్ర GDP మరియు కొనుగోలు శక్తి తుల్యత (PPP) ద్వారా మూడవ అతిపెద్ద ద్వారా ప్రపంచ పదకొండో స్థానంలో ఉంది. 1991 లో మార్కెట్ ఆధారిత ఆర్థిక సంస్కరణలు అనుసరిస్తూ, భారతదేశం వేగంగా అభివృద్ధి చెందుతున్న ప్రధాన ఆర్థిక దేశాలలో ఒకటి అయింది.భారత దేశన్ని కొత్తగా పారిశ్రామీకరణ జరిగిన దేశం గా భావిస్తారు. అయితే, పేదరికం, నిరక్షరాస్యత, అవినీతి, పోషకాహార లోపం, మరియు తగని ప్రజా ఆరోగ్య సవాళ్లను ఎదుర్కుంటూ ఉంది. ఒక అణ్వాయుధ మరియు ప్రాంతీయ శక్తి, ప్రపంచంలో మూడవ అతిపెద్ద సైన్యం కలిగి ఉంది. ప్రపంచ దేశాల సైనిక వ్యయంలో ఎనిమిదవ స్థానంలో ఉంది. భారతదేశం 29 రాష్ట్రాలు మరియు 7 కేంద్రపాలిత ప్రాంతాలు కలిగి, పార్లమెంటరీ వ్యవస్థ కింద పాలించబడే ఒక ఫెడరల్ రాజ్యాంగ గణతంత్రం. భారతదేశం ఒక, బహుభాషా, మరియు బహుళ జాతి సొసైటీ. ఇది వివిధ వన్యప్రాణుల వైవిధ్యం గల దేశము.

National symbols of the Republic of India (Official)National animalNational birdNational treeNational flowerNational heritage animalNational aquatic marine mammalNational reptileNational heritage mammalNational fruitNational templeNational riverNational mountain

పేరు పుట్టుపూర్వోత్తరాలుసవరించు

ముఖ్య వ్యాసము: భారతదేశ పేరు పుట్టుపూర్వోత్తరాలు

భారత దేశానికి మొత్తం నాలుగు పేర్లు ఉన్నట్లు చెప్పుకోవచ్చు. వీటిలో మొదటిది జంబూ ద్వీపం. ఇది వేదాలలో భారతదేశానికి ఇవ్వబడిన పేరు, ఇప్పటికీ హిందూ మత ప్రార్థనలలో ఈ పేరు ఉపయోగిస్తారు (ఉదా: జంబూ ద్వీపే, మేరో దక్షిణభాగే, శ్రీశైల ఉత్తర భాగే, కృష్ణా గోదావారీ మధ్య స్థానే......). జంబూ అంటే "నేరేడు" పండు లేదా "గిన్నె కాయ", ఈ దేశంలో ఎక్కువగా నేరేడు పండ్లు ఉంటాయి కనుక దీనికి ఈ పేరు వచ్చినది.

ఆ తరువాత వచ్చిన పేరు "భారతదేశం" లేదా "భరతవర్షం", ఈ పేరు నాటి రాజు పేరు మీదగా వచ్చినది, ఈ రాజు పేరు "భరతుడు". ఇతనువిశ్వామిత్రమేనకల కుమార్తె అయిన శకుంతలయొక్క కుమారుడు.

తరువాతి పేరు హిందూదేశం, ఇది సింధుానది పేరు మీదగా వచ్చినది, పూర్వపు పర్షియనులు, గ్రీకులు సింధుానదికి ఆవల ఉన్న దేశం కనుక ఈ పేరుతో పిలిచారు. తరువాత హిందూదేశం యొక్క రూపాంతరం ఐన ఇండియా అనే పేరు, బ్రిటీషు వారి వలన ప్రముఖ ప్రాముఖ్యతను పొందినది, ప్రస్తుతము భారతదేశానికి రెండు ప్రభుత్వ గుర్తింపు పొందిన పేర్లు కలవు, అవి ఇండియా, భారతదేశం. ఇంకా హిందూస్తాన్ అనునది కూడా హిందూదేశం యొక్క రూపాంతరమే!

చరిత్రసవరించు

అశోకుడిచే క్రీ.పూ.3 వ శతాబ్దంలో మధ్య ప్రదేశ్ లోని సాంచీలో నిర్మించబడిన స్థూపం.

ముఖ్య వ్యాసము: భారతదేశ చరిత్ర

మధ్య ప్రదేశ్‌ లోని భింబెట్కా వద్ద లభ్యమైనరాతియుగపు శిలాగృహాలు, కుడ్యచిత్రాలు భారతదేశంలో మానవుని అతి ప్రాచీన ఉనికికి ఆధారాలు. మొట్టమొదటి శాశ్వత నివాసాలు 9,000 సంవత్సారాల కిందట ఏర్పడ్డాయి. క్రి.పూ. 7000 సమయంలో, మొట్టమొదటి నియోలిథిక్ స్థావరాలు పశ్చిమ పాకిస్తాన్ లో మెహర్గర్ మరియు ఇతర ఉపఖండపు ప్రాంతాల్లో కనిపించింది. ఈ విదంగా సింధుాలోయ నాగరికత అభివృద్ధి, దక్షిణ ఆసియా లో మొదటి పట్టణ సంస్కృతి అభివృద్ధి చెందాయి. ఇదేక్రీ.పూ.26 వ శతాబ్దం మరియు క్రీ.పూ.20 వ శతాబ్దంమధ్య కాలంలో వర్ధిల్లిన సింధులోయ నాగరికత.క్రీ.పూ.5 వ శతాబ్దం నుండి, ఎన్నో స్వతంత్ర రాజ్యాలు ఏర్పడ్డాయి. ఉత్తర భారతంలో, మౌర్య సామ్రాజ్యం, భారతీయ సాంస్కృతిక వారసత్వానికి విలువైన సేవ చేసింది. అశోకుడు ఈ వంశంలోని ప్రముఖ రాజు. తరువాతి వచ్చిన గుప్తులకాలం స్వర్ణ యుగం గా వర్ణించబడింది. దక్షిణాన, వివిధ కాలాల్లో చాళుక్యులు,చేరచోళులుపల్లవులుపాండ్యులు మొదలగువారు పాలించారు. విజ్ఞాన శాస్త్రముకళలుసారస్వతం,భారతీయ గణితంభారతీయ ఖగోళ శాస్త్రంసాంకేతిక శాస్త్రంభారతీయ మతములుభారతీయ తత్వ శాస్త్రంమొదలైనవి ఈ కాలంలో పరిఢవిల్లాయి. రెండవ సహస్రాబ్దిలో తురుష్కుల దండయాత్రలతో, భారతదేశంలో ఎక్కువ భాగాన్ని ఢిల్లీ సుల్తానులు, తరువాత మొగలులు పాలించారు. అయినా, ముఖ్యంగా దక్షిణాన స్థానిక సామ్రాజ్యాలు అధికారాన్ని నిలబెట్టుకున్నాయి.

రెండవ సహస్రాబ్ది మధ్యలో, పోర్చుగల్ఫ్రాన్స్,ఇంగ్లండు వంటి ఐరోపా రాజ్యాలు వ్యాపారం చేసే తలంపుతో భారతదేశం వచ్చి, చిన్న చిన్న రాజ్యాలుగా ఉన్న ఇక్కడి పరిస్థితి గమనించి, ఆక్రమించుకున్నారు. బ్రిటిషు ఈస్ట్ ఇండియా కంపెనీపై 1857లో జరిగిన విఫల తిరుగుబాటు (ఇదే, ప్రఖ్యాతి గాంచిన ప్రథమ స్వాతంత్ర్య సమరం) తరువాత, భారతదేశంలోని అధిక భాగం బ్రిటిషు సామ్రాజ్యం కిందకు వచ్చింది. జాతిపితమహాత్మా గాంధీ నాయకత్వంలో జరిగిన సుదీర్ఘస్వాతంత్ర్య సమరం ఫలితంగా 1947 ఆగష్టు 15నభారతదేశానికి స్వతంత్రం సిద్ధించింది. 1950 జనవరి 26న సర్వసత్తాక, ప్రజాస్వామ్య, గణతంత్ర రాజ్యంగా ఏర్పడింది.

విభిన్న జాతులు, విభిన్న మతాలతో కూడిన దేశంగా భారతదేశం - జాతి, మత పరమైన సంఘర్షణలను చవిచూసింది. అయినా, తన లౌకిక, ప్రాజాస్వామ్య లక్షణాన్ని కాపాడుకుంటూనే వచ్చింది. 19751977మధ్యకాలంలో అప్పటి ప్రధానమంత్రి ఇందిరా గాంధీవిధించిన ఎమర్జెన్సీ కాలంలో మాత్రమే పౌర హక్కులకుభంగం వాటిల్లింది. భారత దేశానికి చైనాతో ఉన్న సరిహద్దు వివాదం కారణంగా 1962లో యుద్ధంజరిగింది. పాకిస్తాన్తో 19471965, మరియు1971లోను యుద్ధాలు జరిగాయి. అలీనోద్యమంలోభారతదేశం స్థాపక సభ్యురాలు. 1974లో, భారత్ తన మొదటి అణు పరీక్షను నిర్వహించింది. 1998లో మరో ఐదు పరీక్షలు నిర్వహించింది. 1991లో జరిగిన ఆర్ధిక సంస్కరణలతో ప్రపంచంలో అతివేగంగా అభివృద్ధి చెందుతున్న దేశాలలో ఒకటిగా మారింది.

నృసింహావతారం లో ఉన్న విష్ణుమూర్తి.

ఇంకా చూడండి:

భారతదేశ చరిత్ర - ముఖ్యమైన ఘట్టాలుభారతదేశ సైనిక చరిత్ర

ప్రభుత్వము మరియు రాజకీయాలుసవరించు

ప్రధాన వ్యాసము: భారత రాజకీయ వ్యవస్థ

భారత దేశం ఒక ప్రజాస్వామ్య గణతంత్ర రాజ్యంగా 26 జనవరి 1950న అవతరించింది. భారత రాజ్యాంగంప్రకారం అధికారం లెజిస్లేచర్, న్యాయవ్యవస్థ, నిర్వహణ వ్యవస్థల ద్వారా అమలవుతుంది.

ఇది పలు రాష్ట్రాల సమాఖ్యదేశాధినేత అయినరాష్ట్రపతి పదవి అలంకార ప్రాయమైనది. రాష్ట్రపతి,ఉపరాష్ట్రపతులు పరోక్ష పద్ధతిలో ఎలక్టోరల్ కాలేజిద్వారా ఐదేళ్ళ కాలపరిమితికి ఎన్నుకోబడతారు.

ప్రధానమంత్రి కార్యనిర్వాహక అధికారాలు గల పదవి.లోక్‌సభలో అత్యధిక సంఖ్యాక రాజకీయ పార్టీ, లేదాసంకీర్ణం సభ్యులు ప్రధానమంత్రిని ఎన్నుకుంటుంది. ప్రధానమంత్రి సలహా మేరకు, రాష్ట్రపతిచే నితమించబడ్డమంత్రివర్గం ప్రధానమంత్రికి తన విధి నిర్వహణలో సహాయకంగా ఉంటుంది. మంత్రులచే రాష్ట్రపతి ప్రమాణ స్వీకారం చేయిస్తారు.

భారత దేశపు శాసన వ్యవస్థలో ద్విసభా పద్ధతి ఉంది. ఎగువ సభను రాజ్య సభ అని, దిగువ సభను లోక్ సభఅని అంటారు. లోక్ సభ సభ్యులను ప్రజలు ప్రత్యక్షంగా ఎన్నుకుంటారు. రాజ్య సభ సభ్యులు ఎలక్టోరల్ కాలేజీద్వారా ఎన్నుకోబడతారు.

న్యాయవ్యవస్థ లో పరమోన్నత న్యాయస్థానమైన సుప్రీం కోర్టు, మరియు అప్పిలేట్ కోర్టులు, హైకోర్టులు ఉంటాయి. కోర్టులకు సూచనలు, ఆదేశాలు, రిట్లు ఇచ్చే అధికారం ఉంది. రిట్లలో హెబియస్ కార్పస్,మాండమస్నిషేధంకోవారంటో మరియుసెర్టియోరారి అనే వివిధ రకాలుగా ఉన్నాయి. భారతీయ కోర్టులు రాజ్యాంగ శక్తులు; ఇవి రాజకీయ జోక్యం లేనివి. న్యాయ వ్యవస్థకు, శాసన వ్యవస్థకు అరుదుగా ఏర్పడే ఘర్షణను రాష్ట్రపతి మధ్యవర్తిత్వం వహించి నివారిస్తారు.

స్వతంత్ర భారత చరిత్రలో అత్యధిక భాగం, కేంద్ర ప్రభుత్వంలో భారత జాతీయ కాంగ్రెసు పార్టీ అధికారంలో ఉంటూ వచ్చింది. స్వాతంత్ర్యానికి పూర్వం అతిపెద్ద రాజకీయ పక్షం కావడం చేత, స్వాతంత్ర్యం తరువాత దాదాపు 40 ఏళ్ళపాటు దేశరాజకీయాల్లో కాంగ్రెసు గుత్తాధిపత్యం వహించింది. 1977లో జనతా పార్టీ గా ఏర్పడ్డ ఐక్య ప్రతిపక్షం కాంగ్రెసును ఓడించి, మొట్టమొదటి కాంగ్రెసేతర ప్రభుత్వాన్ని ఏర్పరచింది. ఇటీవలి కాలంలో, భారత ఓటర్లపై గల పట్టును కాంగ్రెసు పార్టీ కోల్పోతూ వచ్చింది. 2004 సార్వత్రిక ఎన్నికలలోఅత్యధిక స్థానాలు గెలిచిన కాంగ్రెసు పార్టీ, వివిధ చిన్న పార్టీలతో కలిసి సంకీర్ణ ప్రభుత్వాన్ని ఏర్పాటు చేసింది. హిందూ వాద పార్టీ అయిన భాజపా ప్రధాన ప్రతిపక్షమైంది. ప్రాంతీయ పార్టీల ప్రాబల్యం కారణంగా1996 తరువాత ఏర్పడిన ప్రభుత్వాలన్నీ సంకీర్ణాలేకాగా 2014 లో జరిగిన సార్వత్రిక ఎన్నికల్లో మాత్రం కాంగ్రెస్ పార్టీ ఘోర పరాజయం పాలయింది .ఈ ఎన్నికల్లో కాంగ్రెస్ పార్టీ కి పదిశాతం లోక్‌సభ స్థానాలను గెలుచుకోవడం కూడా కష్టంకాగా భారతీయ జనతా పార్టీ మాత్రం మొదటిసారిగా అత్యధిక స్థానాలను గెలుచుకోవడం విశేషం.

ఇంకా చూడండి :

భారత దేశపు రాజకీయ పార్టీలుభారత ఎన్నికల విధానంకేంద్ర మంత్రుల జాబితాభారత దేశ అంతర్జాతీయ సంబంధాలు

భౌగోళిక స్వరూపము, వాతావరణంసవరించు

భారతదేశం విశిష్ట లక్షణాలు గల ఒక ఉపఖండం అని పేర్కొనవచ్చు. భారతదేశంలో అనేక భౌతిక, ఆర్థిక, సాంఘిక, సాంస్కృతిక తారతమ్యాలున్నాయి. భారతదేశంలో ఆనాది నుంచి అనేక మతాలు, జాతులు, కులాలు,భాషలు, కులాలు, ఆచారాలు, సంప్రదాయాలు ఉండుటచే దీన్ని భౌగోళిక బిన్నత్వంలో ఏకత్వంగల దేశంగా గుర్తించవచ్చు.

హిమాలయాలు ఉత్తరాన జమ్మూ కాశ్మీరు నుండి తూర్పునఅరుణాచల్ ప్రదేశ్ వరకు విస్తరించి భారత దేశపు ఉత్తర సరిహద్దుగా విలసిల్లుతున్నాయి.

భారతదేశం, ఉపగ్రహ చిత్రం.

భారతదేశపు ఉత్తర, ఈశాన్య రాష్ట్రాలు హిమాలయ పర్వతాలతో కూడుకుని ఉన్నాయి. మిగిలిన ఉత్తర భారతం, మధ్య, ఈశాన్య ప్రాంతాలు సారవంతమైనగంగా మైదానంతో కూడి ఉన్నాయి. పశ్చిమాన,పాకిస్థాన్ కు ఆగ్నేయ సరిహద్దున థార్ ఎడారి ఉన్నది. దక్షిణ భారత ద్వీపకల్పం దాదాపు పూర్తిగా దక్కను పీఠభూమితో కూడుకుని ఉంది. ఈ పీఠభూమికి రెండువైపులా తూర్పు కనుమలుపశ్చిమ కనుమలుఉన్నాయి.

భారతదేశంలో ఎన్నో ప్రముఖ నదులు ఉన్నాయి. వాటిలో కొన్ని: గంగయమునబ్రహ్మపుత్రకృష్ణ,గోదావరి.

దేశపు దక్షిణాన ఉష్ణ వాతావరణం ఉండగా, ఉత్తరానసమశీతోష్ణ వాతావరణం నెలకొని ఉంది. హిమాలయ ప్రాంతాల్లో అతిశీతల వాతావరణం (టండ్రా) ఉంది. భారత దేశంలో వర్షాలు ఋతుపవనాలు వలన కలుగుతాయి.

ఇంకా చూడండి :

భారతదేశ వాతావరణంభారత జాతీయ వనాలు

రాష్ట్రాలు మరియు కేంద్రపాలిత ప్రాంతాలుసవరించు

ప్రధాన వ్యాసము: భారతదేశ రాష్ట్రాలు మరియు కేంద్రపాలిత ప్రాంతాలు

భారతదేశము 29 రాష్ట్రాలుగా విభజించబడినది. (రాష్ట్రములు కొన్నిజిల్లాలుగా విభజించబడినవి), ఆరుకేంద్రపాలిత ప్రాంతములు మరియు జాతీయ రాజధాని ప్రాంతము,ఢిల్లీ. రాష్ట్రాలకు స్వంతmga ఎన్నికైన ప్రభుత్వము ఉండును, కానీ కేంద్రపాలిత ప్రాంతాలు కేంద్ర ప్రభుత్వముచే నియమించబడిన ప్రతినిధిచే పరిపాలించ బడతాయి.

భారతదేశ రాష్ట్రాలు.

రాష్ట్రములు:

ఆంధ్ర ప్రదేశ్అరుణాచల్ ప్రదేశ్అస్సాంబీహార్చత్తీస్ గఢ్గోవాగుజరాత్హర్యానాహిమాచల్ ప్రదేశ్జమ్మూ మరియు కాశ్మీర్జార్ఖండ్కర్ణాటకకేరళమధ్య ప్రదేశ్మహారాష్ట్రమణిపూర్మేఘాలయమిజోరాంనాగాలాండ్ఒడిషాపంజాబ్రాజస్థాన్సిక్కింతమిళనాడుతెలంగాణత్రిపురఉత్తరాఖండ్ఉత్తర ప్రదేశ్పశ్చిమ బెంగాల్

కేంద్రపాలిత ప్రాంతములు:

అండమాన్ మరియు నికోబార్ దీవులుఛండీగఢ్దాద్రా నాగర్ హవేలీడామన్ మరియు డయ్యులక్షద్వీపములుపాండిచ్చేరి

జాతీయ రాజధాని ప్రాంతము:

ఢిల్లీ

భారతదేశము అంటార్క్‌టికాలో territorial claim చేయలేదు కానీ దక్షిణ గంగోత్రి మరియు మైత్రి అను రెండు శాస్త్రీయ స్థావరాలు కలవు.

చూడండిజనాభా వారిగా భారతదేశ రాష్ట్రాల జాబితా

ఆర్ధిక వ్యవస్థసవరించు

ప్రధాన వ్యాసము: భారత ఆర్ధిక వ్యవస్థ

వేగంగా అభివృద్ధి చెందుతున్న భారతదేశం యొక్క ఆర్ధికవ్యవస్థ, ద్రవ్య మారకం పరంగా ప్రపంచంలోనే పదో పెద్ద వ్యవస్థ. పర్చేసింగ్ పవర్ పారిటీ ప్రకారం ఇది నాలుగో స్థానంలో ఉంది. 2003 లో అత్యధిక వృద్ధి రేటు - 8 శాతం - నమోదు చేసుకుంది. అయితే, అధిక జనాభా కారణంగా, పి.పి.పి ప్రకారం తలసరి ఆదాయం కేవలం 2,540 డాలర్లుగా ఉంది; ప్రపంచ బాంకు జాబితాలో ఇది 143 వ స్థానం. భారత విడేశీమారక నిల్వలు 30 వేల 900 కోట్ల డాలర్లు. దేశానికి ఆర్ధిక రాజధానిగా ముంబై నగరం భాసిల్లుతోంది. భారతీయ రిజర్వ్ బాంక్ కేంద్ర కార్యాలయం, బాంబే స్టాక్ ఎక్స్ఛేంజీనేషనల్ స్టాక్ ఎక్స్చేంజి ఇక్కడే ఉన్నాయి. 25% ప్రజలు ఇంకాదారిద్ర్య రేఖకు దిగువనే ఉన్నారు. ఇన్‌ఫర్మేషన్ టెక్నాలజీ రంగం విస్తరణ కారణంగా మధ్య తరగతివర్గం విస్తరిస్తోంది.

1300 కోట్ల డాలర్ల ఇన్‌ఫర్మేషన్ టెక్నాలజీ పరిశ్రమ భారత్ లోని అత్యంత వేగంగా వృద్ధి చెందుతున్న వాటిల్లో ఒకటి. చిత్రంలో ఉన్నది అగ్రశ్రేణి ఐ.టి సంస్థ,ఇన్‌ఫోసిస్.

చారిత్రకంగా భారత ఆర్ధిక వ్యవస్థ ఆధారపడినవ్యవసాయం పాత్ర ప్రస్తుతం తగ్గిపోయింది. ప్రస్తుతం ఇది దేశ స్థూలాదాయంలో 25% కంటే తక్కువే. ముఖ్యమైన పరిశ్రమలు గనులుపెట్రోలియంవజ్రాలు,సినిమాలుజౌళిఇన్‌ఫర్మేషన్ టెక్నాలజీ, మరియు హస్త కళలు. భారత్ దేశపు పారిశ్రామిక ప్రాంతాలు ఎక్కువగా ప్రధాన పట్టణాల చుట్టూ కేంద్రీకృతమై ఉన్నాయి. గత కొన్ని సంవత్సరాలలో సాఫ్ట్‌వేర్, బిజినెస్ ప్రాసెస్ ఔట్‌సొర్సింగ్ రంగాల్లో ప్రపంచంలోని పెద్ద కేంద్రాల్లో ఒకటిగా రూపొందింది. 2003-2004 లో ఈ రంగాల ఆదాయం 1250 కోట్ల డాలర్లు. చిన్న పట్టణాలు, పల్లెల్లోని ప్రజలకు స్థిరమైన ఉపాధి కల్పించే ఎన్నో లఘు పరిశ్రమలు కూడా ఉన్నాయి. ఏటా దేశాన్ని సందర్శించే విదేశీ యాత్రికులు 30 లక్షల మంది మాత్రమే అయినప్పటికీ, జాతీయాదాయంలో ఈ రంగం పాత్ర ప్రముఖమైనదే. అమెరికాచైనాయు.ఏ.ఇ మరియుఐరోపా సమాఖ్యలు భారత దేశపు ముఖ్య వ్యాపార భాగస్వాములు.

ఇంకా చూడండి : భారతీయ కంపెనీల జాబితా

జనాభా వివరాలుసవరించు

ప్రధాన వ్యాసము: భారత జనాభా వివరాలు

భారత దేశము, చైనా తరువాత ప్రపంచంలోని రెండో అత్యధిక జనాభా గల దేశం. ఎన్నో భిన్నత్వాలు గల జనాభా యొక్క సామాజిక, రాజకీయ వర్గీకరణలో భాష, మతం, కులం అనే మూడు ప్రముఖ పాత్ర వహిస్తాయి. దేశంలోని అతిపెద్ద నగరాలు - ముంబై(వెనుకటి బాంబే), ఢిల్లీకోల్కతా (వెనుకటి కలకత్తా), మరియు చెన్నై (వెనుకటి మద్రాసు ), హైదరాబాద్

భారత దేశం యొక్క ఆక్షరాస్యత 74.04%, ఇందులో పురుషుల అక్షరాస్యత 82.14% మరియు మహిళల అక్షరాస్యత 53.7%. ప్రతి 1000 మంది పురుషులకు 940 మంది స్త్రీలు ఉన్నారు.

దేశంలోని 80.5% ప్రజలు హిందువులైనప్పటికీ, ప్రపంచంలోని రెండో అత్యధిక ముస్లిము జనాభా ఇక్కడ ఉన్నారు. (13.4%). ఇతర మతాలు: క్రైస్తవులు(2.33%), సిక్కులు (1.84%), బౌద్ధులు (0.76%),జైనులు (0.40%), యూదులుపార్సీలు,అహ్మదీయులు, మరియు బహాయీలు. దేశంలో ఎన్నో మత సంబంధ కార్యక్రమాలు భక్తిశ్రద్ధలతో, ఉత్సాహంగా, బహిరంగంగా జరుపుకుంటారు. అనేక మతాల కలగలుపు అయిన భారత దేశంలో పండుగలుఅందరూ కలిసి జరుపుకుంటారు. వీటిలో బాగా విస్తృతంగా జరుపుకునే హిందూ పండుగలుశ్రీరామనవమి,వినాయక చవితి,సంక్రాంతి,దీపావళి,హొలీ మరియు దసరా.

భారత దేశం రెండు ప్రముఖ భాషా కుటుంబాలకుజన్మస్థానం. అవి, ఇండో-ఆర్యన్ మరియు ద్రావిడ భాషలు. భారత రాజ్యాంగం 22 భాషలను అధికారికంగా గుర్తించింది. కేంద్ర ప్రభుత్వం అధికార కార్యక్రమాలలో హిందీఇంగ్లీషు భాషలను ఉపయోగిస్తుంది. దేశంలోని నాలుగు ప్రాచీన భాషలుసంస్కృతంతెలుగు,కన్నడం మరియు తమిళం. దేశంలో మొత్తం 1652 మాతృ భాషలు ఉన్నాయి.

భారత దేశములో 11 పెద్ద నగరాలుసవరించు

ముంబాయిఢిల్లీకోల్కతాచెన్నైహైదరాబాదుబెంగుళూరుఅహమ్మదాబాదుపూణేకాన్పూర్సూరత్విజయవాడవిశాఖపట్నంతిరుపతి

ప్రాచీన భార‌తంలో ర‌వాణా వ్య‌వ‌స్థ‌సవరించు

రవాణా సౌకర్యాలుసవరించు

దేశ ఆర్థిక వ్యవస్థలో ప్రధాన పాత్ర వహించే రవాణా సౌకర్యాలలో భారత దేశం మంచి ప్రగతిని సాధించింది. మొత్తం 4 రకాల రవాణా సౌకర్యాలు భారత దేశంలో కలవు.

రైలు మార్గాలుసవరించు

దేశంలో రైలు మార్గాలు అతిముఖ్యమైన రవాణా సౌకర్యము. 1853 లో ముంబాయి నుండి థానేమధ్య ప్రారంభమైన రైలు మార్గము ప్రస్తుతం 62 వేల కిలోమీటర్లకు పైగా నిడివిని కల్గి ఉంది. భారతీయ రైల్వే17 జోన్లుగా విభజితమై ఉంది.

అఖండ భారత్ రైలుసవరించు

ఢాకా-ఢిల్లీ-లాహోర్ రైలు.ఇస్లామాబాద్: భారత్, పాకిస్థాన్, బంగ్లాదేశ్‌ల మధ్య తిరిగే రైలు త్వరలోనే పట్టాలెక్కనుంది. దక్షిణాసియా దేశాల మధ్య రైలు సర్వీసులు ప్రారంభించాలనే భారత ప్రతిపాదనకు పాకిస్థాన్ పచ్చజెండా వూపింది. మూడు దేశాలను కలుపుతూ రైళ్లను నడిపిస్తామని భారత రైల్వేశాఖ పంపిన ప్రతిపాదనకు పాక్ రైల్వే మంత్రిత్వ శాఖ సాంకేతిక అనుమతిని మంజూరు చేసింది.ఢాకా-ఢిల్లీ-లాహోర్‌ల మధ్య రైలు నడిపించటం లాభదాయకమేననీ, అవసరమైతే కరాచీ, ఇస్లామాబాద్ వరకూ పొడిగించుకోవచ్చని నిపుణులు సూచించినట్లు పాక్ రైల్వే అధికార వర్గాలు పేర్కొన్నాయి. ముందుగా కంటైనెర్ రైళ్లను నడిపించి, తర్వాతి దశలో ప్రయాణికుల బండ్లను నడిపించాలనే యోచనలో ఉన్నారు. ఇటీవల ఇస్లామాబాద్-టెహ్రాన్-ఇస్తాంబుల్ రైలు సర్వీసును ప్రారంభించాలని ప్రణాళికలు సిద్ధం చేయటంతో భారత రైల్వేశాఖకు ఈ కొత్త ఆలోచన వచ్చింది. దక్షిణాసియా రైళ్ల వల్ల పాకిస్థాన్, ఇతర సార్క్ దేశాల మధ్య ద్వైపాక్షిక వాణిజ్య ప్రయోజనాలు నెరవేరతాయని మనదేశం ప్రతిపాదనల్లో వెల్లడించింది. దీనివల్ల నేపాల్, భూటాన్ వంటి దేశాలకూ రైలు సర్వీసులు నడిపించవచ్చని సూచించినట్లు తెలిసింది.దక్షిణాసియా రైలు సర్వీసులు వాణిజ్యపరంగా ప్రయోజనకరమేనని నిపుణులు సైతం కితాబునిస్తున్నారు. ఈ మార్గంలో రైళ్లను నడిపించటమూ తేలికేననీ పేర్కొంటున్నారు. భారత్, పాక్, బంగ్లాదేశ్‌లలో బ్రిటిష్ పాలకులు రైలు మార్గాలను నిర్మించినందువల్ల మూడు దేశాల్లోనూ బ్రాడ్‌గేజి రైలు పట్టాలు ఉండటం, నిర్వహణ శైలీ ఒకేమాదిరిగా ఉండటం కలిసివస్తుందని అభిప్రాయపడుతున్నారు.[2]

రోడ్డు మార్గాలుసవరించు

మారుమూల ప్రాంతాలకు కూడ విస్తరించిన రవాణా మార్గాలు రోడ్డు మార్గాలే. రోడ్డు మార్గాలలో జాతీయ రహదారులురాష్ట్ర రహదారులుజిల్లా రహదారులు,గ్రామ పంచాయతి రహదారులు అని 4 రకాలు. దేశంలోని మొత్తం రోడ్ల నిడివిలో కేవలం 2% ఆక్రమించిన జాతీయ రహదారులు, ట్రాపిక్ లో మాత్రం సుమారు 40% ఆక్రమిస్తున్నాయి.

వాయు మార్గాలుసవరించు

ఆతి వేగంగా జరిగే రవాణా వ్యవస్థగా వాయు మార్గాలు పస్రిద్ధి చెందాయి. మనదేశంలో రాష్ట్ర రాజధానులు మరియు ప్రధాన పట్టణాలను కల్పుతూ విమాన మార్గాలు కలవు. ఇది అధిక వ్యయంతో కూడుకొనినప్పటికినీ సౌకర్యవంతంగా మరియు అతి వేగంగా ఉంటుంది. కేవలం దేశంలోని పట్టణాలు, నగరాలనే కాకుండా దేశంలోని ప్రధాన నగరాలనుండి ఇతరదేశాలను కూడ కల్పే అంతర్జాతీయ విమానాశ్రయాలు కలవు.

జల మార్గాలుసవరించు

జల మార్గాలు రవాణా సౌకర్యాలలో ఆలస్యం అయినప్పటికినీ తక్కువ ఖర్చుతో కూడుకునది. ముఖ్యంగా ఇతర దేశాల నుంచి ముడి చమురు, ఇతర ఖనిజాలు తెప్పించుకోవడానికి, మనదేశం నుంచి ఇతరదేశాలకు ముడి ఇనుము, ఇతర ఖనిజాలు ఎగుమతి చేయడానికి ఈ రవాణా మార్గం చాలా అనువైనది.

ఇంకా చూడండి :

భారతీయ భాషలు - మాట్లాడే ప్రజల సంఖ్యభారతీయ నగరాలు, పట్టణాలుభారత దేశంలో మతములు

భారత దేశము - కొన్ని ముఖ్య విషయాలుసవరించు

విస్తీర్ణం పరంగా ప్రపంచము లో 7 వ పెద్ద దేశంజనాభా పరంగా ప్రపంచము లో 2 వ పెద్ద దేశముఒక దేశం పేరుమీదుగా మహాసముద్రం ఉన్న ఏకైక దేశంఅత్యధిక ప్రధాన మతాలకు పుట్టినిల్లయిన దేశం7,517 కిమీ సముద్రతీరం కలదు

సంస్కృతిసవరించు

ప్రధాన వ్యాసము: భారతీయ సంస్కృతి

ఆగ్రా లోని తాజ్‌మహల్ - భారతదేశపు అత్యంత ప్రజాదరణ కలిగిన పర్యాటక స్థలం

బౌద్ధుల సంవత్సరాది — లోసార్ నాడు టిబెటు బౌద్ధులు చేసే గుంపా నృత్యం.

భారత దేశం తన ఉత్కృష్టమైన, ప్రత్యేకమైన సాంస్కృతిక వారసత్వాన్ని, తరతరాలుగా కాపాడుకుంటూ వచ్చింది. ఆక్రమణదారులు, వలస వచ్చినవారి సాంప్రదాయాలను కూడా తనలో ఇముడ్చుకుంది. తాజ్‌మహల్ వంటి కట్టడాలు, మరెన్నో సంస్కృతీ, సాంప్రదాయాలు మొగలుపాలకులనుండి వారసత్వంగా స్వీకరించింది.

భారతీయ సమాజము భిన్న భాషలతో, భిన్న సంస్కృతులతో కూడిన బహుళ సమాజం. వివిధ మత కార్యక్రమాలు సంఘ దైనందిన జీవితంలో ఒక భాగం. అన్ని సామాజిక, ఆర్ధిక వర్గాలలోను విద్యను ఉన్నతంగా భావిస్తారు. సాంప్రదాయికమైన సమష్టి కుటుంబ వ్యవస్థలోని ఆర్ధిక అవరోధాల దృష్ట్యా చిరు కుటుంబాలు ఎక్కువైపోతున్నప్పటికీ, సాంప్రదాయిక కుటుంబ విలువలను పవిత్రంగా భావిస్తారు, గౌరవిస్తారు.

భారతీయ సంగీతం వివిధ రకాల పద్ధతులతో కూడినది.శాస్త్రీయ సంగీతంలో రెండు ప్రధాన పద్ధతులున్నాయి. దక్షిణాదికి చెందిన కర్ణాటక సంగీతం ఒకటి కాగా, ఉతరాదికి చెందిన హిందూస్తానీ సంగీతము రెండోది. ప్రజాదరణ పొందిన మరో సంగీతం సినిమా సంగీతం. ఇవికాక ఎన్నో రకాల జానపద సంగీత సాంప్రదాయాలు కూడా ఉన్నాయి. శాస్త్రీయ నృత్య రీతులు కూడా ఎన్నో ఉన్నాయి – భరతనాట్యంఒడిస్సీకూచిపూడికథక్,కథకళి మొదలైనవి. ఇవి ఇతిహాసాలపై ఆధారపడిన కథనాలతో కూడి ఉంటాయి. ఇవి ఎక్కువగా భక్తి, ఆధ్యాత్మికత మేళవింపబడి ఉంటాయి.

ప్రాచీన సారస్వతం ఎక్కువగా మౌఖికమైనది. తరువాతి కాలంలో అది అక్షరబద్ధం చేయబడింది. దాదాపుగా ఇవన్నీ కూడా హిందూ సంస్కృతిలో నుండి ఉద్భవించినవే. పవిత్ర శ్లోకాలతో కూడిన వేదాలు,మహాభారతం మరియు రామాయణం వీటిలో ఉన్నాయి. తమిళనాడుకు చెందిన సంగమ సాహిత్యం భార్తదేశపు ప్రాచీన సాంప్రదాయిక లౌకిక తత్వానికి అద్దం పడుతుంది. ఆధునిక కాలంలో, భారతీయ భాషలలోను, ఇంగ్లీషు లోను కూడా రాసిన ప్రసిద్ధి చెందిన రచయితలెందరో ఉన్నారు. నోబెల్ బహుమతి సాధించిన ఒకేఒక భారతీయుడైన రవీంద్రనాథ్ టాగోర్బెంగాలీ రచయిత.

ప్రపంచంలొనే అత్యధికంగా సినిమాలు నిర్మించేది భారతదేసమే. దేశంలో అన్నిటికంటే ప్రముఖమైనదిముంబైలో నెలకొన్న హిందీ సినిమా పరిశ్రమ. అధిక సంఖ్యలో సినిమాలు నిర్మిస్తున్న ఇతర భాషా పరిశ్రమలు - తెలుగుతమిళంమలయాళంకన్నడ మరియుబెంగాలీ. బెంగాలీ సినిమా దర్శకుడైన సత్యజిత్ రేప్రపంచ సినిమా రంగానికి భారత్ అందించిన ఆణిముత్యం.

వరి అన్నం మరియు గోధుమ (బ్రెడ్, రొట్టెల రూపంలో)లు ప్రజల ముఖ్య ఆహారం. విభిన్న రుచులు, మసాలాలు, పదార్థాలు, వంట విధానాలతో కూడినభారతీయ వంటలు ఎంతో వైవిధ్యమైనవి. ఎన్నో రకాల శాకాహార వంటలకు దేశం ప్రసిద్ధి చెందింది. భారతీయ ఆహార్యం కూడా ఆహారం వలెనే బహు వైవిధ్యమైనది.చీరసల్వార్ కమీజ్ స్త్రీలు ఎక్కువగా ధరించే దుస్తులు. పురుషులు పంచెకుర్తా ధరిస్తారు.

ఇంకా చూడండి :

భారత్‌లో ప్రపంచ వారసత్వ ప్రదేశాల జాబితాభారతీయ శిల్పకళభారతీయుల ఇంటిపేర్లుభారతీయ వంటకాలు

క్రీడలుసవరించు

ప్రధాన వ్యాసము: భారతదేశంలో క్రీడలు

జనాభా పరంగా రెండో పెద్ద దేశమైననూ ప్రపంచ క్రీడా రంగంలో భారతదేశానికి సముచిత స్థానం లేదు.జాతీయ క్రీడ గా హాకీ ఉన్ననూ దాని ఘనత గతమే.ఒలంపిక్ క్రీడలలో 8 పర్యాయాలు బంగారు పతకాలు సాధించిన భారత దేశానికి ప్రస్తుతం చెప్పుకోదగిన ఘనత లేదు. ఇక అత్యధిక ప్రజాదరణ ఉన్న క్రీడ క్రికెట్లో అప్పుడప్పుడు మెరుపులు సాధించిననూ అపజయాలే ఎక్కువ. 1983 ప్రపంచ కప్ , 1984ఆసియా కప్1985 బెన్సన్ హెడ్జెస్ కప్, తర్వాత ఇటీవల ధోనీ సేన సాధించిన ట్వంటీ-20 వరల్డ్ కప్ మరియు 2011 ప్రపంచ కప్ చెప్పుకోదగిన విజయాలు.క్రికెట్ లో సచిన్ టెండూల్కర్ ఎక్కువ పరుగులు మరియు ఎక్కువ సెంచరీలు చేసిన మొట్టమొదటి క్రికెటర్. . చదరంగం లో విశ్వనాథన్ ఆనంద్ రెండు పర్యాయాలు ప్రపంచ టైటిల్ సాధించగా, టెన్నిస్ లో లియాండర్ పేస్,మహేష్ భూపతిసానియా మీర్జా లు డబుల్స్ గ్రాండ్ స్లామ్ టైటిళ్ళు సాధించిపెట్టారు.ప్రస్తుతము ఆడుతున్నవార్లలోసైన నెహవల్ చెప్పుకోదగినది. భారతదేశము ఒలింపిక్‌ క్రీడలు లాంటి అంతర్జాతీయ స్థాయిలో జరిగే క్రీడా పోటీలలో పెద్దగా రాణించలేదు. గత మూడు ఒలంపిక్‌ క్రీడలలో కేవలం ఒక్కొక్కటే పతకం సాధించగలిగినది. ఆసియా క్రీడలలో కూడ చిన్న చిన్న దేశాల కంటే మన పతకాలు చాలా తక్కువ. కబడ్డీ లో మాత్రం వరుసగా బంగారు పతకాలు మనమే సాధించాము.

కొన్ని సాంప్రదాయ ఆటలు అయిన కబడ్డీఖో-ఖోమరియు గోడుంబిళ్ళ (గిల్లీ-దండా)లకు దేశమంతటా బహుళ ప్రాచుర్యము ఉన్నది. చదరంగముక్యారమ్‌,పోలో, మరియు బ్యాడ్మింటన్‌ మొదలైనటువంటి అనేక క్రీడలు భారతదేశంలో పుట్టాయి. ఫుట్‌బాల్‌ (సాకర్‌) కు కూడా యావత్‌ భారతదేశంలో చాలా ప్రజాదరణ ఉన్నది.

జాతీయ చిహ్నములుసవరించు

ప్రధాన వ్యాసం: భారత జాతీయతా సూచికలు

జాతీయ పతాకము : త్రివర్ణ పతాకముజాతీయ ముద్ర : మూడు తలల సింహపు బొమ్మజాతీయ గీతం : జనగణమన....జాతీయ గేయం : వందేమాతరం....జాతీయ పక్షి : నెమలిpavokristatasజాతీయ జంతువు : పెద్దపులి (రాయల్ బెంగాల్ టైగర్)జాతీయ వృక్షం : మర్రిచెట్టుజాతీయ క్రీడ : హాకీజాతీయ పుష్పం : కమలము(తామర)జాతీయ క్యాలెండర్ : శక క్యాలెండర్ (శక సం.పు క్యాలెండర్)జాతీయ ఫలం : మామిడి పండు