0% found this document useful (0 votes)
58 views

Training Program - 3 Level - 0: Mahesh Patel

The document outlines 3 training tasks for a level 0 trainee: 1. Develop a basic calculator application that can perform addition, subtraction, multiplication and division. 2. Create a console application to demonstrate lists of strings with options to display, add, remove, clear and sort items. 3. Build a desktop application with SQLite database to manage employee records with tables for employee details and masters including options to display, add, update and delete records.

Uploaded by

Rajesh Koriya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
58 views

Training Program - 3 Level - 0: Mahesh Patel

The document outlines 3 training tasks for a level 0 trainee: 1. Develop a basic calculator application that can perform addition, subtraction, multiplication and division. 2. Create a console application to demonstrate lists of strings with options to display, add, remove, clear and sort items. 3. Build a desktop application with SQLite database to manage employee records with tables for employee details and masters including options to display, add, update and delete records.

Uploaded by

Rajesh Koriya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

TRAINING PROGRAM - 3

LEVEL - 0

MAHESH PATEL
MANTRA SOFTECH INDIA PVT LTD | AHMEDABAD
TABLE OF CONTENTS

1. CALCULATOR ......................................................................................................................................... 2
1.1 Detail ............................................................................................................................................. 2
1.2 Documentation ............................................................................................................................. 2
2. List ......................................................................................................................................................... 3
2.1 Detail ............................................................................................................................................. 3
2.2 Documentation ............................................................................................................................. 3
3. RECORD-MAINTENANCE ....................................................................................................................... 4
3.1 Database ....................................................................................................................................... 4
3.2 Application .................................................................................................................................... 4
3.3 Documentation ............................................................................................................................. 4
1. CALCULATOR
Write either web or desktop program for calculator that can perform sum, sub, mul, div operations.

1.1 Detail
Expected design is as below:

1.2 Documentation
Write a paper on program with description or detail understanding of facilities/logic.
2. List
Develop a console application for demonstration of the “List” of string.

2.1 Detail
User will provide the options such as Display, Add, Remove, clear and sort.

Expected Output:

1. Display
2. Add
3. Remove
4. Clear

2.2 Documentation
Write a paper on program with description or detail understanding of facilities.
3. RECORD-MAINTENANCE
Create desktop-console application for following functionalities.

3.1 Database
Create a database with SQLite with following tables:
1. TblEmployeeMaster
a. MastCode (Auto Generated and Auto Increment)
b. EmpID
c. EmpName
d. Designation
e. Department
f. Joined Date
g. Salary
2. TblEmployeeDetail
a. EmpCode (Foreign key with MastCode of TblEmployeeMaster)
b. AddressLine1
c. AddressLine2
d. City
e. State
f. Country

3.2 Application
Create screen which having facilities like-

a. Display all records


b. Add record
c. Update record
d. Delete record

3.3 Documentation
Write a paper on program with description or detail understanding of facilities.

You might also like