What is for loop and its syntax?
Answer / Swati Passi
A 'for' loop in programming is used to iterate over a sequence of values, such as an array or a range. Its syntax is:<br>```nfor (initialization; condition; increment/decrement) {n // code block to be executed on each iterationn}n``
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between static polymorphism and dynamic polymorphism?
What is a superclass in oop?
Name a typical usage of polymorphism
What are the advantages of polymorphism?
What is byval and byref? What are differences between them?
can we create and enter the data & hide files using programmes ?
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
What do you mean by binding of data and functions?
what is object slicing?
What is balance factor?
Why multiple inheritance is not possible?
What is inheritance and how many types of inheritance?