What is a scope operator and tell me its functionality?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we use oops?

749


What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?

1883


What does and I oop mean in text?

842


given a set based questions and 5 questions based on it next data sufficiciency questions 2 and 2/3 english sentence completion with options very easy and 2 synononmys paragraph with 10 questions 10 minutes replace =,-,*,% with -,%,+,* type questions 5 3 questions lik following itssickhere itssickthere itssickhere istsickhere which is nt alike the others very easy

2357


assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

1880


What is polymorphism explain?

958


What are the advantages of polymorphism?

756


What is the benefit of oop?

752


• What are the desirable attributes for memory managment?

1935


i got a backdoor offer in process global,Bangalore..Can i work with it?

2568


Why is abstraction used?

830


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2359


What is abstraction with example?

818


What are the benefits of oop?

849


What is polymorphism and example?

769