OneStopTesting - Quality Testing Jobs, eBooks, Articles, FAQs, Training Institutes, Testing Software, Testing downloads, testing news, testing tools, learn testing, manual testing, automated testing, load runner, winrunner, test director, silk test, STLC

Forum| Contact Us| Testimonials| Sitemap| Employee Referrals| News| Articles| Feedback| Enquiry
 
Testing Resources
 
  • Testing Articles
  • Testing Books
  • Testing Certification
  • Testing FAQs
  • Testing Downloads
  • Testing Interview Questions
  • Career In Software Testing
  • Testing Jobs
  • Testing Job Consultants
  • Testing News
  • Testing Training Institutes
  •  
    Fundamentals
     
  • Introduction
  • Designing Test Cases
  • Developing Test Cases
  • Writing Test Cases
  • Test Case Templates
  • Purpose
  • What Is a Good Test Case?
  • Test Specifications
  • UML
  • Scenario Testing
  • Test Script
  • Test Summary Report
  • Test Data
  • Defect Tracking
  •  
    Software testing
     
  • Testing Forum
  • Introduction
  • Testing Start Process
  • Testing Stop Process
  • Testing Strategy
  • Risk Analysis
  • Software Listings
  • Test Metrics
  • Release Life Cycle
  • Interoperability Testing
  • Extreme Programming
  • Cyclomatic Complexity
  • Equivalence Partitioning
  • Error Guessing
  • Boundary Value Analysis
  • Traceability Matrix
  •  
    SDLC Models
     
  • Introduction
  • Waterfall Model
  • Iterative Model
  • V-Model
  • Spiral Model
  • Big Bang Model
  • RAD Model
  • Prototyping Model
  •  
    Software Testing Types
     
  • Static Testing
  • Dynamic Testing
  • Blackbox Testing
  • Whitebox Testing
  • Unit Testing
  • Requirements Testing
  • Regression Testing
  • Error Handling Testing
  • Manual support Testing
  • Intersystem Testing
  • Control Testing
  • Parallel Testing
  • Volume Testing
  • Stress Testing
  • Performance Testing
  • Agile Testing
  • Localization Testing
  • Globalization Testing
  • Internationalization Testing
  •  
    Test Plan
     
  • Introduction
  • Test Plan Development
  • Test Plan Template
  • Regional Differences
  • Criticism
  • Hardware Development
  • IEEE 829-1998
  • Testing Without a TestPlan
  •  
    Code Coverage
     
  • Introduction
  • Measures
  • Working
  • Statement Coverage
  • Branch Coverage
  • Path Coverage
  • Coverage criteria
  • Code coverage in practice
  • Tools
  • Features
  •  
    Quality Management
     
  • Introduction
  • Components
  • Capability Maturity Model
  • CMMI
  • Six Sigma
  •  
    Project Management
     
  • Introduction
  • PM Activities
  • Project Control Variables
  • PM Methodology
  • PM Phases
  • PM Templates
  • Agile PM
  •  
    Automated Testing Tools
     
  • Quick Test Professional
  • WinRunner
  • LoadRunner
  • Test Director
  • Silk Test
  • Test Partner
  • Rational Robot
  •  
    Performance Testing Tools
     
  • Apache JMeter
  • Rational Performance Tester
  • LoadRunner
  • NeoLoad
  • WAPT
  • WebLOAD
  • Loadster
  • OpenSTA
  • LoadUI
  • Appvance
  • Loadstorm
  • LoadImpact
  • QEngine
  • Httperf
  • CloudTest
  •  
    Languages
     
  • Perl Testing
  • Python Testing
  • JUnit Testing
  • Unix Shell Scripting
  •  
    Automation Framework
     
  • Introduction
  • Keyword-driven Testing
  • Data-driven Testing
  •  
    Configuration Management
     
  • History
  • What is CM?
  • Meaning of CM
  • Graphically Representation
  • Traditional CM
  • CM Activities
  • Tools
  •  
    Articles
     
  • What Is Software Testing?
  • Effective Defect Reports
  • Software Security
  • Tracking Defects
  • Bug Report
  • Web Testing
  • Exploratory Testing
  • Good Test Case
  • Write a Test
  • Code Coverage
  • WinRunner vs. QuickTest
  • Web Testing Tools
  • Automated Testing
  • Testing Estimation Process
  • Quality Assurance
  • The Interview Guide
  • Upgrade Path Testing
  • Priority and Severity of Bug
  • Three Questions About Bug
  •    
     

    Silk Test Interview Questions


    A D V E R T I S E M E N T



    Home » interview-question » Silk Test Interview Questions


    21)What is stored in a test frame?

    Ans. A test frame is a text file, which records the following types of information for a Web application:

    1. Comment: Commentary information.
    2. wMainWindow: A string constant to identify your application's home page.
    3. Home page window: An object of class BrowserChild window that holds application home page.
    4. sLocation: The URL of the your application's home page.
    5. sUserName and dPassword: User name and password if needed to login to your Web application.
    6. BrowserSize: A pair of values to indicate the size of the browser window.
    7. Home page objects: A list of all objects on the home page, such as HtmlImage, HtmlText, HtmlLinks, etc.

    22) What is the syntax of UI object identifier used by DOM extension?

    Ans. The DOM browser extension uses the following syntax for Web UI objects:

    Browser.BrowserChild("page_title").html_class("object_tag")

    1. "page_title" is the title of the Web page, defined by the HTML tag.</li> <li>"object_tag" is the label of the HTML element. How a HTML element is labeled depending on the type of HTML element.</li> </ol> </p> <b>23) How to add objects of other pages to a test frame?</b> <p class="text"><b>Ans</b>. If your Web application has pages other than the home page, you should also record their page objects into the test frame:</p> <ol class="text"> <li>Make sure your Web browser is active and showing another page of your Web application.</li><BR> <li>Make sure SilkTest is running.</li><BR> <li>Click File/Open menu.</li><BR> <li>Select your test frame file. For example: HomeFrame.inc</li><BR> <li>Click OK to open the test frame.</li><BR> <li>Click Record/Window Declarations menu. The Record Window Declarations dialog box shows up.</li><BR> <li>Click your Web application window. Web page objects are recorded in the Record Window Declarations dialog box.</li><BR> <li>Press Ctrl+Alt to pause the recording.</li><BR> <li>Click "Paste to Editor" button. All recorded objects will be inserted into the test frame.</li><BR> <li>Repeat this for other Web pages, if needed.</li><BR> </ol> <b>24) What is DefaultBaseState?</b> <p class="text"><b>Ans</b>. The DefaultBaseState is a starting point of test project from which the Recovery System can automatically restart your test cases when test cases fail to continue.</p> <b>25)What is the standard flow of execution of a test case?</b> <p class="text"><b>Ans</b>. <ol class="text"> <li>Starting from the base state.</li> <li>Drive the application to the state where the expected result should occur.</li> <li>Verify the actual result against the expected result.</li> <li>Declare the test case as passed or failed.</li> <li>Return to the base state.</li></ol> </p> <b>26) How to record a test case?</b> <p class="text"><b>Ans</b>. <ol class="text"> <li>Run SilkTest.</li><BR> <li>Click Option/Runtime menu. The Runtime Options dialog box shows up.</li><BR> <li>Edit the Use Files field to include your test frame file and the exlorer.inc file. For example: ...\HomeFrame.inc,extend\explorer.inc.</li><BR> <li>Make sure IE 5.x DOM is selceted.</li><BR> <li>Click OK to cloase the Runtime Optoins dialog box.</li><BR> <li>Open your test project.</li><BR> <li>Click Record/Testcase menu. The Record Testcase dialog box shows up.</li><BR> <li>Name your test case. For example: LoginTest.</li><BR> <li>Select DefaultBaseState in the Applicatin State dropdown list.</li><BR> <li>Click Start Recording button.The Record Testcase dialog closes. Your Web application is will be automatically started by SilkTest, based on the information in test frame file. SilkTest Editor window closes. The Record Status dialog box shows up.</li><BR> <li>Continue to use your Web application. SilkTest records everything you did on your application.</li><BR> <li>Click the "Done" button on the Recording Status dialog box to stop recording. The Recording Status dialog box closes. The Record Testcase dialog box shows up again.</li><BR> <li>Click Paste to Editor. SilkTest will insert the recorded acitivities as 4Test statements into a script file. The Record Testcase dialog closes.</li><BR> <li>Click File/Save menu to save the script file. You can enter a script file name. For example, LoginTest.t.</li><BR> </ol></p> <b>27) How to write a Masterplan?</b> <p class="text"><b>Ans</b>. You can run all your sub-plans using master plan approach. You just open new plan file and call your subplan/testcase from this file. if you want to run subplan from master plan then sysntax is like include: mysubplan.pln</p> <b>28) How to define an object verification in a test case?</b> <p class="text"><b>Ans</b>. While recording a test case, you can define verification points to verify UI objects:</p> <ol class="text"> <li>Make sure you are in the process of recording a testcase.</li> <li>Make sure the Record Status dialog box is on the screen.</li> <li>Make sure your recording reached the Web page that has the UI object you want to verify.</li> <li>Click the background (blank area) of the Web page. Do not click any objects on the page.</li> <li>Press Ctrl-Alt. The Verify Window dialog box shows up. All the objects on the current Web page are listed on the Verify Window dialog box.</li> <li>Select the object to be verified in the object list. Un-select all other objets.</li> <li>Select the property to be verified in the property list. Un-select all other properties.</li> <li>Click OK to close the Verify Window dialog box.</li> <li>Continue your recording.</li> </ol> <b>29) How to run a test case from a test script file?</b> <p class="text"><b>Ans</b>. A test script file can store multiple test cases. You can run a testcase from a test script file:</p><ol class="text"> <li>Open the test script file.</li> <li>Select the test case in the test file.</li> <li>Click Run/Testcase menu. The Run Testcase dialog box shows up.</li> <li>Click the Run button. SilkTest starts to run the test case.</li> <li>Do not touch mouse or keyboard, to avoid interrupting the test case execution.</li> <li>SilkTest finishes executing the testcase. The Restuls window shows up with the execution result.</li> <li>Review the execution result.</li> </ol></p> <b>30) What's in the test result file?</b> <p class="text"><b>Ans</b>. <ol class="text"> <li>Result sumary: The name of the script file. The name of the testcase. The machine on which the tests ran. The starting time and the total elapsed time. The number and percentage of testcases that passed and failed. The total number of errors and warnings.</li> <li>Result detail: List of errors and detailed information.</li> </ol></p> <br><br> <table width=80% align="center"> <tr> <td> </td> <td align="center"> <a href="/interview-question/silk-test/3.asp"><img src="/images/next.gif" alt="Next" border=0></a> </td> </tr> </table> <center> <!-- script type="text/javascript"> GA_googleFillSlot("OneStopTesting-BottomBanner"); </script--> <br> <img src="/images/new_anime.gif" align="absmiddle"> <a href="http://groups.yahoo.com/group/onestoptesting/join"><b><FONT face="Verdana" size="2" color="red">Looking for Software Testing eBooks and Interview Questions? Join now and get it FREE!</FONT></b></a> </center> <table width="487px" align="center" valign="top" cellpadding="5" cellspacing="3"> <tr> <td> <fieldset class="field"> <legend><img src="/images/discussion.gif" align="center" alt="discussion"><b>Discussion Center</b></legend> <table width="420px" align="center" valign="top" cellpadding="5" cellspacing="3" border=0> <tr> <td align="center" width="70px"><A HREF="http://forum.onestoptesting.com/forum_topics.asp?FID=25" title="Discuss" target="_blank"><img SRC="/images/discuss.gif" alt="Discuss" border="0"><br>Discuss</A></td> <td align="center" width="70px"><A HREF="http://forum.onestoptesting.com/forum_topics.asp?FID=40" title="Query"><INPUT TYPE="image" SRC="/images/query.jpg" alt="Query"><br>Query</A></td> <td align="center" width="70px"><A HREF="http://forum.onestoptesting.com/forum_topics.asp?FID=41" title="Feedback/Suggestion"><INPUT TYPE="image" SRC="/images/feed-back.png" alt="Feedback/Suggestion"><br>Feedback</A></td> <td align="center" width="70px"><A HREF="http://groups.yahoo.com/group/onestoptesting/join" title="Join OneStopTesting Yahoo Groups" target="_blank" target="_blank"><img src="/images/join-free.gif" alt="Yahoo Groups" border="0"><br>Y! Group</A></td> <td align="center" width="70px"><A HREF="http://www.sirfdosti.com/community.asp?communityId=17106" title="Join OneStopTesting Sirfdosti Groups" target="_blank"><img SRC="/images/sirfdosti.jpg" alt="Sirfdosti Groups" border="0"><br>Sirfdosti</A></td> <td align="center" width="70px"><A HREF="/contact-us.asp" title="Contact Us" target="_blank"><img src="/images/contact-us.jpg" alt="Contact Us" border="0"><br>Contact</A></td> </tr> </table> </fieldset> </td> </tr> </table> <b>Recommended Resources</b><br> • <a href="http://www.coolinterview.com/type.asp?iType=197" target="_blank" title="Testing Interview Questions">Testing Interview Questions </a>- <a href="http://www.coolinterview.com/type.asp?iType=197" target="_blank" title="http://www.coolinterview.com/type.asp">http://www.coolinterview.com/type.asp</a><br> • <a href="http://www.coolinterview.com/type.asp?iType=198" target="_blank" title="Testing Tools Interview Questions">Testing Tools Interview Questions </a>- <a href="http://www.coolinterview.com/type.asp?iType=198" target="_blank" title="http://www.coolinterview.com/type.asp">http://www.coolinterview.com/type.asp</a><br> • <a href="http://en.wikipedia.org/wiki/Software_testing" target="_blank" title="What is Software Testing?">What is Software Testing?</a>- <a href="http://en.wikipedia.org/wiki/Software_testing" target="_blank" title="http://en.wikipedia.org/wiki/Software_testing">http://en.wikipedia.org/wiki/Software_testing</a><br> • <a href="http://www.softwareqatest.com/" target="_blank" title="Software QA & Testing Resource Center">Software QA & Testing Resource Center</a>- <a href="http://www.softwareqatest.com/" target="_blank" title="http://www.softwareqatest.com/">http://www.softwareqatest.com/</a><br> • <a href="http://www.testingfaqs.org/" target="_blank" title="Testing Faqs">Testing Faqs</a>- <a href="http://www.testingfaqs.org/" target="_blank" title="http://www.testingfaqs.org">http://www.testingfaqs.org/</a> </td> <td width=100 background="/images/hotproperties_05.jpg"> </td></tr> <tr> <td colspan="3" height="14"><img height="14" src="/images/hotproperties_07.jpg" width="500"></td></tr></tbody></table> </td> <td valign="top" width="148" rowspan="4"> <table class="smallstyle" width="200" border="0"> <tbody> <tr> <td> <table class="smallstyle" width="203" border="0"> <tbody> <tr> <td colspan=3><img height=20 src="/images/andhr_-test_01.jpg" width="200"></td> </tr> <tr> <td width="8" background="/images/andhr_-test_02.jpg" rowspan="2"> </td> <td width="90%"></td> <td width="12" background="/images/andhr_-test_04.jpg" rowspan="2"> </td> </tr> <tr> <td> <center> <font color=gray size=1 face=verdana>A D V E R T I S E M E N T</font><br> <script type="text/javascript"><!-- google_ad_client = "ca-pub-4686307991865625"; /* OneStopTestingRBanner */ google_ad_slot = "7050113979"; google_ad_width = 160; google_ad_height = 600; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </center> </td> </tr> <tr> <td class="style11" background="/images/andhr_-test_02.jpg"> </td> <td class="style11"></td> <td background="/images/andhr_-test_04.jpg"> </td> </tr> <tr> <td colspan=3><img height=17 src="/images/spotlight_15.gif" width=195></td> </tr> <tr> <td colspan=3><img height=20 src="/images/andhr_-test_01.jpg" width=200></td> </tr> <tr> <td width=8 background="/images/andhr_-test_02.jpg" rowspan=2> </td> <td></td> <td width=12 background="/images/andhr_-test_04.jpg" rowspan=2> </td> </tr> <tr> <td align="center"> <font color="gray" size="1" face=verdana><BR><b>Members Login</b></font><br><br> <form method="POST" action="/login-process.asp" name="myForm" onsubmit="return validatepage();"> <input type="hidden" name="returnURL" value="http://www.onestoptesting.com/interview-question/silk-test/2.asp"> <table border="0" align="center" width="100%" colspan="5"> <tr> <td><B>Email ID:</B></td> <td><INPUT type="text" maxLength="40" name="emailId" size="11"></td> </tr> <tr> <td><B>Password:</B></td> <td><INPUT maxLength="40" name="passwd" size="11" type="password"></td> </tr> <tr> <td width="20%" colspan="2" align="center"><BR><input type="image" name="submit" onclick="return validatepage();" value="Log In" src="/images/login.gif"></td></tr> <tr> <td colspan="2"><br> <A href="/forgot.asp"><font face="verdana" size="1"><IMG SRC="/images/arrow_right_peppermint.png" WIDTH="11" HEIGHT="11" BORDER="0" ALT="" align="absmiddle"> <b>Forgot Password</b></font></A></td> </tr> <tr> <td colspan="2"> <A href="/register.asp"><font face="verdana" size="1"><b><IMG SRC="/images/arrow_right_peppermint.png" WIDTH="11" HEIGHT="11" BORDER="0" ALT="" align="absmiddle"> New User </font></A></td> </tr> </table> </form> <center> <script type="text/javascript"> <!-- google_ad_client = "pub-4686307991865625"; /* OneStopTesting-RightAdUnit */ google_ad_slot = "1649586555"; google_ad_width = 180; google_ad_height = 90; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </center> </td> </tr> <tr> <td class=style11 background="/images/andhr_-test_02.jpg"> </td> <td class=style11></td> <td background="/images/andhr_-test_04.jpg"> </td> </tr> <tr> <td colspan=3><img height=17 src="/images/spotlight_15.gif" width=195></td> </tr> <tr> <td colspan=3><img height=20 src="/images/andhr_-test_01.jpg" width=200></td> </tr> <tr> <td width=15 background="/images/andhr_-test_02.jpg" rowspan=2> </td> <td></td> <td width=20 background="/images/andhr_-test_04.jpg" rowspan=2> </td> </tr> <tr> <td align="left"> <font color=gray size=1 face=verdana>Testing Interview Questions</font><br> <li><a href="http://www.coolinterview.com/type.asp?iType=81" style="text-decoration:none" title="Testing - General Interview Questions"> General Testing </a><br> <li><a href="http://www.coolinterview.com/type.asp?iType=80" style="text-decoration:none" title="Automation Testing Interview Questions"> Automation Testing </a><br> <li><a href="http://www.coolinterview.com/type.asp?iType=641" style="text-decoration:none" title="Manual Testing Interview Questions"> Manual Testing </a><br> <li><a href="http://www.coolinterview.com/type.asp?iType=275" style="text-decoration:none" title="Software Development Life Cycle Interview Questions">Software Development Life Cycle </a><br> <li><a href="http://www.coolinterview.com/type.asp?iType=276" style="text-decoration:none" title="Software Testing Life Cycle Interview Questions">Software Testing Life Cycle </a><br> <li><a href="http://www.coolinterview.com/type.asp?iType=546" style="text-decoration:none" title="Testing Models Interview Questions"> Testing Models </a><br> <li><a href="http://www.coolinterview.com/type.asp?iType=198" style="text-decoration:none" title="Automated Testing Tools Interview Questions">Automated Testing Tools </a><br> <li><a href="http://www.coolinterview.com/type.asp?iType=244" style="text-decoration:none" title="Silk Test Interview Questions">Silk Test </a><br> <li><a href="http://www.coolinterview.com/type.asp?iType=82" style="text-decoration:none" title="Win Runner Interview Questions">Win Runner </a><br> </td> </tr> <tr> <td class="style11" background="/images/andhr_-test_02.jpg"> </td> <td class="style11"></td> <td background="/images/andhr_-test_04.jpg"> </td> </tr> <tr> <td colspan=3><img height=17 src="/images/spotlight_15.gif" width=195></td> </tr> <tr> <td colspan=3><img height=20 src="/images/andhr_-test_01.jpg" width=200></td> </tr> <tr> <td width=8 background="/images/andhr_-test_02.jpg" rowspan=2> </td> <td></td> <td width=12 background="/images/andhr_-test_04.jpg" rowspan=2> </td> </tr> <tr> <td> <center> <font color=gray size=2 face=verdana>Testing Highlights</font><br> <hr noshade size=1 color="#DBDBDB" width="145px"></center> <li><a href="http://bestebooksworld.com/cat/Software-Testing/" title="Free Software Testing Ebooks">Software Testing Ebooks</a></li> <li><a href="/testing-jobs/" title="Testing Jobs">Testing Jobs</a> <li><a href="/faqs/">Testing Frequently Asked Questions</a> <li><a href="/testing-news/" title="Testing News">Testing News</a> <li><a href="/interview-questions/" title="Testing Interview Questions">Testing Interview Questions</a> <li><a href="/jobs/" title="Testing Jobs">Testing Jobs</a> <li><a href="/companies/" title="Testing Companies">Testing Companies</a> <li><a href="/job-consultants/" title="Testing Job Consultants">Testing Job Consultants</a> <li><a href="http://www.coolinterview.com/type.asp?iType=841" title="ISTQB Certification Dumps">ISTQB Certification Questions</a> </td> </tr> <tr> <td class=style11 background="/images/andhr_-test_02.jpg"> </td> <td class=style11></td> <td background="/images/andhr_-test_04.jpg"> </td> </tr> <tr> <td colspan=3><img height=17 src="/images/spotlight_15.gif" width=195></td> </tr> <tr> <td colspan=3><img height=20 src="/images/andhr_-test_01.jpg" width=200></td> </tr> <tr> <td width=8 background="/images/andhr_-test_02.jpg" rowspan=2> </td> <td></td> <td width=12 background="/images/andhr_-test_04.jpg" rowspan=2> </td> </tr> <tr> <td> <center> <font color=gray size=2 face=verdana>Interview Questions</font><br> <hr noshade size=1 color="#DBDBDB" width="145px"></center> <li><a href="/interview-question/win-runner/" title="WinRunner">WinRunner</a> <li><a href="/interview-question/load-runner/" title="LoadRunner">LoadRunner</a> <li><a href="/interview-question/silk-test/" title="Silk Test">SilkTest</a> <li><a href="/interview-question/director/" title="Test Director">TestDirector</a> <li><a href="/interview-question/general/" title="General Testing Question">General Testing Questions</a> </td> </tr> <tr> <td class=style11 background="/images/andhr_-test_02.jpg"> </td> <td class=style11></td> <td background="/images/andhr_-test_04.jpg"> </td> </tr> <tr> <td colspan=3><img height=17 src="/images/spotlight_15.gif" width=195></td> </tr> <tr> <td colspan=3><img height=20 src="/images/andhr_-test_01.jpg" width=200></td> </tr> <tr> <td width=8 background="/images/andhr_-test_02.jpg" rowspan=2> </td> <td></td> <td width=12 background="/images/andhr_-test_04.jpg" rowspan=2> </td> </tr> <tr> <td> <center> <font color=gray size=2 face=verdana>Resources</font><br> <hr noshade size=1 color="#DBDBDB" width="145px"></center> <li><a href="http://forum.onestoptesting.com" target="_blank" title="Testing Forum">Testing Forum</a> <li><a href="http://www.vyomlinks.com/downloads/" target="_blank" title="Downloads">Downloads</a> <li><a href="http://www.bestebooksworld.com/" target="_blank" title="E-Books">E-Books</a> <li><a href="/jobs/">Testing Jobs</a> <li><a href="/testing-interview-questions.asp" title="Testing Interview Questions">Testing Interview Questions</a> <li><a href="/testing-tools-questions.asp" title="Testing Tools Questions">Testing Tools Questions</a> <li><a href="/testing-jobs/" title="Testing Jobs">Testing Jobs</a> <li><a href="/a-z-knowledge.asp" title="A-Z Knowledge">A-Z Knowledge</A> </td> </tr> <tr> <td class=style11 background="/images/andhr_-test_02.jpg"> </td> <td class=style11></td> <td background="/images/andhr_-test_04.jpg"> </td> </tr> <tr> <td colspan=3><img height=17 src="/images/spotlight_15.gif" width=195></td> </tr> </tbody> </table> <tr><td> <a href="#" onClick="MyWindow=window.open('http://sda.htcampus.com/testframe/studyabroad-widget/?campaign_vendorid=90202', 'MyWindow', 'toolbar=no, location=no, directories=no,status=no,menubar=no,scrollbars=yes, resizable=no, width=90, height=400'); return false;"> <CENTER><font color="Black" size="4.5px"><center>Planning<Br>for<Br>Study ABROAD ?</center></font><font color = "Yellow" size = "5"><br><br> <img src="http://www.onestopgate.com/images/click-here.gif" height="50px" width="150px" border="0" alt="Study Abroad"></font></CENTER> </a> </td></tr> </td> </tr> </tbody> </table> </td> </td></tr></tbody></table> <table align="center"> <tr> <td> <P> <hr color=Gray> <center><font face=verdana size=1><b>Vyom Network</b> : <a href="http://www.vyomworld.com" title="Free SMS, GRE, GMAT, MBA"><b>Free SMS, GRE, GMAT, MBA</b></a> | <a href="http://www.testsworld.com" title="Online Exams"><b>Online Exams</b></a> | <a href="http://www.jobsassist.com" title="Freshers Jobs"><b>Freshers Jobs</b></a> | <a href="http://www.vyomlinks.com" title="Software Downloads"><b>Software Downloads</b></a> | <a href="http://www.sourcecodesworld.com" title="Programming & Source Codes"><b>Programming & Source Codes</b></a> | <a href="http://www.bestebooksworld.com" title="Free eBooks"><b>Free eBooks</b></a> | <a href="http://www.coolinterview.com" title="Job Interview Questions"><b>Job Interview Questions</b></a> | <a href="http://www.academictutorials.com" title="Free Tutorials"><b>Free Tutorials</b></a> | <a href="http://www.topmasala.com" title="Jokes, Songs, Fun"><b>Jokes, Songs, Fun</b></a> | <a href="http://www.indianfreeads.com" title="Free Classifieds"><b>Free Classifieds</b></a> | <a href="http://www.tasty-food.com" title="Free Recipes"><b>Free Recipes</b></a> | <a href="http://www.freebangalore.com" title="Bangalore Info"><b>Bangalore Info</b></a> | <a href="http://www.onestopgate.com" title="GATE Preparation"><b>GATE Preparation</b></a> | <a href="http://www.onestopmba.com" title="MBA Preparation"><b>MBA Preparation</b></a> | <a href="http://www.onestopsap.com" title="Free SAP Training"><b>Free SAP Training</b></a> <br> <a href="/about/privacy-policy.asp">Privacy Policy</a> | <a href="/about/terms-and-conditions.asp">Terms and Conditions</a><br> <a href="/sitemap.asp" title="Sitemap">Sitemap</a> | <a href="/sitemap.xml" title="Sitemap (XML)">Sitemap (XML)</a> </td> </tr> </table> <table class=menustyle height=15 cellSpacing=1 cellPadding=1 width=800 align=center summary=menu border=0> <tr bgColor=#dfdfdf> <td height=5><DIV align=center><span class=bottom>Copyright �2003-2024. All rights reserved. </span></DIV></TD> </tr> </tbody> </table> <center><a href="http://www.coolinterview.com" title="Job Interview Questions"><b>Job Interview Questions</b></a> | <a href="http://www.vyomworld.com/placementpapers/index.asp" title="Placement Papers"><b>Placement Papers</b></a> | <a href="http://www.vyomworld.com/sms/sms-jokes/" title="SMS Jokes"><b>SMS Jokes</b></a> | <a href="http://www.coolinterview.com/type.asp?iType=41" title="C++ Interview Questions"><b>C++ Interview Questions</b></a> | <a href="http://www.coolinterview.com/type.asp?iType=40" title="C Interview Questions"><b>C Interview Questions</b></a> | <a href="http://www.quick2host.com" title="Web Hosting"><b>Web Hosting</b></a> <br> <a href="/de/" title="German">German</a> | <a href="/fr/" title="French">French</a> | <a href="/pt/" title="Portugese">Portugese</a> | <a href="/it/" title="Italian">Italian</a> </center> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-24862869-8', 'auto'); ga('send', 'pageview'); </script> </body> </html>