Hey Vineet, TestNG Annotations run in the following order while executing a testng.xml file:
BeforeSuite >> BeforeTest >> BeforeClass >> BeforeMethod >> Test >> AfterMethod >> AfterClass >> AfterTest >> AfterSuite
<suite>
<test>
<classes>
<method>
<test>
</method>
</classes>
</test>
</suite>