answersLogoWhite

0

a. adding and subtracting the integer values

b. adding and subtracting the pointers

c. incrementing and decrementing the pointers

other than tis pointer operations include relational operations such as =,<,>.

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Engineering

Circular queue in linear data structure?

The queue is a linear data structure where operations of insertion and deletion are performed at separate ends also known as front and rear. Queue is a FIFO structure that is first in first out. A circular queue is similar to the normal queue with the difference that queue is circular queue ; that is pointer rear can point to beginning of the queue when it reaches at the end of the queue. Advantage of this type of queue is that empty location let due to deletion of elements using front pointer can again be filled using rear pointer.


Can you give the explanation for various operations in a queue implementation using arrays?

The following are operations performed by queue in data structuresEnqueue (Add operation)Dequeue (Remove operation)Initialize


Can stack be as a pointer?

A stack is a data structure in which last item inserted is taken out first . That's why they are known as LIFO (last in first out). Inserting an item in stack is termed as push and taking an item out from stack I s termed as pop. Stack pointer is the pointer that points to the top of the stack or that points the item at the top of the stack and help in adding or deleting the item from the top of stack.


What is a selection pointer in word?

A selection pointer in Microsoft Word is a visual indicator that shows the current position of the cursor in the document. It allows users to select text or objects by clicking and dragging, or by using keyboard shortcuts. The selection pointer changes its appearance depending on the action being performed, such as selecting text or moving the cursor. This functionality helps users effectively navigate and edit their documents.


When using the Format Painter the pointer takes the shape of a?

a paintbrush

Related Questions

An expression with only numbers and operations symbols?

it using the word x and y


How do you evaluate an expression with more than two operation symbol without exponent and parenthesis?

In Evaluating Expression first,replace each letter in the expression with the assigned value. second,perform the operations in the expression using the correct order of operations and the last you got the answer


How can you evaluate a expression?

replace the variables with the given values and simplify using the order of operations.


What is the rules for evaluating expressions?

The various operations within the expression are carried out using the order of operations: BIDMAS (UK) or PEMDAS (US).


What are arithmetic operaters can be perform on pointer?

Arithmetic operators can be performed on pointers in C and C++ to navigate through arrays or memory blocks. The most common operations include addition and subtraction, which adjust the pointer's address by multiplying the integer value by the size of the data type it points to. Incrementing a pointer (using ++ or --) moves it to the next or previous element in the array, while subtracting two pointers yields the number of elements between them. However, using multiplication and division with pointers is not defined.


When you write a numerical expression how do you show what operation to do first?

In a numerical expression, the order of operations is indicated using parentheses to group terms, which shows what should be calculated first. According to the standard order of operations (often remembered by the acronym PEMDAS: Parentheses, Exponents, Multiplication and Division (from left to right), Addition and Subtraction (from left to right)), calculations inside parentheses are performed before any other operations. Additionally, using exponents clearly indicates that those calculations should be done prior to multiplication, division, addition, or subtraction.


Difference between circular queue and De queue?

The queue is a linear data structure where operations of insertion and deletion are performed at separate ends also known as front and rear. Queue is a FIFO structure that is first in first out. A circular queue is similar to the normal queue with the difference that queue is circular queue ; that is pointer rear can point to beginning of the queue when it reaches at the end of the queue. Advantage of this type of queue is that empty location let due to deletion of elements using front pointer can again be filled using rear pointer. A double ended queue (or deque ) is a queue where insertion and deletion can be performed at both end that is front pointer can be used for insertion (apart from its usual operation i.e. deletion) and rear pointer can be used for deletion (apart from its usual operation i.e. insertion)


Why is it important to apply order of operations when evaluating expressions?

If you change the order of operations, you will get a different result. The person who wrote the expression had a specific order of operations in mind (using generally-accepted rules), so arbitrarily using some other order of operations is, quite simply, wrong.


What are the benefits of using the symbol in programming languages?

Using the symbol in programming languages allows for multiplication, pointer dereferencing, and creating pointers in memory. It helps simplify code and perform mathematical operations efficiently.


What are the important applications of pointer?

the execution time of programe is fast using the pointer


How do you do evaluate expression?

You have to substitute a value for the letter variable in the expression. This is what we call evaluating the algebraic expression. An example would be 3x+1=7, when x=2.


Circular queue in linear data structure?

The queue is a linear data structure where operations of insertion and deletion are performed at separate ends also known as front and rear. Queue is a FIFO structure that is first in first out. A circular queue is similar to the normal queue with the difference that queue is circular queue ; that is pointer rear can point to beginning of the queue when it reaches at the end of the queue. Advantage of this type of queue is that empty location let due to deletion of elements using front pointer can again be filled using rear pointer.