#include using namespace std; string Title[5]={{"AccountNum"},{"CustomerName"},{"NIC_number"},{"AccountType"},{"Balance"}}; long long int AccNum[5]={4810055992,4962006345,4753008741,3345256348,4954083265}; string CustomerName[5]={{"Tom Lara"},{"Simon David"},{"Ben Stacy"},{"John Mark"},{"Cooper Jake"}}; string NicNum[5]={{"965622411V"},{"931122456V"},{"927391333V"},{"961343267V"},{"967591530V"}}; string AccType[5]={{"Saving "},{"Current "},{"Fixed "},{"Current "},{"Saving "}}; double Balance[5]={153000,25000,85000,62000,178000}; void displaymenu() { cout<<"------Welcome to Bank of Northen------"<>num; int i=0; for (int i = 0; i < 5; i++) { if (num==NicNum[i]) { cout<>num; int i=0; double total,newbalance=0; for (int i = 0; i < 5; i++) { if (num==AccNum[i]) { cout<<"Enter Amount You want to Deposit:"; cin>>total; cout<>num; int i=0; double total,newbalance=0; for (int i = 0; i < 5; i++) { if (num==AccNum[i]) { cout<<"Enter Amount You want to Withdrow Money:"; cin>>total; cout<=total) { newbalance=Balance[i]-total; Balance[i]=newbalance; for (int i = 0; i < 5; i++) { cout<>choice; switch (choice) { case '1': displayaccount(); break; case '2': searchaccount(); break; case '3': deposit(); break; case '4': withdrow(); break; case '5': intrest(); break; default: cout<<"Wrong Input Please Try Again.....!!!!!!"; break; } cout<<"Do you want to run this programe again?(y,n):"; cin>>flag; cout< using namespace std; int main() { //a.Create an array and initialize all the values in that array string countries[]={"India ","China ","UK ","Germany ","Maldives ","France ","Australia","Russia ","USA ","Canada "}; string subjects[]={"Country ","Vacation ","Relations ","Business","Health","Sports ","Official"}; int values[10][6]={{292933,28923,18188,503,1885,416}, {243181,24393,1627,31,215,51}, {134872,46965,2177,382,1292,165}, {116363,9677,759,5405,128,86}, {8927,6234,374,60,53,160}, {87133,8030,567,155,94,83}, {45021,26950,777,103,648,207}, {57939,160,29,9,0,4}, {38852,11310,1479,177,247,1001}, {15057,28138,354,47,117,104}}; //b.Display the array as shown in the Table: SL-TOURIST for(string i:subjects) { cout< using namespace std; int main() { string str1; cout<<"Enter the Word:"<>str1; int length=str1.length();//AMMA //cout< using namespace std; int main() { int n,num,digit,rev=0; cout<<"Enter the number "; cin>>num; n=num; do { digit=num%10; rev=(rev*10)+digit; num=num/10; }while(num!=0); if(n==rev) cout<<"\nThe number is palindrome"; else cout<<"\nThe number is not palindrome"; } #include using namespace std; string topic[3]={"Mark Range","Grade","GPV"}; string Mark_Range[4][2]={{"Between 80 and 100","A"},{"Between 60 and 79","B"},{"Between 40 and 59","C"},{"Below 40","E"}}; double GPV[4]={4.0,3.0,2.0,0.0}; double Marks[100]; double M,GPA,SUM=0; int x,y; double findgrade(){ for (int i = 0; i < x; i++) { if (Marks[i]>80) { cout<<"Subject "<60) { cout<<"Subject "<40) { cout<<"Subject "<80) { y=GPV[0]; } else if (Marks[j]>60) { y=GPV[1]; } else if (Marks[j]>40) { y=GPV[2]; } else { y=GPV[3]; } SUM=SUM+y; } GPA=SUM/x; cout<<"GPA : "<>x; Marks[x]; for (int i = 0; i < x; i++) { cout<<"Enter mark for subject "<>M; Marks[i]=M; M=0; } findgrade(); findGPV(); return 0; } #include using namespace std; void employeeDtails(); int choiseMenu(); int netPay(); int grossPay(); void EPF_PTF(float epf,float ptf); void Annual_EPF_PTF(float epf,float ptf); int totalAllwance(); void salarySheet(); string employeeName,department,designation; int employeeNumber,basicSlary; float EPF,PTF; int main(){ char again; do{ int option=choiseMenu(); switch (option){ case 1: employeeDtails(); break; case 2: cout<<"Net Pay: "<>again; }while(again=='y' || again=='Y'); cout<<"---------------"; } int choiseMenu(){ int choice; cout<<"1 - employee details"<>choice; return choice; } void employeeDtails(){ cout<<"employee name: "; cin>>employeeName; cout<<"employee number: "; cin>>employeeNumber; cout<<"Department: "; cin>>department; cout<<"Designation: "; cin>>designation; cout<<"Basic Salary: "; cin >>basicSlary; } int netPay(){ int electrycityBill=4500; int houserRent=20000; return electrycityBill+houserRent; } int grossPay(){ int gross_pay=netPay()+basicSlary; return gross_pay; } void EPF_PTF(float epf,float ptf){ EPF=basicSlary*epf; PTF=basicSlary*ptf; cout<<"EPF: "<