answersLogoWhite

0

What is a operator in access?

Updated: 12/17/2022
User Avatar

Wiki User

6y ago

Best Answer

It is any of the operators used to compare things to see if they are equal or greater than to less than etc. So ones like > < = are all comparison operators.

User Avatar

Laurence Kemmer

Lvl 10
2y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a operator in access?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Who designed Microsoft Access?

operator


Which operator is used 2 access ahidden global variables?

To access a hidden global variable, use the scope resolution operator ::


What does the dot member access operator indicate in the text SystemWindowsFormsLabel?

The dot member access operator (or, in simple terms, the period) specifies the hierarchy of namespaces.


Which operator is allow to access hidden global variable?

The scope resolution operator, ::, overrides local scope and allows access to objects that are hidden due to global to local scope rules.


Which operator is used to indirectly access a member of a struct?

pointer -> fieldname


Which operator allows you to search for a range of values in one field?

The answer is Between in an Access question.


What operator enables you to access structures members using pointers to the structure?

(*ptr).field or ptr-&gt;field


What is the operator that cannot be overloaded?

There are 5 operators which cannot be overloaded. They are: * .* - class member access operator * :: - scope resolution operator * . - dot operator * ?:: - conditional operator * Sizeof() - operator Note:- This is possible only in C++.


Which cellular operator has entered into a strategic partnership with IFFCO to access agriculture related information to the farmers in Uttar Pradesh?

Airtel.


Which operator is allow to access hidden global variable in c plus plus?

A hidden global variable must be one that has its scope blocked by a local variable of the same name. To access the hidden variable, use the scope resolution operator ::, such as is ::variable_name. If there is another reason for the hidden status, please clarify and restate the question.


How do you invoke method by using object of the class?

If you have and object with method described within its class you can use dot access operator, for instance:myObject.DoSomething();


How do you read data from array?

Use the array suffix operator [] to access the individual elements of an array through a zero-based index.