Answer Posted / nekkanti rajesh
an array is a collection of elements of a single data type
stored in adjacent
<data_type><variable_name>[<dimension_size>];
ex:
int arr[5];
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
What c++ is used for?
which operator is used for performing an exponential operation a) > b) ^ c) none
What is encapsulation in c++ with example?
What is the sequence of destruction of local objects?
Why do we need function?
Why do we use the using declaration?
How can I disable the "echo" feature?
What is the outcome of cout< a) 16 b) 17 c) 16.5
How important is c++?
Must accepts "Maestro Cards" Tax for bike should be less than 15 Total number of lanes is more than 10 Must provides monthly pass Write a method: boolean isGoodTollBridge(String[] cardsAccepted, String[] tollTax, boolean hasMonthlyPass, int numberOfLanes); String[] cardsAccepted A String array of names of card types accepted for payment of toll tax, it can be null if the toll does not accept any card String[] tollTax A String array of toll tax chart (say “Train : 300â€Â,â€ÂBullCart : 10â€Â) boolean hasMonthlyPass This parameter defines whether there is any monthly pass available or not int numberOfLanes This parameter defines the number of lanes for each side
What is a dangling pointer in c++?
Write about the retrieval of n number of objects during the process of delete[]p?
What is the difference between while and do while loop? Explain with examples.
What is virtual methods?