Can we get the value of ios format flags?
How is computer programming useful in real life?
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
What is the use of ‘using’ declaration?
Can we inherit constructor in c++?
Can member data be public?
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
Why do we use the using declaration?
Is java easier than c++?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
What is the difference between global variables and local variable
How to construct muliton object
What are friend classes? What are advantages of using friend classes?