What is a scope operator and tell me its functionality?
Answers were Sorted based on User's Feedback
Answer / maya
Operator : :
It used to initalize the static variable out of the class.
Used for global initalization for variables.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / d.raji
scope operator is used to access the uotline function in
c++.
| Is This Answer Correct ? | 0 Yes | 1 No |
Can we create object of class with private constructor?
Where is pseudocode used?
What is object and example?
how much classes are used in c++
3. Differentiate verification and validation.
Describe these concepts: Polymorphism, Inheritance and Abstraction.
what is the difference b/w abstract and interface?
2 Answers Merrill Lynch, Schneider, Scio Healthcare,
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
What is purpose of inheritance?
What is class and object in oops?
how to find the correct email address format by using the programe?
design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }