Yes in my opinion. People will say no but there is no right answer
Answer:
B
Explanation:
the person at the very top said so :)
Answer:
B
Explanation:
I will recommend "FLEX" as the advanced technology for front-end development because of the following below:
1. Flex applications are usually Flash Player based.
2. Flex applications developed can run on Android, BlackBerry Tablet OS, and iOS devices.
3. Flex applications built can run on Browsers as well as on Desktop.
In addition, Flex applications are platform independent.
Answer:
Answered below
Explanation:
Recursion refers to the process of a function calling itself within its own definition. It calls itself repeatedly until a base condition is met and the loop breaks.
The advantages of recursion over loops include;
A) Recursion reduces time complexity.
B) Recursion is better at tree traversal and graphs.
C) Recursion reduces the time needed to write and debug code and also adds clarity to code.
Disadvantages of recursion include;
A) Recursion uses more memory because each function call remains in stack until the base case is met.
B) Recursion can be slow.
C) Recursion
Answer: III
Explanation: An enhanced for loop is the foreach equivalent in .NET, you do not require a index variable.
E.x
Foreach(string str in foo[100]){ // prints all 100 strings in foo, one by one.
Console.WriteLine(str);
}