upendra kumar sinha
SEBI or Securities and Exchange Board of India is not a company neither does it work for profits. It is a the independent regulator of the stock markets in India. The highest post in SEBI is the Chairmanship. The current Chairman of SEBI is Upendra Kumar sinha
Dr.D.Subbarao
U.K.sinha
SEBI regulates the business that happens in the Indian stock exchanges and other securities markets in India.
u.k.sinha
U . K. Sinha is the current chairman of SEBI
ravi patel
SEBI is the primary governing/regulatory body for the securities market in India. All transactions in the securities market in india are governed & regulated by SEBI.
SEBI or Securities and Exchange Board of India is not a company neither does it work for profits. It is a the independent regulator of the stock markets in India. The highest post in SEBI is the Chairmanship. The current Chairman of SEBI is Upendra Kumar sinha
vantage of sebi
WHAT IS WORK OF SEBI AND WHO IS MAINTAIN WHAT IS WORK OF SEBI AND WHO IS MAINTAIN
vibgyor sebi listed
Sebi Tramontana was born in 1960.
Yes. It is mandated by SEBI Act.
at are the roles of SEBI
role of sebi in regulating indian stock market
class Node { public Node next; public Node previous; public int item; public Node(int item) { this.item = item; } public Node(int item, Node previous) { this.item = item; this.previous = previous; } } public class DoublyLinkList { public static void main(String[] args) { // TODO Auto-generated method stub DoublyLinkList doublyLinkList = new DoublyLinkList(); Node head = doublyLinkList.addNodeFIFO(null, 1); head = doublyLinkList.addNodeFIFO(head, 2); head = doublyLinkList.addNodeFIFO(head, 3); head = doublyLinkList.addNodeFIFO(head, 4); head = doublyLinkList.addNodeFIFO(head, 5); doublyLinkList.printdoublyLinkList(head); Node current = head; current = doublyLinkList.movePrevious(current); current = doublyLinkList.moveNext(current); current = doublyLinkList.movePrevious(current); current = doublyLinkList.moveNext(current); current = doublyLinkList.moveNext(current); current = doublyLinkList.moveNext(current); current = doublyLinkList.moveNext(current); current = doublyLinkList.moveNext(current); current = doublyLinkList.moveNext(current); current = doublyLinkList.moveFirst(current); current = doublyLinkList.moveLast(current); // head = doublyLinkList.deleteNodeFIFO(head, 3); // // doublyLinkList.printdoublyLinkList(head); // // head = doublyLinkList.deleteNodeFIFO(head, 1); // // doublyLinkList.printdoublyLinkList(head); // // head = doublyLinkList.deleteNodeFIFO(head, 5); // // doublyLinkList.printdoublyLinkList(head); } public Node addNodeFIFO(Node head, int item) { System.out.println("In Add Node"); if(head item) { cNode.next = nNode.next; break; } else { cNode = nNode; nNode = nNode.next; } } return head; } public void printdoublyLinkList(Node head) { while(head != null) { System.out.println(head.item); head = head.next; } } }