answersLogoWhite

0

The Name Box will show the address of the current cell that is active.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is a master worksheet that included the basic elements for a paticular type of worksheet is called?

A template is a master worksheet that includes the basic element for a particular type of worksheet that you are going to be using.


What is an independent element on a worksheet?

An object.


How to display the content of memory address stored in an element of an array?

void *array[2]; printf ("array[%d]=%p\n", i, array[i]);


What element lack most of the properties of metal?

It nonmetal ! I know this one! I had it on a worksheet!


What cell does formulas and functions in Excel make use of?

Cells are the fundamental element of a worksheet. All formulas are put into them. Most functions and formulas will reference cells on the worksheet. So cells are extremely important in Excel. Without them, you do not have a worksheet.


What is the memory address of some element if the base address is x and each element of the array takes e memory locations?

The memory address of some element if the base address is x, each element of the array takes e memory locations, and the index based zero of the element is i, is x + ie.


How do you disable a span element?

To disable a span element, the command disable () has to be used. The command disable () stores the address of the element as the node of the parent address.


Which formula you will to calculate The memory address of fifth element of an array?

Awais khanLOC(LA[K]) =base(LA)+w(k-lowerbound)


Why does array index begins with 0 not with 1?

It is because array name implies its address and if you want to access first element of it pointer address logic is as below: Arrays first element address = array base address + 0 Arrays second element address = array base address + 1


An algorithm of deleting linked list?

To delete a linked list walk through the list and delete the memory allocated to each element, remembering the next element address, and then iterating or recursing the process using the next element address, until the next element address is null.


Which element do you click to add a statistical function to a worksheet?

More Functions Button on the Formulas Tab.


What is a queue Explain various operations perfomed using stack with examples?

Stack has the following operations:1) push - insert an element into the stack2) pop - remove an element out of the stack3) top - display the topmost element in the stackQueue has the following operations:1) enqueue - insert an element into the queue2) dequeue - remove an element from the queue3) front - display the element at the front of the queue(next element to be dequeued)4) rear - display the element at the rear of the queue(last element enqueued)The following operations can be performed in both stack and queue:1) size - returns the size of the container2) isempty - returns whether the container is empty or not