Assignment 2
Assignment 2
Date Amt
01-01-2016 100
01-01-2016 300
02-01-2016 350
01-01-2016 200
02-01-2016 150
02-01-2016 400
01-01-2016 250
02-01-2016 250
4) Can i sort the data using reformat and normalize components in Abinitio, If yes, then how explain
with example ?
5) How do you pass the parameters of a graph from the backend? Explain with examples.
There are two types for passing the parameters from backend
1. Keyword
2. Positional
City1|City2|Distance
ban|hyd|600
hyd|ban|600
ban|mum|300
mum|ban|300
mum|hyd|470
Now my output should have only unique combination of (City1 and City2) and (City2 and City1) .
O/P should be like :
City1|City2|Distance
ban|hyd|600
ban|mum|300
mum|hyd|470
Transaction
Transaction ID Merchant ID Transaction_Amount Transaction_Date(YYYYMMDD)
Currency
Country Currency
UK GBP
Italy EUR
CR EUR
France EUR
Greece EUR
US USD
4. Produce Summary of transactions as per different Country in the below format. Use Currency Table as lookup.
Transaction_country Total_Transaction Transaction Currency
Amount
1) Find out how many times user did check-in activity in last 30 days. When did he do last
check-in.
2) How do I print content of 3rd last version from EME of a dml on my screen on the fly?
3) Generate a dml from backend for database table. Explain with example.
6) There is a file Unix_Test.txt which contains words Unix, how will you replace all Unix to
UNIX?
sed -i s/Unix/UNIX/g Unix_Test.txt
7) Write a shell script to create a menu driven program for adding, deletion or finding a
record in a file. File should have the field like rollno, name, semester and marks of three
subjects. Last option of the menu should be to exit the menu.