0% found this document useful (0 votes)
11 views3 pages

Interview TCS Alvera

The document outlines various technical interview questions and topics related to software testing, web services, and performance testing, including concepts like class overriding, URL test cases, and bug reproduction strategies. It also discusses load testing settings and how to achieve concurrent user testing effectively. Additionally, it covers fundamental software development concepts such as SDLC, polymorphism, and the differences between interface and abstract classes.

Uploaded by

yahsuD
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views3 pages

Interview TCS Alvera

The document outlines various technical interview questions and topics related to software testing, web services, and performance testing, including concepts like class overriding, URL test cases, and bug reproduction strategies. It also discusses load testing settings and how to achieve concurrent user testing effectively. Additionally, it covers fundamental software development concepts such as SDLC, polymorphism, and the differences between interface and abstract classes.

Uploaded by

yahsuD
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

TCS Interview

What is class?

Overriding concept
- enum & how to use it another class B also have open method then how to use it in
other class
- write Connection string
- how to deploye web services
Deploy web service wirth IIS 6/7 not awaer abt step

- write down testcases for types of url


.org, .gov, .com .in

- Test case for URL


What are the protocols supported ... is it only http ... or https, rmtp etc as
well
Deep path after the host
URL Parameters
Presence of special characters ... if any
handling white spaces
Max and Min size of a URL

- how to repro bug if bug is not repro at dev side


Tester Should try to reproduce the bug with different scenarios and if its not
reproducible , Discuss with Team Peopes ,
the Developer should add the Comments "Not reproduce" ,Resolution of the bug
maintain as "No Change required"
The above status are based on "Bug Posting Tool"
(in TFS there option called attached configrattion of system)

- if i have 1 script & 1 controller & 2 agent can i able 2 run single script on 1
agent at 2 time and another on 3 time

- which type of counter u observed in Performance testing


memory counter, .NET counter,

- functional testing & non functional testing


- usability testing
- which approch u use while designe framework for testing

singletone or factory
- if i dont want to use method in base class then
- write sp to add 2 no.
- trriger ?
- tell me about urself
- why u r switing
- 2 week point 3 strngth
- why TCS
- fields in TFS while bug log
- how do u come 2 know which file is change changeset or shlevset

----------------------------------------------------------------------

Alvara

1. How to test web services


2. Types of bindding is use for web tetsing -http-nettcp is http is secore
3. if unit test contain 3 function and u put it on load test it will give u
performance of whole how will we get performance of one function only
4. Explain SDLC
5. Bug serivirity / priority
6. Diff bet interface & abstract class'
7. mutilevel inheritance is possible in c# and how
8. polymorphism
9. how to populate object for API - i.e. read how to read xml to craete object
10.SQL profiling use in ur project
11 What is automation framework contain
12. in Code profiling how do u understand fun is calling under for loop
13. r u involve in test strategi what is it
14. want to run 1000 concurrent user for web service what is pre requiest for same

Jagwar
1. what is web service
2.

http://go4answers.webhost4life.com/Example/parametrization-vsts-load-test-4845.aspx

=====================================

1 I wanted to test my application for 250 concurrent users, What should be the
correct setting to achieve the above...

1.I have set the Max user count as 250 and test iteration in run setting as 1, So
will it send 250 virtual request ???

or

2.I have to set the Max user count as 250 and test iteration in run setting as 250

ANS
Here are some explanations about load test settings:

1.In the Constant Load Pattern you set how the load test will create your virtual
users.
�If you Set Pattern = Constant then visual studio will create 250 virtual users
without meaning that you need them. So if you have 250 users and only 10 Tests
Iterations, only 10 users will send a request
�If you set Pattern = Step you set an initial number of virtual users and they are
increased at each test iteration by the Step User Count. Again, you may create more
users form those you will actually need.
2.In the Run Settings there are 2 basic settings you should focus:
�The Test Iterations, which describes the total number of requests (tests) that
will be executed from all the virtual users. So, if you set this value 500 and you
have a Constant Pattern of 250 virtual users, then each user will send 2 requests.
Perhaps some will send 3 and some others 1, but the total tests (requests) will be
500.
�The Use Test Iterations setting which describes whether the test should be
executed according to the Test Iterations settings (previous scenario) or according
to the Run Duration setting. If you set this property to false, then all virtual
users will try to execute as many requests/test as they can in the Test Duration
time.
So, answering to your questions:

I have set the Max user count as 250 and test iteration in run setting as 1, So
will it send 250 virtual request ???
No, it will send only one request. Set the Test Iterations = 250 if you want 250
total tests .

I have to set the Max user count as 250 and test iteration in run setting as 250

This will send 250 total tests but it doesn't mean that they will be concurrent.
The 250 virtual user will not created at once, it depends of their initial number.
So, if you want 250 concurrent tests you must set the Pattern = Constant.

You might also like