answersLogoWhite

0

What else can I help you with?

Related Questions

What does null mean in facebook message?

its a fake word


Null Null Null?

It appears that there was an error in the previous message. How can I assist you today?


Delete an element from an options array?

Set it to null


How do you delete a node with two children in binary tree using c?

Use a recursive function. void delete_node (node* n) { /* ensure the given pointer is valid */ if (n==NULL) return; /* recursively delete the left child */ delete_node (n->left); n->left = NULL; /* recursively delete the right child */ delete_node (n->right); n->right = NULL; /* delete the data (assuming the data is a pointer)*/ free (n->data); n->data = NULL; /* finally, delete the node itself */ free (n); n=NULL; }


What does ERR-null passed mean for automobile mileage?

The word "null" means zero, and ERR probably stands for error. This message likely means that the vehicle has passed the mileage that can be recorded in the vehicle.


Does failing to reject null mean null is true?

NO!


What does null mean on Facebook's Farmville?

"Null" in games, particularly Farmville, means one of your neighbors whose playing "name" was somehow, for some reason, not picked up by the server or the Flash that runs the game. Think of "null" as a "Nice Unidentified Loving Lender", or just "another player who gave me this gift".


How would you delete an object that is created without any reference to it?

You cannot specifically delete an object. You can assign it to a null. The JVM would automatically delete all unused objects once in a while


If null is compared with null what is the result-true or false or null or unknown?

You mean SQL? NULL = anything IS NULL NULL <> anything IS NULL ... NULL IS NULL = TRUE NULL IS NOT NULL = FALSE


How do you delete reference of an object in java?

You can't really delete a reference to an object. You can set the reference to null, which will eventually cause the garbage collector to free up the memory from that reference, but you cannot explicitly delete anything.


What does null mean in the NBA?

Nothing


What does null and void mean?

According to Black's Law Dictionary, the term "null and void" has become a common redundancy: they mean the same thing.