Define Cascade in computer science
Answers
Answered by
8
In simple terms, Cascading refers to the process of performing multiple operations/tasks in a single line of programming code.
Example:- In C++
cout<<”Enter your name”;
cout<<endl;
cout<<”Where do u live?”;
The above 3 lined code can be written in a single line…
cout<<Enter your name”<<endl<<”Where do u live?”;
This is called Cascading.
Similar questions