What is vectorial capacity?



What is vectorial capacity?..

Answer / Aakriti Pandey

Vectorial capacity is not a standard term in C++. However, it might refer to the capability of vectors to handle operations on large data arrays efficiently due to their internal optimization.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?

1 Answers  


What is the difference between global int and static int declaration?

1 Answers  


What is the this pointer?

1 Answers  


How do I tokenize a string in c++?

1 Answers  


What is a local variable?

1 Answers  


How come you find out if a linked-list is a cycle or not?

1 Answers  


Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02

1 Answers  


What is dynamic and static typing?

1 Answers  


Can we change the basic meaning of an operator in c++?

1 Answers  


What is fixed in c++?

1 Answers  


What are stacks?

1 Answers  


Using a smart pointer can we iterate through a container?

1 Answers  


Categories