Podcast
Questions and Answers
Which function is typically excluded financial services?
Which function is typically excluded financial services?
- Mobilization of savings
- Allocation of funds
- Collection of taxes (correct)
- Specialized services
Which of these is NOT typically considered a fee-based financial service?
Which of these is NOT typically considered a fee-based financial service?
- Corporate counseling
- Issue management
- Portfolio management
- Lease financing (correct)
Which of the following is not a fund-based financial service?
Which of the following is not a fund-based financial service?
- Factoring
- Venture capital
- Credit rating agencies (correct)
- Consumer credit
Which of the following entities acts as a financial intermediary, mobilizing and transferring capital to those in need?
Which of the following entities acts as a financial intermediary, mobilizing and transferring capital to those in need?
Factoring primarily serves as a method for raising capital through:
Factoring primarily serves as a method for raising capital through:
Which of the following is a fund-based financial service providing resources of finance receivable and facilitating collection of receivables?
Which of the following is a fund-based financial service providing resources of finance receivable and facilitating collection of receivables?
What is the cost of factoring services typically referred to as?
What is the cost of factoring services typically referred to as?
In which type of factoring does the factor assume the risk of bad debts?
In which type of factoring does the factor assume the risk of bad debts?
Which type of factoring involves the factor providing an advance against the uncollected receivables of a firm?
Which type of factoring involves the factor providing an advance against the uncollected receivables of a firm?
Under which factoring arrangement does the factor only provide assistance for collection and insurance against bad debts?
Under which factoring arrangement does the factor only provide assistance for collection and insurance against bad debts?
Which of the following is a form of financing receivables related to international trade?
Which of the following is a form of financing receivables related to international trade?
Which market is NOT considered part of the Indian Capital Market?
Which market is NOT considered part of the Indian Capital Market?
What is the maximum maturity period for bills under the Bill Market Scheme 1970?
What is the maximum maturity period for bills under the Bill Market Scheme 1970?
Which act primarily governs Bill Discounting practices?
Which act primarily governs Bill Discounting practices?
Which regulatory body introduced a new bill market scheme in November 1970?
Which regulatory body introduced a new bill market scheme in November 1970?
Under which financial service is 100% finance typically provided?
Under which financial service is 100% finance typically provided?
Which tool is specifically utilized for financing a series of sales involving bulk trading?
Which tool is specifically utilized for financing a series of sales involving bulk trading?
Which option exemplifies a fund-based financial service?
Which option exemplifies a fund-based financial service?
Which of these represents a non-fund-based service?
Which of these represents a non-fund-based service?
Which term describes an arrangement where a group of banks participates to provide funds for a single loan?
Which term describes an arrangement where a group of banks participates to provide funds for a single loan?
Flashcards
Functions of financial services exclude:
Functions of financial services exclude:
Excludes collection of tax.
Not a fee-based financial service:
Not a fee-based financial service:
Lease financing
Not a fund-based financial service:
Not a fund-based financial service:
Credit rating agencies.
Financial intermediary mobilizing capital:
Financial intermediary mobilizing capital:
Signup and view all the flashcards
Factoring raises finance via:
Factoring raises finance via:
Signup and view all the flashcards
Finance service providing resources of finance receivable:
Finance service providing resources of finance receivable:
Signup and view all the flashcards
Cost of factoring is termed:
Cost of factoring is termed:
Signup and view all the flashcards
Under factoring, factor assumes risk of bad debts
Under factoring, factor assumes risk of bad debts
Signup and view all the flashcards
Financing receivables for international trade:
Financing receivables for international trade:
Signup and view all the flashcards
Not an Indian Capital Market:
Not an Indian Capital Market:
Signup and view all the flashcards
Bill Market Scheme 1970 max maturity:
Bill Market Scheme 1970 max maturity:
Signup and view all the flashcards
Bill Discounting governed by:
Bill Discounting governed by:
Signup and view all the flashcards
Introduced new bill market scheme:
Introduced new bill market scheme:
Signup and view all the flashcards
100% finance is provided under:
100% finance is provided under:
Signup and view all the flashcards
Financing a series of sales involving bulk trading
Financing a series of sales involving bulk trading
Signup and view all the flashcards
Example of Fund-Based Service
Example of Fund-Based Service
Signup and view all the flashcards
Non-fund based service
Non-fund based service
Signup and view all the flashcards
Banks provide funds for a single loan:
Banks provide funds for a single loan:
Signup and view all the flashcards
Characteristic of financial services:
Characteristic of financial services:
Signup and view all the flashcards
Market dealing with assets having short term maturity is:
Market dealing with assets having short term maturity is:
Signup and view all the flashcards
Study Notes
- Digital I/O pins are the simplest communication form between Arduino and the external environment
- Digital I/O pins can be configured as INPUT or OUTPUT
Digital Output
- In digital output mode, pins are set to HIGH (5V output) or LOW (0V output)
pinMode(ledPin, OUTPUT)
configures a digital pin for outputdigitalWrite(ledPin, HIGH)
sets the digital pin to HIGH (5V), turning on an LEDdigitalWrite(ledPin, LOW)
sets the digital pin to LOW (0V), turning off an LED
Digital Input
- In digital input mode, pins read either HIGH or LOW
pinMode(buttonPin, INPUT)
configures the digital pin as an inputdigitalRead(buttonPin)
reads the digital value (HIGH or LOW) at a specified pin
Analog Input
- Arduino UNO has six analog input pins (A0 to A5)
- Analog pins read analog voltages from 0V to 5V with 10-bit resolution
- Analog voltage is converted into a digital value between 0 and 1023
analogRead(sensorPin)
reads the analog value at the specified pin, returning a value between 0 and 1023Serial.begin(9600)
initializes serial communication at 9600 bits per secondSerial.println(sensorValue)
prints the sensor's value to the serial monitor in the Arduino IDE
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.