Question
A digital banking application, INDIE setting a target to
onboard 10 million customers within the next three years & enable users to obtain an instant line of credit up to Rs 5 lakh, with the flexibility to choose only the amount they need.Which bank has launched this app?ÂSolution
IndusInd Bank unveiled its digital banking application, INDIE setting a target to onboard 10 million customers within the next three years. INDIE provides a suite of adaptable financial solutions tailored to individual client requirements. One such feature enables users to obtain an instant line of credit up to Rs 5 lakh, with the flexibility to choose only the amount they need. During repayment, customers also have the freedom to set their loan tenor.In addition, the app boasts a transparent rewards programme, wherein users can select their favourite brands from leading e-commerce platforms.
WI-FI uses
Relational Algebra is
Which network layer protocol provides a reliable, connection-oriented delivery of packets?
In natural language processing (NLP), what does TF-IDF stand for?
How many dimensions are selected in Slice operation?
Node.js is built on which JavaScript engine?
Which of the following is NOT a method for handling deadlocks?
Which of the following is a basic equation used in the COCOMO model?
Which of the following is not a limitation of binary search algorithm?
Below code will give what result for f(3)
f(int x)
{
If(x
Return;
f(x-1);
printf(“%d”, x);
f(n-1);
}