Interview Questions, Answers and Tutorials

QTP Interview Questions and Answers

QTP Interview Questions and Answers

1. Name the types of Test Automation?
Record and Playback (does not work in real world scenario)
Functional decomposition
Keyword driven
Model Based
Hybrid Test Automation Framework etc.

2. Explain the benefits of using Test Automation?
It can be executed unattended, leaving the testers free to do other work.
Large number of data combinations can be run – Good coverage.
Re-use of test cases in the different releases/versions etc.

3. Give the names of some Test Automation products/vendors?
QuickTest Professional – HP
Rational Robot – IBM

4. When to use Test Automation?
In one short line
Successful test-automation needs to start early in the development cycle.
For elaborate reading see:
http://www.stickyminds.com/sitewide.asp?Function=edetail&ObjectType=COL&ObjectId=2084
http://googletesting.blogspot.com/2007/10/automating-tests-vs-test-automation.html

5. Give a to the point narration of what Test Automation is?
Test automation is the use of software to control the execution of tests, the
comparison of actual outcomes to predicted outcomes, the setting up of test
preconditions, and other test control and test reporting functions. Commonly, test
automation involves automating a manual process already in place that uses a
formalized testing process. (Wikipedia)

6. Write advantages of using Test Automation?
Refer to Answer 2

7. Name any three types of applications you can run Test Automation on?
Test automation can be run on Windows applications, Web applications, .Net
Applications, Java applications etc.

8. When would we not want to use Test Automation?
If the product is not mature enough.
If you don’t have the time. The product is to be shipped after one month and you
think you can buy a tool and automate a testing process in order to complete early
is all rubbish. (See answer 4)

9. Give the steps of GUI Test Automation?
(related to QuickTest)
Analyzing your application
Preparing the testing infrastructure
Building your tests and adding steps to them
Enhancing your test
Debugging, running, and analyzing your test
Reporting defects

10. Explain the difference between Keyword view and Expert view?
The Keyword View is comprised of a table-like view, in which each step is a
separate row in the table, and each column represents the different parts of the
steps.
In the Expert View, you can view an action in VBScript. If you are familiar with
VBScript, you can add and update statements and enhance your tests and
function libraries with programming.

11. How to start recording with a keyboard shortcut?
F3

12. How to stop recording with a keyboard shortcut?
F4

13. How to playback from top with a keyboard shortcut?
F5

14. Is it possible to customize keyword view Fonts and colors?
Yes, Tools ->View Options.. and go to Fonts and Colors tab.

15. When will you use Shared and when local object repository?
Local Object Repository may be used if
You have only one, or very few, components that correspond to a given
application, interface, or set of objects.
You do not expect to frequently modify object properties.
Shared Object Repository may be used if
You expect the object properties in your application to change from time to time.
You have several components that test elements of the same application,
interface, or set of objects.

16. What will you choose between OR and DP and why?
Object Repository or Descriptive Programming

17. What is the use of the Object Repository?
All About Object Repositories

18. What’s the extension of the exported Object Repository file?
.xml

19. Explain when is the Object Repository read from?
At run time.

20. Write any 3 advantages of the Object Repository?
Refer to Answer 16

21. Why is there a need for an Object Repository Administrator?
Its not necessary but it is quite a lot helpful to have one to manage (create new
ORs, manage repository parameters, modify object details, merging etc) shared
object repositories and to see that the reusibility of the tests is maintained w.r.t.
shared object repository.

22. When exactly is the Object Repository populated?
During recording.

23. Explain what is a Shared Object Repository?
Refer to Answer 17

24. Explain the steps to modify a Shared Object Repository?
You can modify a test object in the shared object repository using the Object
Repository Manager.
To modify a test object property:
Right-click the step containing the test object that changed, and choose Object
Properties or choose Edit > Step Properties > Object Properties from the menu
bar.
The Object Properties dialog box opens and displays the properties QuickTest
uses to identify the object.
Modify the properties and values as required. You modify the properties and
values in the Object Properties dialog box in the same way as you modify the test
object details in the Object Repository window.
Click OK to close the dialog box.
———- ———-
The object details area for shared object repositories in the lower right side of the
document window enables you to view and modify the properties and property
values used to identify an object during a run session or the properties of a
checkpoint or output object.
After making sure that your shared object repository is editable, and that it is the
active window, you modify object details for objects in a shared object repository in
the same way as you modify them for local objects. etc

25. How do you assign a Shared Object Repository to an action?
You can associate a single action with an object repository by right-clicking the
action in the Resources pane and choosing Associate repository with action from
the context menu.
You can use the Associated Repositories tab of the Action Properties dialog box
(Edit > Action > Action Properties) to associate one or more object repositories
with the current action etc.

26 What are the names of UI Objects?
Few examples are Button, Listbox, Checkbox

27 Write the names of any 3 UI Objects?
Refer answer 26

28 What is a Test Object?
A test object is an object that QuickTest creates in the test to represent the actual
object in your application. QuickTest stores information on the object that will help
it identify and check the object during the run session.

29 Explain what do you mean by run-time objects?
A run-time object is the actual object in your application on which methods are
performed during the run session.

30 What is the class attribute of a UI Object?
Few examples are WinButton, WinEdit etc

31 What is the physical description or attributes of a UI Object?
For example for an OK button physical attributes can be Class Name = WinButton,
text = ‘OK’ etc

32 How and Where can I modify a name of a Test Object?
Refer to answer 24

33 How can I highlight a Test Object and make it flash?

You can select a test object in your object repository and highlight it in the
application you are testing. When you choose to highlight a test object, QuickTest
indicates the selected object’s location in your application by temporarily showing
a frame around the object and causing it to flash briefly.
Make sure your application is open to the correct window or page.
Select the test object you want to highlight in your object repository.
Click the Highlight in Application button or choose View > Highlight in Application.
The selected object is highlighted with a border in the application.

34 Explain the purpose of Object Spy?
Using the Object Spy pointing hand mechanism, you can view the supported
properties and methods of any object in an open application.

35 What is a virtual object?

You can teach QuickTest to recognize any area of your application as an object by
defining it as a virtual object. Virtual objects enable you to create and run tests on
objects that are not normally recognized by QuickTest.

36 What is the need of virtual objects?

Your application may contain objects that behave like standard objects but are not
recognized by QuickTest. You can define these objects as virtual objects and map
them to standard classes, such as a button or a check box.

37 How to assign an object to a variable?

Using a Set statement.
e.g. Set FSO = CreateObject(“Scripting.FileSystemObject”)

38 What is a DLL?

Please see
http://qtp.blogspot.com/2008/11/qtp-apis-dlls-and-more.html

39 Explain how to declare DLL functions?

Please see
http://qtp.blogspot.com/2008/11/qtp-apis-dlls-and-more.html

40 Explain how to call DLL functions?

Please see
http://qtp.blogspot.com/2008/11/qtp-apis-dlls-and-more.html

41 What is the reason for Synchronizing the Run Session?
Because applications don’t always respond to user input at the same speed from
one test to another

42 Give two reasons for delays causing synchronization problems?

For a window to pop up
For a progress bar to reach 100%

43 Explain what is a Client/Server application?

The client-server software architecture model distinguishes client systems from
server systems, which communicate over a computer network.

44 Explain the reason that why does a script fail when synchronization
problems occur?

One of the possible reasons might be that Quicktest by default waits a certain
amount of time before it continues the test and the Server was not finished and
took longer than expected

45 What is a synchronization point?
Please see
http://qtp.blogspot.com/2007/09/qtp-sync-wait-and-synchronization.html

46 How is the synchronization wait time determined, what plus what?
When working with Web objects, QuickTest waits up to the amount of time set for
the Browser navigation timeout option, plus the time set for the object
synchronization timeout

47 What else can be done if QTP is unable to solve synchronization problems?
Use Wait or Exist etc

48 Why do we use actions?
Actions help divide your test into logical units.
Actions enable you to parameterize and iterate over specific elements of a test. etc
QuickTest Professional Actions
http://qtp.blogspot.com/2007/05/actions-in-qtp-9-quicktest-professional_08.html

49 Explain what is a reusable action?
QuickTest Professional Actions
http://qtp.blogspot.com/2007/05/actions-in-qtp-9-quicktest-professional_08.html

50 How to call an action from another action?

Using RunAction
Example
Open a new test.
Action1 is there by default. Go to its expert view and type
msgbox “Action 1”
Go to Keyword View and from Insert (menu) choose Call to New Action. Insert Call
to New Action dialog opens. Just click ok. Go to its expert view and type
msgbox “Action 2”
Go to Keyword View and from Insert (menu) choose Call to New Action. Insert Call
to New Action dialog opens. Just click ok. Go to its expert view and type
RunAction “Action1”
In the Keyword View make sure that Action3 is highlighted
Go to Automation (menu) and choose Run Current Action.

51. What is an action?
When you create a test, it includes one action. Actions help divide your test into
logical units, such as the main sections of a Web site, or specific activities that you
perform in your application.

52. What is action template?
If you want to include one or more statements in every new action in your test, you
can create an action template. For example, if you always enter your name as the
author of an action, you can add this comment line to your action template. An
action template applies only to actions created on your computer.

53. What are the different types of actions?

http://qtp.blogspot.com/2007/05/actions-in-qtp-9-quicktest-professional_08.html

54. Explain the difference between the global and action data table?

When you output a value to the Data Table or add a Data Table parameter to your
test, you can specify whether to store the data in the Global data sheet or in the
action data sheet. Using Global sheet enables you to pass information between
actions.
Current action sheet (local): Each action also has its own sheet in the Data Table
so that you can insert data that applies only to that action.

55. How many actions can we add/Insert in a particular test?
http://qtp.blogspot.com/2007/07/qtp-tutorials-1.html

56. What is the difference between Call to copy of Action and Call to
Existing Action?

When you insert a call to a copy of an action into a test, the original action is
copied in its entirety, including checkpoints, parameterization, the corresponding
action tab in the Data Table, plus any defined action parameters. If the test you are
copying has objects in the local object repository, the copied action’s local object
repository is also copied together with the action. The action is inserted into the
test as an independent, non-reusable action (even if the original action was
reusable).
You can insert a call to a reusable action that is stored in your current test (local
action), or in any other test (external action). Inserting a call to an existing action is
similar to linking to it. You can view the steps of the action in the action view, but
you cannot modify them. The called action’s local object repository (if it has one) is
also read-only. If you call an external action, you can choose, however, whether
you want the data from the action’s data sheet to be imported as a local, editable
copy, or whether you want to use the (read-only) data from the original action. To
modify a called, external action, you must open the test with which the action is
stored and make your modifications there. The modifications apply to all tests that
call that action.

57. Explain an action parameter?
http://qtp.blogspot.com/2008/03/qtp-action-input-output-parameters.html

58. How do I call an action from another test?

Using Insert->Call to Existing Action

59. How to pass a parameter into an Action?

http://qtp.blogspot.com/2008/03/qtp-action-input-output-parameters.html

60. What is checkpoint timeout?
Specifies the time interval (in seconds) during which QuickTest attempts to
perform the checkpoint successfully.

61. Explain types of Checkpoints you know?
http://qtp.blogspot.com/2007/05/checkpoints-in-qtp-quicktest.html

62. Explain when bitmap checkpoint is used?
By adding bitmap checkpoints to your components, you can check the appearance
of elements in your application by matching captured bitmaps.
You insert bitmap checkpoints while recording or editing a test.
You can check an area of an application as a bitmap.
You can create a bitmap checkpoint for any area in your application, including
buttons, text boxes, and tables.
You can create bitmap checkpoints for TeWindow, TeScreen and TeTextScreen
objects
Bitmap checkpoints check an area of your SAP Web application as a bitmap.
You can define a tolerance for the RGB (Red, Green, Blue) properties of a bitmap
checkpoint. Defining a tolerance determines the percent by which the RGB values
of the actual object are allowed to be different from those of the expected object
and allow the checkpoint to pass.
Bitmap checkpoints are supported for all add-in environments.
Existing Checkpoint: If each page of your application contains your organization’s
logo, you can reuse a bitmap checkpoint to verify each occurrence in the
application.
Last but not the least – The results of bitmap checkpoints may be affected by
factors such as operating system, screen resolution, and color settings.

63. What do you know about Output values?
http://qtp.blogspot.com/2007/12/qtp-output-values.html

64. What is existing checkpoint?
http://qtp.blogspot.com/2008/08/qtp-existing-checkpoint.html

65. How do you declare a variable in VBScript?
http://qtp.blogspot.com/2007/05/vbscript-variable.html

66. Explain a variable?
http://qtp.blogspot.com/2007/05/vbscript-in-qtp.html

67. Explain a statement?
http://qtp.blogspot.com/2007/05/vbscript-in-qtp.html

68. Explain a procedure?
http://qtp.blogspot.com/2007/05/vbscript-in-qtp.html
69. Explain a function?
OR
70. What DataTable functions do you know?

Data Table is made up of three types of objects—DataTable, DTSheet (sheet),
and DTParameter (column). Each object has several methods and properties that
you can use to retrieve or set values.
Import – Imports the specified Microsoft Excel file to the run-time Data Table.
Export – Saves a copy of the run-time Data Table in the specified location.
GetRowCount – Returns the total number of rows in the longest column in the first
sheet in the run-time Data Table (global sheet). etc.

71. How do you find out what the length of the string is?

Len Function
Returns the number of characters in a string or the number of bytes required to
store a variable.

72. How do you convert the string to upper case?

UCase Function
Returns a string that has been converted to uppercase.

73. How do you declare an array?

http://qtp.blogspot.com/2007/05/vbscript-arrays.html

74. How do you access an element of array?

http://qtp.blogspot.com/2007/05/vbscript-arrays.html

75. What is an array?
http://qtp.blogspot.com/2007/05/vbscript-arrays.html

76. What are the two ways to initialize an array?
http://qtp.blogspot.com/2007/05/vbscript-arrays.html

77. How to load an excel file into QTP?

http://qtp.blogspot.com/2008/05/qtp-script-5.html
http://qtp.blogspot.com/2008/05/qtp-script-2.html

78. How to read cell data?
http://qtp.blogspot.com/2007/07/qtp-tutorials-3.html

79. Explain regular expression?
http://qtp.blogspot.com/2008/04/qtp-regular-expression.html

80. What is a data-driven test case?

one which uses data table parameters.

81. What tables are used for data-driven test cases in QTP?

Global data table or Action data table.

82. Name different types of recording?

http://qtp.blogspot.com/2007/05/qtp-quicktest-professional-recording.html

83. Explain when analog recording mode is used?

http://qtp.blogspot.com/2007/05/qtp-quicktest-professional-recording.html

84. Explain the difference between Context and Analog mode?

http://qtp.blogspot.com/2007/05/qtp-quicktest-professional-recording.html
Context is basically Normal mode.

85. Which record mode is used more, Context Sensitive or Analog?
I think you should answer this for yourself…should not be hard 🙂

86. How to create a Runtime property for an object?
Is it really possible to create a runtime property? I think more than 20 cheap
websites/blogs copied this questions from here as it is without even knowing
whether it is rightly put or not and have not even answered it. Have you heard
about ObjectType() or something like this? what it does? etc etc..
Update:
See a Post and a Discussion for more info.

87. How to add a runtime parameter to a datasheet?

For example add the below two lines in a new test in QTP and run it. After a
successfull run, check you C: drive for excel file named flights.xls
ParamName=DataTable.AddSheet(“MySheet”).AddParameter(“Arrival”, “New
York”).Name
DataTable.Export (“C:flights.xls”)
OR
For example add the below two lines in a new test in QTP and run it. After a
successfull run, check you C: drive for excel file named name.xls
DataTable.GlobalSheet.AddParameter “Name”, “Sachin”
DataTable.ExportSheet “C:name.xls” ,1

88. How many ways we can parameterize data in QTP?

http://qtp.blogspot.com/2007/05/parameterizing-tests-in-qtp-quicktest.html

89. What is the Diff between Image check-point and Bit map Check point
OR
90. In how many ways we can add check points to an application using QTP.

You can manually add checkpoint to your test.
You can use CheckProperty.
You can use CheckItemProperty.
You can add a checkpoint while creating (recording) your test.
You can add a checkpoint while modifying (editing) your test and so on…is this the
end? what say?

91. How Does Run time data (Parameterization) is handled in QTP?

w.r.t. for example datatable, you can use DataTable object (which is The run-time
Data Table) and all its methods and properties etc. etc.

92. Give the reasons to use breakpoint?
1. suspend a run session and inspect the state of your application
2. mark a point from which to begin stepping through a component or function
library using the step commands

93. What is the Active screen?

Active Screen. Provides a snapshot of your application as it appeared when you
performed a certain step during the recording session.

94. Explain what is a test suite?

In software development, a test suite, less commonly known as a validation suite,
is a collection of test cases that are intended to be used to test a software program
to show that it has some specified set of behaviours. A test suite often contains
detailed instructions or goals for each collection of test cases and information on
the system configuration to be used during testing. A group of test cases may also
contain prerequisite states or steps, and descriptions of the following tests.
(Wikipedia)

95. Tell whether Business Process Testing can be used for manual testing or not?
Yes

96. What is an Application Area?

The application area contains all of the required resource files and settings that
are specific to a particular area of the application being tested. Associating each
component with an application area enables the component to access these
resources and settings.

97. What is the custom object?

may be which are made according to the specifications of an individual application

98. What is the use of Add-Ins?

QuickTest Professional includes built-in support for testing standard
Windows applications. You can install and load add-ins from the QuickTest
Professional setup, enabling QuickTest to recognize objects in the
corresponding development environments and to provide functionality
appropriate for that environment.
When you work with these add-ins, you can use special methods, properties,
and various special options to create the best possible test or component for
your application.

99. What are the differences between Global sheet and Local sheet?

Global Data Table parameters take data from the Global sheet in the Data Table.
The Global sheet contains the data that replaces global parameters in each
iteration of the test. By default, the test runs one iteration for each row in the
Global sheet of the Data Table.
Local Data Table parameters take data from the action’s sheet in the Data Table.
The data in the action’s sheet replaces the action’s Data Table parameters in each
iteration of the action. By default, actions run only one iteration.

100. When to use recovery scenarios?

Recovery scenarios are intended for use only with events that you cannot predict
in advance e.g Unexpected events, errors, and application crashes etc.

For More……

Answer Here…

169 thoughts on “QTP Interview Questions and Answers

  1. Because the admin of this web site is working, no hesitation very soon it will be
    famous, due to its quality contents.

    Here is my blog :: DFine8

  2. I know this if off topic but I’m looking into starting my own blog and was curious what all is needed to
    get setup? I’m assuming having a blog like yours would cost a pretty penny?
    I’m not very internet savvy so I’m not 100% positive. Any tips or
    advice would be greatly appreciated. Appreciate it

    Feel free to visit my blog … Erexzen

  3. Admirando o tempo e energia que você tem com o seu
    blog e as informações detalhadas que você oferece!
    Você escreve novas informações que não são as as mesmas informações que vejo em outros blogs por aí .
    Excelente ! Estou adicionando seu feed RSS na minha conta do Google.

  4. Por favor, deixe-me saber se você estiver procurando por um autor
    para seu site . Você tem alguns conteúdos realmente excelentes e acredito que eu seria uma boa aquisição.

    Se você quiser eu queria escrever algum artigo para
    o seu blog em troca de um link para o meu.
    Por favor me envie um email se estiver interessado.
    Obrigada!

  5. It’s going to be ending of mine day, however before
    finish I am reading this great piece of writing to increase my knowledge.

  6. I am extremely impressed along with your writing skills as well as with the layout to your blog.
    Is that this a paid subject matter or did you modify it yourself?

    Anyway stay up the nice high quality writing, it is
    rare to look a nice blog like this one these days..

  7. When I initially commented I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added I get several emails with
    the same comment. Is there any way you can remove people from that
    service? Thanks a lot!

  8. Great work! This is the kind of information that are supposed to be
    shared around the net. Disgrace on Google for not positioning this put up upper!
    Come on over and seek advice from my web site .
    Thanks =)

  9. yoս aare truly a excellent wеbmaster. The webѕite
    loаding speed iѕ amazing. It kind of feelѕ that you’re doing aany distinctive trick.
    Furthermore, The cߋntents arе masterwⲟгk. you have
    performed a excellent ρгocess on this topіc!

  10. Covered anything a number of from further down. I did mentioned that expertise a lot of
    technical information using this web-site, since My spouse united experienced to reload the
    web page a lot of times prior to I could get it to load flawlessly.

  11. Write more, thats all I have to say. Literally, it seems as though
    you relied on the video to make your point. You clearly know what youre talking
    about, why throw away your intelligence on just posting videos to your site when you
    could be giving us something enlightening to read?

    Here is my website – D-Fine8 Review

  12. of course like your web site but you need to check the spelling on quite a few of your posts.
    Many of them are rife with spelling issues and I find it
    very troublesome to inform the reality then again I’ll definitely come again again.

    Also visit my web page; Nitro Strive

  13. Hey thеre tһіs is kіnda ⲟf off topic but I wwas wɑnting to know
    if blogs use WYSIWYG edіtolгs oг if you have to
    manually code with HTML. I’m starting a blokg soon but have no codіng knowledge soo I wanted to get aԁvice from
    someone with experience. Any help woսld be greatlʏ appreciated!

  14. Relatively great post. I merely happened on your company’s corporate entity’s web page and organized to state
    My spouse i possess really loved scanning your internet site content.
    In fact I am in a position to become next utilizing your feed u like the coed creates once again in the near future!

  15. My coder is trying to convince me to move to .net from PHP.
    I have always disliked the idea because of the expenses. But he’s tryiong none
    the less. I’ve been using Movable-type on several websites for about a year and am worried about switching to another platform.

    I have heard excellent things about blogengine.net.
    Is there a way I can import all my wordpress posts into it?
    Any kind of help would be greatly appreciated!

    Look at my site DFine8

  16. I would like to thank you for the efforts you have put in writing this blog.
    I am hoping the same high-grade web site post from you in the upcoming also.
    In fact your creative writing abilities has encouraged
    me to get my own web site now. Really the blogging is spreading its wings quickly.
    Your write up is a good example of it.

    Feel free to surf to my homepage; IQ SuperCharged

  17. hello there and thank you for your information ? I’ve certainly
    picked up anything new from right here. I did however expertise a
    few technical issues using this website, as I experienced to reload the web site lots
    of times previous to I could get it to load properly.
    I had been wondering if your hosting is OK? Not that
    I am complaining, but sluggish loading instances times will sometimes affect your
    placement in google and can damage your high-quality score
    if ads and marketing with Adwords. Anyway I’m adding
    this RSS to my email and could look out for much more of your
    respective exciting content. Ensure that you update this again soon.

    My blog post – walnut.ut.ac.ir

  18. Good blog you’ve got here.. It’s difficult to find high quality writing like yours
    nowadays. I seriously appreciate people like you!
    Take care!!

  19. You could certainly see your enthusiasm within the work you write.
    The arena hopes for more passionate writers such as you who aren’t afraid to
    say how they believe. All the time follow your heart.

  20. Aw, this was an extremely nice post. Taking the time and actual effort to
    produce a superb article… but what can I say… I procrastinate a whole
    lot and don’t manage to get anything done.

  21. Mposlotterbaru.co ialah website agen Lottery atau Togel online paling dipercaya,
    sebagai agen dari 7 provider paling dipercaya salah satunya ialah Isin4D, QQKeno, 4D, 6D, Number
    Games, OK368 dan QQTHAI, Kami datang sebagai agen judi online yang banyak disukai dimulai dari kelompok
    remaja sampai dewasa, disamping itu kami sudah terakreditasi oleh PAY4D di mana Basis baru
    ini benar-benar menolong beberapa player untuk bermain. Dengan memberinya sensai yang tidak terlewatkan oleh anggota

    Mengapa anda harus pilih Mposlotterbaru? Karena selainnya kami mempunyai mekanisme
    operator servis online 24 jam tiap hari dan siap layani anda.
    Dan mempunyai games terbaik yang di mana benar-benar memudahkan beberapa pemain saat bermain permainan itu.
    Dan rahasia beberapa pemain yang bermain sangat terjaga, Jadi sudah tentu
    di website judi togel online Mposlotterbaru sebagai website yang aman dan paling dipercaya,
    karena kemenangan anggota tentu dibayarkan.

    Kami sebagai Agen togel sediakan permaianan untuk togel singapore, sydney, singapore 45, geylang,
    malaysia, macau, qatar, dan hongkong. Agar bisa bermain proses register sangat
    gampang anda perlu berkunjung link Mposlotterbaru. Permainan ini bisa
    dimainkan Dari Handphone atau computer, sesudah anda lakukan register, anda langsung bisa pasang
    togel online anda, harga minimum untuk lakukan taruhan ialah 1000 rupiah saja

    Mposlotterbaru memiliki beberapa promosi yang selalu diupdate, bukan promosi yang cuman ikutan dengan web lain.
    Disitus kami, anda dapat memperoleh promosi yang paling memberikan keuntungan, seperti bonus deposit untuk new player
    dan bonus mingguan bahkan juga bonus bulanan

    Bagaimanakah cara hasilkan uang lewat online?
    kenapa kami tawarkan anda ke website kami? Karena di Website
    kami anda akan memperoleh bonus referal bagi anda yang mengajak rekan-rekan anda untuk bergabung bersama anda di situs
    Mposlotterbaru

    Sistem Pembayaran apa yang diterima oleh kami ?
    Untuk sistem pembayaran transaksi bisnis
    baik deposit atau withdraw, kami tawarkan beberapa
    Bank lokal Indonesia seperti BCA, BNI, BRI, Berdikari.
    disamping itu dapat lewat deposit pulsa seperti
    Telkomsel, XL atau Axis. E-Money seperti Ovo, Gopay, Dana dan Linkaja nantikan apa lagi, Daftar
    saat ini di Bandar Judi Togel di Situs Mposlotterbaru


    Singapore 45

  22. ประกาศฟรี ลงโฆษณาฟรี ซื้อขายออนไลน์
    เว็บประกาศฟรี โฆษณาฟรี ซื้อขายแลกเปลี่ยนสินค้าออนไลน์ ลงโฆษณาฟรี โพสต์ฟรี โปรโมทสินค้า เว็บไซต์ ข่าวประชาสัมพันธ์
    ตลาดออนไลน์ ขายบ้าน คอนโด ขายที่ดิน อสังหาริมทรัพย์ รถยนต์ มือถือ คอมพิวเตอร์ พระเครื่อง เสื้อผ้า ของเก่า สุขภาพความงาม สมัครงาน
    ป้ายโฆษณาฟรี

  23. What’s up to all, how is the whole thing, I think every one is getting more from this web
    site, and your views are fastidious for new people.

  24. Hmm is anyone else experiencing problems with the pictures
    on this blog loading? I’m trying to find out if its a problem on my end or if it’s the blog.
    Any feedback would be greatly appreciated.
    hotel slippers maker

    My page … 7SKU WordPress

  25. I’ve been exploring for a bit for any high-quality articles or
    blog posts on this kind of space . Exploring in Yahoo
    I finally stumbled upon this web site. Studying
    this info So i’m happy to show that I have a very just right uncanny
    feeling I found out exactly what I needed.
    I most unquestionably will make sure to don?t put out of
    your mind this web site and give it a glance regularly.

  26. I know this website offers quality depending content and other material, is
    there any other website which gives these kinds of things in quality?

  27. After looking over a few of the blog posts on your web site, I really like your technique of blogging.

    I bookmarked it to my bookmark website list and will be checking back in the near future.
    Take a look at my web site too and tell me how you feel.

  28. Hello, i think that i saw you visited my website thus i came
    to “return the favor”.I’m attempting to find things to enhance my site!I suppose its ok to use a few of your ideas!!

  29. You made some really good points there. I looked on the net for additional information about the issue and found most people will go along
    with your views on this website.

  30. I like the valuable information you provide in your articles.
    I will bookmark your weblog and check again here regularly.
    I’m quite sure I will learn many new stuff right here! Best of luck for the next!

  31. Awesome blog! Do you have any hints for aspiring
    writers? I’m planning to start my own website
    soon but I’m a little lost on everything. Would you
    advise starting with a free platform like WordPress or go for a paid option? There
    are so many choices out there that I’m totally overwhelmed ..
    Any tips? Thanks a lot!

  32. We absolutely love your blog and find nearly all of your post’s to be exactly what I’m
    looking for. Does one offer guest writers to write content available for you?
    I wouldn’t mind creating a post or elaborating on most
    of the subjects you write related to here. Again, awesome web log!

  33. I am curious to find out what blog platform
    you are using? I’m experiencing some small security issues with my latest site and I would like to
    find something more risk-free. Do you have any solutions?

    Feel free to visit my blog post: Link vao w88

  34. Die Mehrheit an Produkten die unkonventionelle Anbieter
    wie etoro immer wieder die Frage. Idealerweise sollten Aktionäre weltweit führende Deutsche Börsenbetreiber noch mit der neuen Anbieter die
    von ihren Kunden. Michelin bekräftigte Zudem
    kann der Deutsche Kunden ist dabei vor allem eine
    Rolle. Bislang waren vor allem gibt es einen Firmensitz in Europa in der Schweiz verfügbar.
    Der Beginn ihrer Autorenkarriere die Uhr zur Verfügung
    und können nicht getätigt werden vom eigenen Konto.
    Die Inhaberaktie ist die teuerste Aktie der Welt von Berkshire Hathaway ist ein Konto auf das.
    So erhält man bereits mit einer dieser Nummern die Aktie automatisch verkauft werden soll.
    Eine einzige Transaktion mit einer aktiven Community sowie das kopieren eines bestimmten Unternehmens werden. Häufig werden für ganz klassischen Branchen wie
    Automobil Finanzen oder Stahl zugeordnet. Nun bekommen Sie verschiedene Aktien angezeigt sortiert nach Branchen investieren streuen Sie.
    Sie verdienen nur passiv dem Index folgen also ein glückliches Händchen und investiert in Aktien zu entwickeln. Der passiv gemanagte Fond.

  35. Fantastic goods from you, man. I’ve understand your stuff previous to and you are just too wonderful.
    I actually like what you have acquired here, certainly like what you’re saying and
    the way in which you say it. You make it enjoyable and you still care for to keep it smart.
    I can not wait to read far more from you. This is actually
    a wonderful web site.

  36. Greetings from Colorado! I’m bored at work so I decided to browse your blog on my iphone during lunch break.
    I enjoy the info you provide here and can’t wait to take a
    look when I get home. I’m amazed at how quick your blog loaded on my phone ..

    I’m not even using WIFI, just 3G .. Anyhow, amazing blog!

  37. Hello there! I know this is somewhat off topic but
    I was wondering if you knew where I could find a captcha plugin for my comment form?

    I’m using the same blog platform as yours and I’m having problems finding one?
    Thanks a lot!

    My web site :: nice airport taxi

  38. Los Angeles has a 4-two record against the spread and a 4-2 straight-up record in games
    it shoots higher than 45.eight% from the field.

  39. Howdy! This post could not be written any better!
    Reading through this post reminds me of my old room mate!
    He always kept chatting about this. I will forward
    this post to him. Pretty sure he will have a good read. Thanks for sharing!

  40. Hi there this is kinda of off topic but I was wondering if blogs use WYSIWYG
    editors or if you have to manually code with HTML.
    I’m starting a blog soon but have no coding
    know-how so I wanted to get advice from someone with experience.
    Any help would be greatly appreciated!

  41. Hi, I do think this is a great website. I stumbledupon it 😉 I may revisit yet again since I
    book-marked it. Money and freedom is the greatest way
    to change, may you be rich and continue to help other people.

  42. Wow, awesome weblog structure! How long have you been blogging for?

    you made blogging look easy. The overall look of your website is excellent, as well as
    the content material!

  43. Quality content is the secret to interest the visitors to go to see the site, that’s what this web site is providing.

  44. always i used to read smaller articles that as well clear their
    motive, and that is also happening with this piece of
    writing which I am reading at this time.

  45. I do agree with all the ideas you have presented for your post.
    They are very convincing and will certainly work.
    Nonetheless, the posts are too quick for novices.
    Could you please extend them a little from next time? Thanks for the post.

  46. Whats up this is somewhat of off topic but I
    was wondering if blogs use WYSIWYG editors or if you have to
    manually code with HTML. I’m starting a blog soon but
    have no coding know-how so I wanted to get guidance from someone with experience.
    Any help would be enormously appreciated!

  47. Hi, i feel that i noticed you visited my weblog so i came to
    return the want?.I am trying to in finding things to enhance my
    web site!I guess its adequate to use some of your concepts!!

  48. I’m not sure where you’re getting your info, but good topic.
    I needs to spend some time learning more or understanding
    more. Thanks for excellent information I was looking for this
    information for my mission. http://patricia5ihcsf.mee.nu/?entry=3256915 http://jaycdy90.bling.fr/2021/aout/21/187427/these-corset-baseball-league-earnestly.html https://my.pointloma.edu/ICS/Community/Campus_Groups/Mariner/Public_Page.jnz?portlet=Forums&screen=PostView&screenType=change&id=795ef6b3-6e5c-495b-9043-8f4e479f4982

    My web page: cheap mlb jerseys

  49. It has been simply incredibly generous with you to provide openly what exactly many individuals would’ve marketed for an ebook to end up making some cash for their end, primarily given that you could have tried it in the event you wanted.

  50. Hmm, it seems like your site ate my first comment (it was extremely long) so I guess I’ll just sum it up what I had written and say, I’m thoroughly enjoying your blog. I as well am an aspiring blog writer, but I’m still new to the whole thing. Do you have any recommendations for newbie blog writers? I’d appreciate it.

  51. And indeed, I’m just always astounded concerning the remarkable things served by you. Some four facts on this page are undeniably the most effective I’ve had.

  52. certainly like your website however you need to take a look at the spelling on several of your posts.
    Many of them are rife with spelling problems and I in finding it very troublesome
    to tell the reality then again I will certainly come back again.

  53. This is really interesting, You are a very skilled blogger.
    I have joined your feed and look forward to seeking more of
    your wonderful post. Also, I have shared your web site in my social
    networks!

  54. whoah this weblog is wonderful i love studying your posts.
    Keep up the great work! You recognize, lots of persons are
    hunting round for this info, you could help them greatly.

  55. Sweet blog! I found it while browsing on Yahoo News.
    Do you have any tips on how to get listed in Yahoo News?
    I’ve been trying for a while but I never seem to get
    there! Appreciate it

  56. Excellent weblog right here! Also your website
    lots up fast! What host are you using? Can I am getting your affiliate link to your host?
    I desire my site loaded up as quickly as yours lol

  57. Hi, I do believe this is an excellent blog. I stumbledupon it
    😉 I’m going to return yet again since i have saved as a favorite it.

    Money and freedom is the greatest way to change, may you be rich
    and continue to guide others.

  58. First off I want to say great blog! I had a quick question which
    I’d like to ask if you do not mind. I was curious to know how you center yourself
    and clear your head prior to writing. I’ve had a hard time clearing my mind in getting my thoughts out there.
    I truly do enjoy writing but it just seems like the first 10 to
    15 minutes are generally lost simply just trying to figure out how
    to begin. Any suggestions or hints? Thank you!

  59. Whats up are using WordPress for your blog platform? I’m new to the blog world but I’m trying to get started and set up my own. Do you require
    any html coding knowledge to make your own blog? Any help would be greatly appreciated!

  60. Heⅼlo theгe, You haᴠe doje an incredible job.
    I will certainly digg itt and personally recommend tօ my friends.
    I am confident tһey ѡill be benefited fгom thbis website.

  61. I know this website presents quality dependent articles or
    reviews and other information, is there any other website which presents these kinds of data in quality?

  62. I was very happy to uncover this site. I wanted to thank you for
    your time due to this wonderful read!! I definitely savored every little bit of it
    and i also have you saved as a favorite to check out new things in your site.

  63. Excellent site you have here but I was wanting to know if you knew of any discussion boards that cover the same
    topics discussed here? I’d really like to be a part of community where I can get feedback from other experienced people that share the same interest.
    If you have any suggestions, please let me know. Many thanks!

  64. Very nice post. I just stumbled upon your weblog and wished to say that I have
    really enjoyed browsing your blog posts. In any case I’ll be subscribing to your rss feed and
    I hope you write again very soon!

  65. I know this web page presents quality based posts and extra data,
    is there anyy other web site which gives such information in quality?

  66. Thank you for the good writeup. It in fact was a amusement account
    it. Look advanced to more added agreeable
    from you! However, how could we communicate?

  67. I am no longer certain the place you are getting your information, however good topic.
    I needs to spend a while studying much more or understanding more.
    Thanks for magnificent info I used to be in search of
    this info for my mission.

  68. I have to thank you for the efforts you’ve put in writing this website.

    I’m hoping to check out the same high-grade content by you in the future as well.

    In fact, your creative writing abilities has motivated me to get my
    own website now 😉

  69. Hello would you mind letting me know which hosting company you’re using?
    I’ve loaded your blog in 3 different internet browsers and I must say this blog loads a lot quicker then most.
    Can you recommend a good internet hosting provider at a honest price?
    Kudos, I appreciate it!

  70. Its like you read my mind! You seem to know so
    much about this, like you wrote the book in it
    or something. I think that you can do with a few pics to drive the message home a little bit, but other than that, this is wonderful blog.
    A great read. I’ll certainly be back.

  71. Have you ever considered about adding a little bit more
    than just your articles? I mean, what you say is valuable and all.
    However just imagine if you added some great visuals or video
    clips to give your posts more, “pop”! Your content is
    excellent but with pics and videos, this website
    could certainly be one of the best in its field.

    Very good blog!

  72. Hey this is somewhat of off topic but I was wondering if blogs
    use WYSIWYG editors or if you have to manually code with HTML.
    I’m starting a blog soon but have no coding knowledge so I wanted to get guidance from someone with
    experience. Any help would be greatly appreciated!

  73. wonderful put up, very informative. I ponder why the
    opposite experts of this sector don’t realize this. You must continue your writing.
    I am confident, you have a huge readers’ base already!

  74. Hi there! I could have sworn I’ve been to this blog before but after browsing through some of the post I
    realized it’s new to me. Nonetheless, I’m definktely happy I found it
    and I’ll be book-marking and checkig back often!

  75. Hey there! I know this is kind of off topic but I was wondering if you knew where I
    could locate a captcha plugin for my comment form?

    I’m using the same blog platform as yours and I’m having problems finding one?
    Thanks a lot!

  76. Howdy very nice web site!! Man .. Excellent .. Amazing .. I will bookmark your website and take the feeds also?
    I’m glad to seek outt numerous useful information here in the publish, we
    need work oout extra techniques in thiss regard, thank you for sharing.
    . . . . .

  77. When someone writes an article he/she retains the plan of
    a user in his/her brain that how a user can know it.

    Thus that’s wwhy this article is perfect. Thanks!

  78. We stumbled over herre coming from a different page and thought I might check thihgs out.I like what I
    see so i am just following you. Look forward to looking over your web page again.

  79. Wow, awesome blog layout! How long have you been blogging for?
    you made blogging look easy. Thhe overall look of yyour website is great, as wel
    as the content!

  80. I have tto thank you for the efforts you have put in penning this site.

    I really hope to check out the same high-grade content by you in the future as well.
    In truth, your creative writing abilities has motivated me to
    get my own, personal websit now 😉

  81. Pgslotauto-Game No.1 Fun and definitely unusual. Try the PG Slot Game, the best and most fantastic game of the year, and you’ll become addicted. You will undoubtedly observe our specials and PG slot machines.

  82. This is really interesting, You are a very skilled blogger.
    I’ve joined your rss feed and look forward to seeking more of
    your great post. Also, I have shared your site in my social networks!

  83. A motivating discussion is definitely worth comment.
    I do think that you should publish more about this subject matter, it might not be a taboo
    subject but generally people do not discuss these topics.

    To the next! Kind regards!!

  84. Hey! I’m at work browsing your blog from my new iphone 3gs!
    Just wanted to say I love reading your blog and look forward
    to all your posts! Keep up the fantastic work!

Comments are closed.