5 Factors Affecting Home Loan Interest Rates

Many first time borrowers are hastily impressed by the interest rates advertised in newspapers and television ads. However, most people don’t get their home loan at those advantageous rates. There are a few factors to bear in mind to get the ideal home loan rates possible for your brand new home.

• Credit history

This factor is all about financial standing. It allows the lenders to see your repayment ability, which is one of the most important factors. The smart thing to do before you apply for a home loan is to improve your credit history. Get rid of those credit card debts and personal loans. There are a number of things that you can do to show yourself as a reliable candidate for a home loan. Hence, you should take all the necessary steps to let these factors work in your favour.

• Nature of employment

Since your income is the means of repaying your EMIs, the nature of your employment is essential to your lenders. If you’re working in a smaller organization, you may come across as a less reliable candidate as compared to someone working for a public sector bank or a government job since their income is considered more consistent. Thus, your organization, years of experience and appraisals affect your credibility and repayment ability. If you compare a professional to a SME business owner with the same income, a professional is sometimes deemed more credible. You can certainly make this bias work in your favour. Today, most employees are job-hopping only for a 5 to 10 percent increment in salary. You can either choose to work with a more established organization or apply for a loan along with a co-applicant, who is working in a reputed organization.

• Your lender and home loan market

Many banks and housing finance companies are offering home loans today. There is a huge market and substantial competition. So it makes sense to apply to several organizations and let the competition work in your favour. If you get an approval from more than one organization, you are in a good position to negotiate and get the best possible housing loan interest rates .

• RBI

There are some factors that affect your home loan rates considerably; however, these factors are not under your control. The Reserve Bank of India has several rules and regulations that affect rates for all kinds of loans such as SLR (Statutory Liquidity Ratio) Rate, Repo Rate, Cash Reserve Ratio (CRR), etc., which you need to be aware of.

• Economy

The economy of India can also affect interest rates significantly. It is possible, though, to anticipate the possible changes to an extent and use them to your favour. So, make sure you use these factors where you can.

Finding locators in selenium

Before performing any operation on any web element or any web component we need to tell the web driver where exactly that element resides on the web page. We can see the web element with our eyes but webdriver can’t. We need to tell it, that go to this particular location and perform this particular operation. To do so we make use of XPath. XPath is the XML path of a web element in the DOM. When you visit a website in google chrome and right click on the web page and select “view source”, you’ll see an HTML page with huge chunks of HTML, CSS, javascript code. You’ll find that the web page is developed with huge chunks of HTML tags

Some common HTML tags are:

div=division
span=span
p=paragraph
a=anchor tag
tr=table row
td=table data
ul=unordered list
li=list item
ol=ordered list
h=heading
label
input
and so on.

These elements also have some attribute and their corresponding attribute values.

For e.g. a div tag also has a ‘class’ attribute, or ‘id’ attribute, etc. An anchor tag ‘a’ must have an ‘href’ attribute. These attributes must have some values like class name, or id name.

So we can make use of these elements to find the xpath of our web component. You can find xpath without using any additional addon like firebug or firepath. Open the website in google chrome and right click on the element for which you want to find the xpath and click inspect element.
Now on the inspect element window press ctrl+s.

The basic format of xpath is

//tag[@attribute name="attribute value"]

Suppose there is a division in html whose class attribute value is “abcd”, so we’ll write like this: //div[@class="abcd"]
It means, find a division tag in the html whose class attribute value is “abcd”.

If we write like this //*[@class="abcd"] i.e. putting an asterisk in place of tag, this means, find any tag in the html whose class attribute value is “abcd”.
If we write with a dot operator like .//*[@class="abcd"] here the dot represents the child node. It means the processing starts from the current node. To be more precise find any tag in the html whose class attribute value is “abcd” and start processing from current node. If we do not use dot and simply write //*[@class="abcd"] then it will search class with value “abcd” in the entire document.
If you further want to go inside a parent tag, then you can use a single slash in the middle of the xpath //div[@class="abcd"]/ul/li/a this means under the parent division whose class value is “abcd” find an achor tag which is under ul and li tags. All these xpaths represents either an element or a list of elements on the web page.

XPATH AXES

Axes are the methods used to find dynamic elements. There are instances when you’ll find that the attribute of an html tag gets changed. Due to this your previously written xpath won’t work if the attribute value of any of the tag gets changed. To overcome this, xpath axes have been introduced. These are nothing but the functions which can be used inside our xpath to fetch the correct location even if the attribute is dynamic. The first such function is

1. contains().

suppose there is an attribute value “btn123″, and the numeric figure keeps changing, the numeric part is not constant it keeps changing. so you can write .//*[contains(@name, 'btn')] this means find any tag starting from the current node whose name contains “btn”. OR and AND: You can use ‘or’ or ‘and’ inside your xpath. For e.g. //*[@type='submit' or @name='abcd'], this means select any tag whose type is submit or name is “abcd”. //*[@type='submit' and @name='abcd'], this means select any tag whose type is submit and name is “abcd”. The satisfaction of both conditions is necessary.

2. starts-with()

//label[starts-with(@id,'abcd')]
It means find a label whose id starts with “abcd”.

3. text()

.//td[text()='abcd']

4. following:

Find all elements in the DOM starting after a particular node For. e.g.
//*[@class='post-content']//following::a This means find all the anchor tags after ‘post-content’ class.

You can see, it is giving 18 anchor tags after ‘post-content’ class.

But what if you want a particular tag? For this you can specify the index as below.

5. ancestor:

Find all elements in the DOM starting before a particular node For. e.g.
//*[@class='logoCotainer']//ancestor::div
This means find all the div before ‘logoCotainer’ class.

6. descendant

All elements after current node
//*[@class='uppermenubar']//descendant::div
This means find all div after ‘uppermenubar’ class.

7. preceding

//*[@class='navigation']//preceding::div
This means find all div before class “navigation”

8. child

//*[@class='uppermenubar']//child::div
This means find all child divisions (div) of class ‘uppermenubar’

9. parent

//*[@class='navigation']//parent::div
This means find parent div of ‘navigation’ class

Now that xpaths are being found, you can now use them in your selenium script as below
driver.findElement(By.xpath(“//*[@class='navigation']//parent::div”));
Here By.xpath(“//*[@class='navigation']//parent::div”) will return a By class object. So ultimately we are passing a By class object in findElement method.

SUMMARY

In this lecture, we’ve learned that before performing any operation on the web elements, first, we need to find the exact location or path of that web element and instruct the web driver to go to this path and perform a particular operation. Unless we find the location or path of the web elements how can we instruct our web driver to perform a particular operation on that particular element? For e.g you want to click a button on the web page, or you need to input some text in the text field. First, you need to find where exactly that element is present on the web page. To do so, we can find the tags, attributes, values of those web elements from the page view source and write our xpath

Types of partial dentures

Sometimes, when we’re in the midst of people, defects on some person’s face tend to drag our attention. We’re most likely going to abandon what we are engaged in at the moment to gaze at those people till we get carried away.

Some of these defects include; fractured teeth, strabismus, damaged nose, and more. It is quite embarrassing when those people realize that they’re being gazed at because of their defects. You know how embarrassing and awkward it is when everyone’s eyes are buried on you, right? That feeling of you wishing the floor should open and swallow you up, it’s the same way people feel when they’re being stared at because of these defects.

Due to the “never-ending” embarrassment they go through almost always, they work tirelessly to correct these defects; this article will discuss one defect and how people are working on perfecting it; the defect is fractured teeth. If someone wants to get their teeth perfected, what initially comes to their mind is getting dentures. The word “dentures” might sound new, and as a result, we’d further elaborate more on it and talk about a particular kind.

What are dentures?

Dentures are artificial devices that are specifically made to replace bad or missing teeth; they’re additionally upheld by the encompassing delicate and hard tissues of the oral cavity. Dentures could be removable or permanently clasped onto the teeth; removable dentures are called conventional dentures, while non-removable dentures are called dental implant dentures. Removable dentures are further sub-divided into two; Partial dentures and acrylic partial denture. In this article, we’d be discussing further the types of Partial dentures, but before we delve into that, we’d like to share some reasons why people choose to get dentures and the definition of partial dentures.

Uses of dentures

To properly chew food
For aesthetics
To enhance one’s self-esteem
To boost one’s confidence
For perfect facial structure

Now, let’s proceed.

What are partial dentures?

Partial dentures, popularly known as RPD (Removable Partial Dentures), are dentures specially constructed for partially toothless patients who wish to have teeth replacement either for functional or aesthetic reasons. RPD is called Removable Partial Denture because patients can remove it to renew it, or if worn for aesthetics, it can easily be removed after serving its purpose. These dentures (s) can be removed without the help of an expert.

Types of Partial Dentures.

The first thing to consider before getting a partial denture is the type of partial dentures suitable for you. Three types of partial dentures will be briefly discussed below.

Hard acrylic partial dentures:

These types of dentures are the most common type of dentures, and they are long-lasting on the teeth. Hard acrylic is often clasped with hidden wires to make them look attractive.

Flexible acrylic partial dentures:

These are the latest and most trendy types of partial dentures. From the word “flexible,” it is explanatory that these dentures can be twisted and moved around—patients who do not want any metal to be shown while on partial dentures often demand flexible acrylic.

Cast metal partial dentures:

Cast metal sometimes confuses a novice. These dentures look like non-artificial teeth and gums in a human’s mouth, they’re long-lasting, and they gain enough strength from the metal that joins the teeth to the gums.

Conclusion

Anyone with fractured or bad teeth would tell you how diminishing it is to be amidst people and how eagerly they’re ready to do anything to help them get perfect teeth. If you fall into this category, or you have anyone in this category, this article would be of huge help to you and yours because it tells us the kind of dentures that are quite suitable.