Please select a subject first
Advertisements
Advertisements
Which of the following statements is incorrect?
Concept: Securities and Exchange Board of India (SEBI)
SEBI calls for information and issues a show cause notice to stock exchange and its officials seeking explanation and conducting audit and enquiry. Which function is SEBI performing?
Concept: Securities and Exchange Board of India (SEBI)
STATEMENT I: Electronic holdings can be converted into physical certificates with the process of dematerialisation.
STATEMENT II: There is no danger of theft, loss or forgery of share certificates in dematerialisation.
Choose the correct option from the following:
Concept: Securities and Exchange Board of India (SEBI)
Lalita wants to buy shares of Akbar Enterprises, through her broker Kushvinder. She has a Demat Account and a bank account for cash transactions in the securities market. Discuss the subsequent steps involved in the screen-based trading for buying and selling of securities in this case.
Concept: Securities and Exchange Board of India (SEBI)
Explain any four points of difference between 'Marketing' and 'Selling'.
Concept: Concept of Marketing Mix
‘MYKAA Limited ‘is dealing in all types of cosmetic products. It is enjoying increased demand for its product during the last few years. For the purpose of expansion the company needs ₹ 100 crores as additional capital. The company decides to raise funds through equity shares. Chirag Kapoor, the finance manager of the company recommended that the shares may be sold through issuing houses or brokers. Identify and explain the method recommended by Mr.Kapoor through which the company can raise additional funds for expansion purposes.
Concept: Securities and Exchange Board of India (SEBI)
Which of the following statements is incorrect?
Concept: Securities and Exchange Board of India (SEBI)
One of the following is considered to be an extension of the marketing concept, which apart from customer satisfaction pays attention to ethical and ecological aspects of marketing. Identify the concept.
Concept: Marketing Management Philosophies
A bottle of Anti- dandruff shampoo mentions 'Clean your hair and get rid of dandruff in one squeeze'. The product related decision involved is ______.
Concept: Marketing Mix> Product >> Labelling
SEBI calls for information and issues a show cause notice to stock exchange and its officials seeking explanation and conducting audit and enquiry. Which function is SEBI performing?
Concept: Securities and Exchange Board of India (SEBI)
STATEMENT I: Electronic holdings can be converted into physical certificates with the process of dematerialisation.
STATEMENT II: There is no danger of theft, loss or forgery of share certificates in dematerialisation.
Choose the correct option from the following:
Concept: Securities and Exchange Board of India (SEBI)
Explain any two points of importance of 'consumer protection' from the point of view of business and any two points from the point of view of consumers.
Concept: Concept of Consumer Protection
Mayank purchased a pack of chocolates of a renowned brand for his daughter from a shop in the nearby market. After consuming the chocolates, his daughter fell sick. He filed a case with the District forum against the renowned brand. He lost the case because of a mistake that he could not provide proof of purchase. What should be kept in mind by a consumer while purchasing, using and consuming goods and services apart from avoiding the mistake committed by Mayank, in order to enable him/her to achieve the objective of consumer protection? Enumerate any four points.
Concept: Concept of Consumer Protection
Which of the following is an invalid datatype in Python?
Concept: Introduction of Exception Handling in Python
Which of the following statement(s) would give an error after executing the following code?
S="Welcome to class XII" # Statement 1
print(S) #Statement 2
S="Thank you" # Statement 3
S[0]= '@' # Statement 4
S=S+"Thank you" # Statement 5Concept: Built-in Exceptions in Python
Rao has written a code to input a number and check whether it is prime or not. His code is having errors. Rewrite the correct code and underline the corrections made.
def prime():
n=int(input("Enter number to check :: ")
for i in range (2, n//2):
if n%i=0:
print("Number is not prime \n")
break
else:
print("Number is prime \n’)Concept: Built-in Exceptions in Python
Predict the output of the Python code given below:
def Diff(N1,N2):
if N1>N2:
return N1-N2
else:
return N2-N1
NUM= [10,23,14,54,32]
for CNT in range (4,0,-1):
A=NUM[CNT]
B=NUM[CNT-1]
print(Diff(A,B),'#', end=' ')Concept: Handling Exceptions in Python
Atharva is a Python programmer working on a program to find and return the maximum value from the list. The code written below has syntactical errors. Rewrite the correct code and underline the corrections made.
def max_num (L):
max=L(O)
for a in L:
if a > max
max=a
return maxConcept: Syntax Errors in Python
Which of the following operators will return either True or False?
Concept: Introduction of Exception Handling in Python
“In a Python program, if a break statement is given in a nested loop, it terminates the execution of all loops in one go.”
Concept: Handling Exceptions in Python
