Is c++ vector dynamic?
No Answer is Posted For this Question
Be the First to Post Answer
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
Is c++ fully object oriented?
Mention the ways in which parameterized can be invoked.
What do you understand by zombie objects in c++?
How the virtual functions maintain the call up?
What are templates? where we should use it?
What is the purpose of extern storage specifier?
What do you mean by “this” pointer?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
Difference between struct and class in terms of access modifier.
What is c++ try block?
Explain how functions are classified in C++ ?