"Excel Your Interview: Top 10 Must-Know Excel Questions"

"Excel Your Interview: Top 10 Must-Know Excel Questions" 1. What are the different data types in Excel? Text Number Date/Time Boolean (TRUE/FALSE) Error (e.g., #DIV/0! , #N/A ) 2. What is the difference between absolute, relative, and mixed cell references? Relative ( A1 ): Changes when copied. Absolute ( $A$1 ): Fixed reference. Mixed ( $A1 or A$1 ): Either row or column is fixed. 3. How do you use VLOOKUP and what are its limitations? Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]) Limitations : Only looks to the right . Slower with large data. Breaks with column insertions. Replaced often by XLOOKUP or INDEX-MATCH . 4. What is the difference between VLOOKUP, HLOOKUP, INDEX-MATCH, and XLOOKUP? VLOOKUP : Vertical lookup (left to right). HLOOKUP : Horizontal lookup (top to bottom). INDEX-MATCH : More flexible, faster, can look left. X...