#include #define FIRST_PART 7#define LAST_PART 5#define ALL_PARTS FIRST_PART + LAST_PARTint main() {printf ("The Square root of all parts is %dn , ALL_PARTS * ALL_PARTS) ;return(0);} A. 35B. 144C.
Latest Answer: Answer: B ...
What is the output?void main(){int a,b=5,c=10;a = (b-c) > (c-b) ? b : c;printf("%d",a);}A. 10B. 5C. 0D. Error
Latest Answer: The choice A is the correct answer. ...
The exact content and the storage representation of a column in database can be found out using the functionA. translateB. to_charC. dumpD. substr
The limit for the number of parameters for a pl/sql procedure isA. 256B. No Limit at allC. Depends on the type of parameters passed to the procedureD. Depends on Positional Parameters passed.
Which of the following statements are true about roles?A. Roles can be granted to other roles and/or users.B. Privileges can be granted to roles.C. Roles can be granted to synonyms.D. Both a and b.
Any locks placed in a session can be released issuing which of the following statementsA. commitB. rollbackC. Both a and bD. By a savepoint
The transaction control that prevents more than one user from updating data in a table is calledA. LocksB. CommitsC. RollbacksD. Savepoints
Which one of the following are parts of an entity relationship diagram?A. Referential integrity constraintsB. Entities and RelationshipsC. TriggersD. Both A and B
What is the correct way to define a constant pointer?A. const char *name_ptr = "TEST";B. char *const name_ptr = "TEST";C. Both A and BD. None of Above.
View page << Previous 1 [2] 3 4 5 6 7 8 9 10 Next >>

Go Top