ad728

Thursday, May 31, 2018

Credit Information Bureau of Nepal

Credit Information Bureau / Karja Suchana Kendra Limited

Credit Information Bureau of Nepal


Karja Suchana Kendra Limited is one of the oldest Credit Information Bureau in the SAARC region and was established in May 1989 with the sole objective of restraining the growth of the Non Performing Assets of the Banking and Financial sector of the country that was increasing alarmingly during the period. Later, it got registered as the Company in 2004 under the Company Act 2053 and started its operation as the independent and autonomous entity from March 2005. It operates through provisions made in NRB Act 2058, Article 88. It is a public limited company with banks and financial institutions holding majority of equity (90%) while the rest (10%) is held by Nepal Rastra Bank. KSKL currently has 62 promoter shareholders including 22 commercial Banks, 7 Development Banks, 32 Finance Companies and Nepal Rastra Bank.

Registered Members
As per the Nepal Rastra Bank Regulation, all banks and financial institutions that are registered in Nepal Rastra Bank and engaged in credit lending of Rs. 1 million and above facility must be registered in Kendra as its member. Only the registered members can avail the credit reports and other credit information service provided by Kendra.
There are altogether 135 banks and financial institutions that are registered as members of Kendra. The detail statistics of the number of registered members in each category is as follows:
27 Commercial Banks
14 Development Banks (National)
29 Development Banks (Regional)
32 Finance Companies
7 Others (Micro Finance Institution, Co-Operatives)
Share:

Tuesday, May 22, 2018

AIDE Tutorial - 57 Open another Activity

AIDE Tutorial - 57 Open another Activity

Watch the video below
Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">
    <Button
android:id="@+id/mainButton"
        android:text="Open another Activity"
        android:layout_width="wrap_content"        android:layout_height="wrap_content" />
</LinearLayout>
Second.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">
    <TextView
android:text="This is the second activity"
android:layout_width="wrap_content"android:layout_height="wrap_content"/>
</LinearLayout>
MainActivity.java
package com.kcgroup.anotheractivity;
import android.app.*;
import android.os.*;
import android.widget.*;
import android.view.*;
import android.content.*;
public class MainActivity extends Activity
{    @Override
    protected void onCreate(Bundle savedInstanceState)    {        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
Button btn=(Button)findViewById(R.id.mainButton);
btn.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View p1)
{Intent in=new Intent(MainActivity.this, SecondActivity.class);
startActivity(in);
// TODO: Implement this method
}});    }}
SecondActivity.java
package com.kcgroup.anotheractivity;
import android.app.*;
import android.os.*;
public class SecondActivity extends Activity
{    @Override
    protected void onCreate(Bundle savedInstanceState)
    {        super.onCreate(savedInstanceState);
        setContentView(R.layout.second);
    }}
Share:

Tuesday, May 15, 2018

AIDE Tutorial - 55 BMI Calculator

AIDE Tutorial - 55 BMI Calculator
Watch the video below
Main xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_marginBottom="20dp"
android:textSize="25dp"
android:text="BMI Calculator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
<EditText
android:inputType="number|numberDecimal"
android:layout_marginBottom="20dp"
android:maxLength="3"
android:id="@+id/edittext1"
android:hint="Enter your Weight  here [Kg]"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<EditText
android:inputType="number|numberDecimal"
android:layout_marginBottom="20dp"
android:maxLength="3"
android:id="@+id/edittext2"
android:hint="Enter your Height here [M]"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Button
android:layout_marginBottom="20dp"
android:id="@+id/calculate"
android:text="Calculate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:layout_marginBottom="20dp"
android:id="@+id/textview"
android:text=""
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
MainActivity.java
package com.kcgroup.bmicalculator;
import android.app.*;
import android.os.*;
import android.widget.*;
import android.view.*;
public class MainActivity extends Activity
{private EditText et1,et2;
private Button btn;
private TextView tv;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

et1=(EditText)findViewById(R.id.edittext1); et2=(EditText)findViewById(R.id.edittext2);
btn=(Button)findViewById(R.id.calculate); tv=(TextView)findViewById(R.id.textview);

btn.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View p1)
{
double a=Double.parseDouble(et1.getText().toString());
double b=Double.parseDouble(et2.getText().toString());
double ans= a/(b*b); tv.setText(String.valueOf(ans)); } });

}}
Share:

Monday, May 14, 2018

AIDE Tutorial - 56 Table Layout

AIDE Tutorial - 56 Table Layout
Watch the video below
Main xml
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
<TableRow>
    <Button
android:background="@drawable/background_et"
        android:text="T11"
        android:layout_width="wrap_content"        android:layout_height="wrap_content" />
</TableRow>
<TableRow>
<Button
android:background="@drawable/background_et"
android:text="T21"
android:layout_width="wrap_content"android:layout_height="wrap_content" />
<Button
android:background="@drawable/background_et"
android:text="T22"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:background="@drawable/background_et"
android:text="T31"/>
<Button
android:background="@drawable/background_et"
android:text="T32" />
<Button
android:background="@drawable/background_et"
android:text="T33"/>
</TableRow>
</TableLayout>
Share:

Total Pageviews

Sponsor

Sponsor

ad300