Menu

Customers-Be Aware | ग्राहक - सावधान रहें | Do’s and Don’ts of ATM transactions

Do’s and Don’ts of ATM transactions
Do’s
  • Conduct your ATM transactions in complete privacy, never let anyone see you entering your Personal Identification Number (ATM Password)
  • After completion of transaction ensure that welcome screen is displayed on ATM screen
  • Ensure your current mobile number is registered with the bank so that you can get alerts for all your transactions
  • Beware of suspicious movements of people around the ATM or strangers trying to engage you in conversation
  • Look for extra devices attached to the ATMs that looks suspicious
  • Inform the bank if the ATM/Debit card is lost or stolen, immediately, report if any unauthorised transaction
  • Check the transaction alert SMSs and bank statements regularly
  • If cash is not dispensed the ATM does not display “cash out” please report to the Bank on the number mentioned in the Notice Board
  • Immediately check your phone for SMS for debit amount
Don’ts
  • Do not write your PIN on the card, memorise your PIN number
  • Do not take help from strangers or handover your card to anyone for using it
  • Do not disclose your PIN to anyone, including bank employees and family members
  • Do not allow the card to go of your sight when you are making a payment
  • Avoid speaking on the mobile phone while you are transacting


क्या करें


  • अपना एटीएम लेनदेन पूर्ण गोपनीयता से करें, अपनी व्यक्तिगत पहचान संख्या (एटीएम पासवर्ड) दर्ज करते हुए उसे कभी भी किसी भी व्यक्ति को न देखने दें।
  • लेनदेन पूर्ण होने के बाद यह सुनिश्चित करें कि एटीएम स्क्रीन पर वेलकम स्क्रीन दिखाई दे रही है।
  • सुनिश्चित करें कि आपका वर्तमान मोबाइल नम्बर बैंक के पास रजिस्टर्ड है जिससे आप अपने सभी लेनदेनों के लिए अलर्ट संदेश प्राप्त कर सकें
  • एटीएम के आसपास संदेहजनक लोगों की हलचल या आपको बातों में उलझाने वाले अजनबी व्यक्तियों से सावधान रहें।
  • एटीएम मशीनों से जुड़े हुए ऐसे अतिरिक्त यंत्रों को देखें जो संदेहस्पद दिखाई देते हों।
  • यदि एटीएम / डेबिट कार्ड गुम गया हो या चुरा लिया गया हो, तो इसकी सूचना तुरंत बैंक को दें, यदि कोई अनधिकृत लेनदेन हो, तो उसे रिपोर्ट करें।
  • लेनदेन संबंधी अलर्ट एसएमएस और बैंक विवरणों की नियमित रूप से जाँच करें।
  • यदि नकदी संवितरित नहीं की गई हो और एटीएम में “नकदी खत्म”/”cash out” दर्शाया नहीं गया हो, तो नोटिस बोर्ड पर लिखे टेलीफोन नम्बर पर उसकी सूचना दें।
  • आपके खाते से राशि डेबिट करने के लिए फोन पर आए एसएमएस की तुरंत जाँच करें।


क्या न करें 

  • कार्ड पर अपना पिन नम्बर न लिखें, अपना पिन नम्बर याद रखें।
  • अजनबी व्यक्तियों की सहायता न लें। कार्ड का उपयोग करने के लिए अपना कार्ड किसी भी व्यक्ति को न दें। 
  • बैंक कर्मचारियों एवं परिवार के सदस्यों सहित अपना पिन किसी भी व्यक्ति को न बताएं।
  • जब आप भुगतान कर रहे हों, तब कार्ड को अपनी नजरों से दूर न होने दें।
  • लेनदेन करते समय, आप मोबाइल फोन पर बात न करें।

Working with list and arrayList in Java.

In this tutorial we will see a simple and small implementation of List and ArrayList using Java.

ArrayList is resize-able implementation is List type. Each ArrayList instance has a capacity. The capacity is the size of the array used to store the elements in the list. It is always at least as large as the list size. As elements are added to an ArrayList, its capacity grows automatically.

We are writing a program where we will add some values in the ArrayList and then we will iterate on that List and print the values on console.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
package rashid.jorvee;

import java.util.ArrayList;
import java.util.List;

public class ListImpl {

 public static void main(String[] args) {
  List list=new ArrayList();
  List newlist=new ArrayList();
  newlist.add("New Delhi");
  newlist.add("9999999");
  newlist.add("1212121");
  newlist.add("Rashid");
  newlist.add("Jorvee");
  for(int i=0;i<newlist.size();i++) {
   System.out.println("At Index "+i +" List has value "+newlist.get(i));
  }

 }

}
Output:
At Index 0 List has value New Delhi
At Index 1 List has value 9999999
At Index 2 List has value 1212121
At Index 3 List has value Rashid
At Index 4 List has value Jorvee

How to check valid and invalid email address using Java?

We will see how to validate and check whether entered email ID is valid or not using Java programming. Here I am writing a simple Java code which will validate the format of email using regular expression(regex).

  1. Declare a variable with email addresses of type String[] array.
  2. Write a for loop which will iterate every item(email addresses) from your array.
  3. Create a parameterized method with return type boolean which will accept your email address and check for valid or not.
  4. Method will match the format of your email with regex: [a-zA-Z0-9._-][a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4} and return true or false.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
package rashid.jorvee;


public class ValidEmailValidator {

 public static void main(String[] args) {
  String[] emailAddresses= {"sohal@shopoo.co","adyu+@sud.com","asg_sj-@asgd.co","rashid@do.in.com","rashid.ta@rasj.com","fdh%sdfkj_@dsj.cojn"};
  for(String email : emailAddresses) {
   if(validEmail(email)) {
    System.out.println("Valid email address :" +email);
   }
   else {
    System.out.println("Invalid email address :"+email);
   }
  }
 }
 static boolean validEmail(String email) {
  return email.matches("[a-zA-Z0-9._-][a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}");
 }
}

Output:

Valid email address :vsohal@shopoo.co

Invalid email address :adyu+@sud.com
Valid email address :asg_sj-@asgd.co
Valid email address :rashid@rasj.com
Valid email address :rashid.ta@rasj.com
Invalid email address :fdh%sdfkj_@dsj.cojn

what is the meaning of color?

Does colors want to say you something and want to convey a message to you? Lets see what is the meaning of a colour which you like most?


Black          : artistic, sensitive, introvert, sophisticated, careful, luxury, sorrow, power, elegance, formality, death, evil, and mystery.



Red          : color of blood, energy, war, danger, strength, excitement, power, determination, passion, desire, and love.



Yellow          : color of shine, cheerful, pleasant, warning, playful, learning and sharing, joy, happiness, intellect, and energy.


White         : color of perfection, light, goodness, innocence, cleanliness, simplicity, purity, and virginity.


Green          : color of nature, growth, harmony, freshness, wealth, prestige and fertility.


Blue          : color of sky, trust, loyalty, wisdom, communicative, calming, confidence, intelligence, faith, truth, and heaven.Purple: color of royalty, power, nobility, luxury, spiritual, majesty, mysterious and ambition.


Orange          : youthful, fresh, enthusiasm, fascination, happiness, creativity, determination, attraction, success, encouragement, joy, and stimulation.


Brown           : organic, wholesome, simple and honest.Pink: Feminine, Sentimental, Romantic and Exciting.

If else || nested if statement in JSTL

Today we will discuss about; how to write simple if else and nested if else statements in JSTL.

If you have to check only a single value then you can use if statement "<c:if>" in JSTL. But if you want to achieve nested if else then you have to use <c:when> and <c:otherwise>.

Will will see both if and nested if else in JSTL with an example.

To use the JSTL in your JSP file we have to first import the JSTL tag library in our JSP file. Below is the import statement to where we are importing JSTL core tag library in our JSP. Specify a prefix to this tag which we will prefix further with our tag.

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 
prefix="c" use c when you use JSTL tags in your JSP file.
e.g. <c:if>, <c:choose>

Suppose we have a variable name which have a name of an user. let see how will check this using if statement in jstl.
Using <c:set> tag we can declare and set value to a variable. In below statement we are declaring a variable name and assigning its value RASHID.
<c:set var=name value="RASHID">
Now see the if condition 
 <c:if test="${name == 'RASHID'}">
 <c:set var=age value=23 />
</c:if>
Now we will using nested if else how will check the value of variable name in jstl.
<c:choose>
         <c:when test = "${name == 'RASHID'}">
            HIS NAME IS RASHID.
         </c:when>
         <c:when test = "${name == 'Ranjan'}">
            HIS NAME IS Ranjan.
         </c:when>
         <c:otherwise>
            No machtes....
         </c:otherwise>
 </c:choose>
Hope this will help you to understand the if else and nested if else condition using JSTL. Do let me know if you have any question and suggestions.