Question
Which of the following derivative instrument is a type
of financial derivative in which fixed payments of interest are exchanged by two counterparties for floating payments of interest?Solution
A swap is an agreement between two counter parties to exchange cash flows in the future. Under the swap agreement, various terms like the dates when the cash flows are to be paid, the currency in which to be paid and the mode of payment are determined and finalized by the parties. Usually the calculation of cash flows involves the future values of one or more market variables. There are two most popular forms of swap contracts, i.e., interest rate swaps and currency swaps.
In CI/CD pipelines, which of the following is NOT a key benefit of Continuous Integration (CI)?
Which of the following phases in the Software Development Life Cycle (SDLC) ensures that the final product meets the agreed-upon requirements and specif...
Which data structure is used in recursion?
In a compiler's code flow, which operation is primarily used to manage function call contexts (local variables, return addresses) during program execution?
What is the output of the following recursive function call func(3) ?
int func ( int n) {Â Â Â Â Â Â Â
   if (n == 0 ) return 1 ; <...
In C++, which access specifier makes members accessible only from within the class itself and from friend functions/classes?
Which of the following correctly describes the primary difference between Cross-Site Request Forgery (CSRF) and Cross-Site Scripting (XSS)?
...Which search algorithm is complete but not always optimal?
What is the best-case time complexity of the binary search algorithm ?
Which tree traversal gives nodes in non-decreasing order for a BST?