answersLogoWhite

0

upendra kumar sinha

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Who is the chairman of SEBI 2011?

U . K. Sinha is the current chairman of SEBI


Who is the head of sebi?

ravi patel


Who is The Ceo or Head of Sebi Please tell about Sebi?

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.


Who is a CEO of 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


What are the advantages and disadvantages of SEBI?

vantage of sebi


What is the procedure to get certification as a portfolio manager from SEBI?

WHAT IS WORK OF SEBI AND WHO IS MAINTAIN WHAT IS WORK OF SEBI AND WHO IS MAINTAIN


Is vibgyor sebi liste company?

vibgyor sebi listed


When was Sebi Tramontana born?

Sebi Tramontana was born in 1960.


Is it necessary for the broker to get registered with sebi?

Yes. It is mandated by SEBI Act.


Role of SEBI in regulating merchant banking industry?

at are the roles of SEBI


What is the role of SEBI on Indian economy?

role of sebi in regulating indian stock market


Doubly circular linked list java codes?

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; } } }