15 Create a Java GUI application which has the following interface as shown below:

Size: px
Start display at page:

Download "15 Create a Java GUI application which has the following interface as shown below:"

Transcription

1 15 Create a Java GUI application which has the following interface as shown below: When the Cal Discount button is clicked, it should display the Bill Amount & the Discount in the respective text fields. The Bill Amount can be calculated as (Quantity * Rate). The Discount should be calculated as per the mode of payment selected by the user. Mode of Payment Discount Gold 20% of Bill Amount Silver 15% of Bill Amount Platinum 10% of Bill Amount When the Cal Net Amount button is clicked, it should display the Additional Discount & the Net Amount in the respective fields. An additional discount of 5% should be given on the Bill Amount if it is greater than 25,000. The Net Amount should be calculated as (Bill Amount Discount Additional Discount). Code for Cal Discount Button: int qty = Integer.parseInt(jTextField2.getText()); float rate = Float.parseFloat(jTextField3.getText()); float BAmt= qty * rate; float disc=0; jtextfield4.settext("" + BAmt); if(goldrb.isselected()) disc = 0.20f *BAmt; else if (SilverRB.isSelected()) disc = 0.15f * BAmt; else disc = 0.10f * BAmt; jtextfield5.settext("" + disc); jbutton2.setenabled(true);

2 Code for Cal Net Amount Button: float BAmt = Float.parseFloat(jTextField4.getText()); float disc = Float.parseFloat(jTextField5.getText()); float AddDisc = 0; if(bamt > 25000) AddDisc = 0.05f * BAmt; jtextfield6.settext("" + AddDisc); float NetAmt = BAmt - disc - AddDisc ; jtextfield7.settext("" + NetAmt); Code for Reset Button: private void jbutton3actionperformed(java.awt.event.actionevent evt) { jtextfield1.settext(null); jtextfield2.settext(null); jtextfield3.settext(null); jtextfield4.settext(null); jtextfield5.settext(null); jtextfield6.settext(null); jtextfield7.settext(null); buttongroup1.clearselection(); 16 Create a Java GUI application which has the following interface as shown below: The Entry Fees is Rs.500 per person and rides of water park will cost Rs.250 extra per person. When the Calculate button is clicked, it should display the Entry Fees as: (Entry Fees per person * No. of People). If the Water Park check box is selected, the text field for Water Park Charges should display (Water park charges per person * No. of People). And the Total Amount text field should display the sum of Entry Fees & Water Park Charges.

3 Code for Calculate Button: int nop = Integer.parseInt(jTextField1.getText()); double ef= 500 * nop, wpc=0; if(jcheckbox1.isselected()) wpc= 250 * nop; jtextfield2.settext(""+ef); jtextfield3.settext(""+wpc); jtextfield4.settext(""+(ef+wpc)); Code for Clear Button: jtextfield1.settext(null); jtextfield2.settext(null); jtextfield3.settext(null); jtextfield4.settext(null); jcheckbox1.setselected(false); Code for Exit Button: private void jbutton3actionperformed(java.awt.event.actionevent evt) { System.exit(0); 17 Create a Java GUI application which has the following interface as shown below:

4 When the Calculate Wages button is clicked, it should display the Total Wages in the respective text filed as per the following criteria: Male and female labourers are paid at the rate of Rs.140/- & Rs. 160/- per day respectively. Skilled labourers are paid an extra amount of Rs. 50 per day. Code for Calculate Wages Button: int nod = Integer.parseInt(jTextField2.getText()); int tw = 0; if(jradiobutton1.isselected()) tw = 140 * nod; else if(jradiobutton2.isselected()) tw = 160 * nod; if (jcheckbox1.isselected()) tw += 50 * nod; jtextfield3.settext("" + tw); Code for Clear Button: jtextfield1.settext(null); jtextfield2.settext(null); jtextfield3.settext(null); buttongroup1.clearselection(); jcheckbox1.setselected(false); Code for Exit Button: private void jbutton3actionperformed(java.awt.event.actionevent evt) { System.exit(0);

5 18 Create a Java GUI application which has the following interface as shown below: The application accepts payments in 3-modes:- Cheque, Cash & Credit cards. The discount given as per mode of payment is as follows: Mode of Payment Discount Cash 8% Cheque 7% Credit Card Nil If the Bill Amount is greater than 15,000 then the customer gets an additional discount of 10% on Bill Amount. When the Calculate Discount button is clicked, the Total Discount should be calculated as per the given criteria and should be displayed in the respective text filed. Also, the Calculate Net Amount button should be enabled. When the Calculate Net Amount button is clicked, the net amount should be calculated & displayed in the respective text field. Code for Calculate Discount Button: double bamt= Double.parseDouble(jTextField2.getText()); double disc; String mop = (String) jcombobox1.getselecteditem(); if (mop.equals("cash")) disc = 0.08 * bamt; else if (mop.equals("cheque")) disc = 0.07 * bamt; else disc = 0; if (bamt > 15000) disc += 0.10 * bamt; jtextfield3.settext("" + disc); jbutton2.setenabled(true);

6 19 Code for Calculate Net Amount Button: double bamt= Double.parseDouble(jTextField2.getText()); double disc= Double.parseDouble(jTextField3.getText()); double namt = bamt - disc; jtextfield4.settext("" + namt); Each activity consists of 10 marks Code for Calculate Total Score Button: int points =0; if(jcheckbox1.isselected()) points +=10; if(jcheckbox2.isselected()) points +=10; if(jcheckbox3.isselected()) points +=10; jtextfield6.settext(""+ points);

Mr. Bansal accepts payment through three types of credit cards. The discount is given according to the following scheme:

Mr. Bansal accepts payment through three types of credit cards. The discount is given according to the following scheme: Class XII IP Question Bank From previous Year CBSE Board Question Papers Advanced GUI Programming-More on Swing Controls 2011 Q. Mr. Radhey Shyam Bansal the owner of the Kiddi Land Enterprise has asked

More information

Q2. What will be displayed in jtextfield1 and jtextfield2 after the following code is executed:

Q2. What will be displayed in jtextfield1 and jtextfield2 after the following code is executed: Q1. Holiday Homework, 2018-19 Class: XI Subject : Informatics Practices Q2. What will be displayed in jtextfield1 and jtextfield2 after the following code is executed: int num = 35, num1 = 46 ; jtextfield1.settext(

More information

Application based QUESTIONS for JAVA

Application based QUESTIONS for JAVA Application based QUESTIONS for JAVA Q1. Write Java Code for the following a) On the Action event of the close button the application gets closed. 1 b) On the Action event of the clear button all the text

More information

INFORMATICS PRACTICES. Practical file. Session

INFORMATICS PRACTICES. Practical file. Session INFORMATICS PRACTICES Practical file Session 2018-19 INDEX SR.NO. NAME OF THE PROGRAM 1 COMPUTERISED BILLING OF ABC CAFÉ 2 CALCULATE TOTAL SCORE IN SHIKSHA VIDYALAYA 3 CALCULATE TOTAL CHARGES IN HAPPY

More information

IMPORTANT JAVA APPLICATION

IMPORTANT JAVA APPLICATION IMPORTANT JAVA APPLICATION Q1. Subodh works in Raymond International School. He has developed the following interface in Netbeans to calculate the total fee : Controls Name Purpose jtextfield txtname Student

More information

HE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT WT-II SUB: INFORMATICS PRACTICES ANSWER KEY. 1. (a) What will be the output of the code 2

HE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT WT-II SUB: INFORMATICS PRACTICES ANSWER KEY. 1. (a) What will be the output of the code 2 HE AIR FORCE SCHOOL: SUBROTO PARK: DELHI CANTT. 110010 WT-II CLASS : XI SET I SUB: INFORMATICS PRACTICES ANSWER KEY MAX MARK: 30 TIME ALLOWED : 1Hr 10 Mins 1. (a) What will be the output of the code 2

More information

INDIAN LEARNERS OWN ACADEMY, KUWAIT Informatics Practices XII Holiday Homework. b. What is the importance of abstract classes in programming?

INDIAN LEARNERS OWN ACADEMY, KUWAIT Informatics Practices XII Holiday Homework. b. What is the importance of abstract classes in programming? INDIAN LEARNERS OWN ACADEMY, KUWAIT Informatics Practices XII Holiday Homework 1. a. Define the term Polymorphism. What are the two ways polymorphism is demonstrated in Java? b. What is the importance

More information

Sample Applications - Case Studies

Sample Applications - Case Studies Sample Applications - Case Studies Now, you are equipped with the simple concepts of GUI programming and are ready to develop some solutions using GUI Application for real life problems. On day to day

More information

Half Yearly Examination SESSION: CLASS: Scholars 2 Subject :- Informatics Practices (ANSWER KEY) SECTION-A

Half Yearly Examination SESSION: CLASS: Scholars 2 Subject :- Informatics Practices (ANSWER KEY) SECTION-A Code : 065 Subodh Public School Half Yearly Examination SESSION: 2018-19 CLASS: Scholars 2 Subject :- Informatics Practices (ANSWER KEY) SECTION-A Q 1. Answer the following questions:- (20 Marks) i. It

More information

DEHRADUN PUBLIC SCHOOL II-TERM ASSIGNMENT ( ) SUBJECT-INFORMATICS PRACTICES (065) CLASS XI

DEHRADUN PUBLIC SCHOOL II-TERM ASSIGNMENT ( ) SUBJECT-INFORMATICS PRACTICES (065) CLASS XI DEHRADUN PUBLIC SCHOOL II-TERM ASSIGNMENT (2016-17) SUBJECT-INFORMATICS PRACTICES (065) CLASS XI Chapter 3. Getting Started with Programming using IDE 1. How is ordinary compilation different from Java

More information

NEO CONVENT SR. SEC. SCHOOL, PASCHIM VIHAR, DELHI 63 Paper IP, Class XI-C, Unit Test 1 ( ) Answer Key Max. Marks: 40

NEO CONVENT SR. SEC. SCHOOL, PASCHIM VIHAR, DELHI 63 Paper IP, Class XI-C, Unit Test 1 ( ) Answer Key Max. Marks: 40 NEO CONVENT SR. SEC. SCHOOL, PASCHIM VIHAR, DELHI 63 Paper IP, Class XI-C, Unit Test (0.07.07) Answer Key Max. Marks: 40 Q.a) b) c) d) e) f) Ans. What are the major strengths and weaknesses of a computer?

More information

TIME : 3 Hrs MAX. MARKS : 70 SET 1

TIME : 3 Hrs MAX. MARKS : 70 SET 1 Sample Paper 0 Class XI Subject Informatics Practices TIME : 3 Hrs MAX. MARKS : 70 SET Q (a) Which of the following is not hardware : (i) Hard disk (ii) Printer (iii) Keyboard (iv) CPU (v) Assembler (vi)

More information

Online Registration FAQs

Online Registration FAQs Online Registration FAQs o How do we register individuals from the back end? (Over the phone) o How do we send emails to individuals on the roster? o How do we view and print a roster of individuals attending

More information

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFMATICS PRACTICES wer -Key CLASS: XII Sub. Code: 065 0.0.08 Max. Marks: 70 (a) Identify odd one out of the following: Optical Fiber/Coaxial Cable/ Bluetooth/Twisted

More information

Programming Fundamentals

Programming Fundamentals 5 Learning Objectives After studying this lesson the students will be able to: vdeclare, initialize and assign values to variables. vwrite simple applications using variables. vunderstand the concept and

More information

Add New Administrator - This function allows you to add new administrators to the EPP system.

Add New Administrator - This function allows you to add new administrators to the EPP system. HELP - Profile 1 Introduction... 2 2 Update Profile... 3 2.1 Contact Details... 4 2.2 Configuration... 6 2.3 Registration...10 2.3.1 Registration Settings...10 2.3.2 Registration Types...12 2.3.3 Registration

More information

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA() SA() LA(6) TOTAL Networking & Open 4(4) 3(6) - 7(0) Source software Programming in Java 7(7) 6() (6) 4(5) RDBMS 6(6)

More information

Registration Guide

Registration Guide 2016-2017 Registration Guide Registering for International Languages (Elementary) Programs: Go to www.garyallan.ca and select Elementary Students to access information on our Elementary International Languages

More information

Student WebAdvisor Training Manual

Student WebAdvisor Training Manual Student WebAdvisor Training Manual Contents Logging into WebAdvisor..2 Registering for a Class Section..4 Paying on My Account. 9 Dropping a Class Section 12 1 Logging into WebAdvisor STEPS 1. Click the

More information

FIRST PRE BOARD CLASS-XII INFORMATICS PRACTICES

FIRST PRE BOARD CLASS-XII INFORMATICS PRACTICES FIRST PRE BOARD 2010-11 CLASS-XII INFORMATICS PRACTICES Time-3 hours Note. 1. All questions are compulsory. 2. Answer the question after carefully reading the text. 3. Programming language: JAVA, HTML,SQL.

More information

Process Document Viewing Customer Accounts

Process Document Viewing Customer Accounts Date Modified 6/17/2008 Concept The Student Financials Customer Accounts page provides access to financial and scholastic data about a student. Charges, Payments, Anticipated Financial Aid, Payment Plan,

More information

PRACTICAL ASSIGNMENTS [LAB WORK] CLASS XII IP

PRACTICAL ASSIGNMENTS [LAB WORK] CLASS XII IP Experiment No. 1: PRACTICAL ASSIGNMENTS [LAB WORK] CLASS XII IP Objective: Understanding and use of variables of float and other data types. Task: Develop a simple Calculator application as per given screen

More information

ADVANCED PROGRAMMING CONCEPTS

ADVANCED PROGRAMMING CONCEPTS 5 CHAPTER Learning Objectives ADVANCED PROGRAMMING CONCEPTS After studying this lesson the students will be able to: Define objects and their usage Appreciate the usage of native classes Math and String

More information

If you have previously saved parameters for statement printing, these parameters display automatically. Press: F1

If you have previously saved parameters for statement printing, these parameters display automatically. Press: F1 1 Customers: Using CounterPoint Printing Statements Overview Customer statements are generally printed at the end of each billing cycle (e.g., at the end of each month). CounterPoint provides three pre-defined

More information

BM1602 Sales Activity Screen Table of Contents

BM1602 Sales Activity Screen Table of Contents BM1602 Sales Activity Screen Table of Contents Sales Activity Screen... 2 Description (Sales Activity Screen)... 2 User Functions (Sales Activity Screen)... 2 Displaying Sales Activity by Session or Ring...

More information

CEU Catalog Guide. When you access the CEU catalog it defaults to ALL available CEUs.

CEU Catalog Guide. When you access the CEU catalog it defaults to ALL available CEUs. CEU Catalog Guide When you access the CEU catalog it defaults to ALL available CEUs. You can see the Title of the CEU, the Certification(s) it will apply to, Topic Code and Credit Hours Below the Title

More information

Sales Station Mobile User Guide

Sales Station Mobile User Guide Sales Station Mobile User Guide Doubleknot, Inc. 20665 Fourth Street, Suite 103 Saratoga, California 95070 Telephone: (408) 971-9120 Email: doubleknot@doubleknot.com SSM-OPS-UG-1.0 2016 Doubleknot, Inc.

More information

JAVA GUI PROGRAMMING REVISION TOUR II

JAVA GUI PROGRAMMING REVISION TOUR II System.ou.println((x>y)? 3.14: 3); 9. State the output of the following program: public static void main(string args[ ]) int x = 10; float y = 10.0; System.ou.println((x>y)? true: false); 10. Given a pacakage

More information

INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES Answer Key-Class XI INFO 017-18(Final) Roll Number Code Number 065/ INDIAN SCHOOL MUSCAT FINAL TERM EXAMINATION INFORMATICS PRACTICES CLASS: XII Sub. Code: 065 TimeAllotted:3 Hrs 18.0.018 Max. Marks: 70

More information

Q1. (a) (½) (b) (½) (c) (½) (d) (½) (e) (2) (f) (1) (g) (1) above address object/device assigned (h) (4) Q2. (a) (1) (b) (1) (c) (1) (d) (1)

Q1. (a) (½) (b) (½) (c) (½) (d) (½) (e) (2) (f) (1) (g) (1) above address object/device assigned (h) (4) Q2. (a) (1) (b) (1) (c) (1) (d) (1) Q1. (a) Which protocol is used for the transfer of hyper text document on the internet. (b) Which transmission medium should be used to transfer data across two continents at very high speed. (c) Two neighbourhood

More information

XII INFORMATICS PRACTICES CBSE Board 2014

XII INFORMATICS PRACTICES CBSE Board 2014 XII INFORMATICS PRACTICES CBSE Board 04 (a) Why is a switch called an intelligent hub? Ans. Function of switch is similar to hub that is to connect different types of devices and computers in network but

More information

Session Chapter 4: Classess & Object

Session Chapter 4: Classess & Object Session 2017-18 Chapter 4: Classess & Object How does a class enforce data-hiding, abstraction, and encapsulation? What is the significance of access specifiers in a class? How are class and object different

More information

Downloaded from

Downloaded from SET-4 Series GBM Code No. 90 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 9 printed pages. Code number given on the right

More information

User s Guide. (Virtual Terminal Edition)

User s Guide. (Virtual Terminal Edition) User s Guide (Virtual Terminal Edition) Table of Contents Home Page... 4 Receivables Summary... 4 Past 30 Day Payment Summary... 4 Last 10 Customer Transactions... 4 View Payment Information... 4 Customers

More information

Optical Fiber/Coaxial Cable/ Bluetooth/Twisted Pair Cable. Give reason for your answer.

Optical Fiber/Coaxial Cable/ Bluetooth/Twisted Pair Cable. Give reason for your answer. CBSE AISSCE 07 Marking General Instructions: Marking scheme is the final document for all references with regard to evaluation and cannot be altered under any circumstances. The answers given in the marking

More information

Mr. Bansal accepts payment through three types of credit cards. The discount is given according to the following scheme:

Mr. Bansal accepts payment through three types of credit cards. The discount is given according to the following scheme: Class XII IP GROUP_1 Question Bank From previous Year CBSE Board Question Papers Advanced GUI Programming-More on Swing Controls 011 Q. Mr. Radhey Shyam Bansal the owner of the Kiddi Land Enterprise has

More information

Time : 3 hours Max. Marks : 70

Time : 3 hours Max. Marks : 70 1. All questions are compulsory. 2. Answer the questions after carefully reading the text. Time : 3 hours Max. Marks : 70 1. (a) Identify the odd one out of the following: (2) Optical Fiber/Coaxial Cable/Bluetooth/

More information

Perception Gap Who are the financially excluded or underserved across Indonesia?

Perception Gap Who are the financially excluded or underserved across Indonesia? Perception Gap Who are the financially excluded or underserved across Indonesia? Who are the financially excluded or underserved across Indonesia? Huge diversity of this group, both in terms of the people

More information

For that purpose, java provides control structures that serve to specify what has to be done by our program, when and under which circumstances.

For that purpose, java provides control structures that serve to specify what has to be done by our program, when and under which circumstances. Control Structures A program is usually not limited to a linear sequence of instructions. During its process it may bifurcate, repeat code or take decisions. For that purpose, java provides control structures

More information

JAVA ~ as opposed to Java Script

JAVA ~ as opposed to Java Script JAVA ~ as opposed to Java Script STEP ONE: INSTALLING JAVA DEVELOPMENT TOOLS [NetBeans IDE 7.3 ]:- To program with Java, the NetBeans IDE is a wise IDE to use. There are others. https://netbeans.org/downloads/index.html

More information

Class XII INFORMATICS PRACTICES LAST YEAR PAPER-01( )

Class XII INFORMATICS PRACTICES LAST YEAR PAPER-01( ) Class XII INFMATICS PRACTICES LAST YEAR PAPER-01(2014-15) Time : 3 Hours, Maximum Marks : 70 Instructions: (i) All questions are compulsory. (ii) Answer the questions after carefully reading the text.

More information

CR35(B) CASH REGISTER QUICK START MANUAL

CR35(B) CASH REGISTER QUICK START MANUAL CR35(B) CASH REGISTER QUICK START MANUAL 1 KEYBOARD 1.1 Keyboard Layout 1.2 Basic Key Functions -Use to feed the paper through the receipt printer. -Clerk login or change operation mode. -Use with a numerical

More information

Make A New Appointment

Make A New Appointment 1. From the Side Tool Bar, click Make New Appointment 2. Enter Search By criteria in the Find entry field and click Next Make A New Appointment Click the Make New Appointment button on the side tool bar

More information

Logging into MYUT. 1. Log into MYUT using your UT UTAD username and password

Logging into MYUT. 1. Log into MYUT using your UT UTAD username and password Logging into MYUT 1. Log into MYUT using your UT UTAD username and password http://intranet.utoledo.edu If you were able to log in successfully, go to step #3. If you had problems remembering your username

More information

AVON AND SOMERSET CONSTABULARY

AVON AND SOMERSET CONSTABULARY Form 462 AVON AND SOMERSET CONSTABULARY DATA PROTECTION ACT 1998 These notes explain how you can find out what information, if any, is held about you by the Police. Application for access to your personal

More information

2014 NEW ZEALAND DIPLOMA IN ENGINEERING (ELECTRICAL ENGINEERING) MN4528

2014 NEW ZEALAND DIPLOMA IN ENGINEERING (ELECTRICAL ENGINEERING) MN4528 The New Zealand Diploma in Engineering (NZDE) (Electrical) is a Level 6, 240 credit programme. The NZDE (Electrical) has been developed by a national consortium of tertiary providers, in conjunction with

More information

Chapter 21. Payables

Chapter 21. Payables Chapter 21 Payables This Page Left Blank Intentionally CTAS User Manual 21-1 Payables: Introduction Payables are for bills that have been received or salary that has been earned but not yet paid. The Payables

More information

13. What is the meaning of Open Source in the term Open Source Database Management. 14. Difference between Proprietary and Open Source Software.

13. What is the meaning of Open Source in the term Open Source Database Management. 14. Difference between Proprietary and Open Source Software. Dehradun Public School I-Term Assignment (2016-17) Subject-Informatics Practices (065) Class -XII Chapter 1. Computer Networking 1. How is firewall useful in ensuring network security? [CBSE 2016] 2. State

More information

Data Transfer Utility Transfer Strategies

Data Transfer Utility Transfer Strategies The Data Transfer Utility is a general purpose program for transferring list names and transactions from one QuickBooks file to a different QuickBooks file. 1. Data that you export is held in temporary

More information

Extranet Notes. You are required to enter an and phone number on every customer/hostess you create an order for.

Extranet Notes. You are required to enter an  and phone number on every customer/hostess you create an order for. Be sure to read all notes and instructions below before you enter orders as it will answer all questions. When in doubt, reach out to your manager or our Aloette office for assistance before closing an

More information

Enterprise Information Systems

Enterprise Information Systems Enterprise Information Systems Financial Management + Human Resources + Student Administration Posting Charges in Groups Business Process Guide August, 2004 Updates Date Action Page(s) 8/01/2004 Created.

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : I MODEL / 07-08 CODE : N 065 TIME ALLOWED : 3 HOURS NAME OF STUDENT : MAX. MARKS : 70 ROLL NO. :.. CLASS/SEC :.. NO. OF PAGES : 5 INFORMATICS PRACTICES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

More information

Java GUI Programming Revision Tour-III Type A: Very Short Answer Questions

Java GUI Programming Revision Tour-III Type A: Very Short Answer Questions Java GUI Programming Revision Tour-III Type A: Very Short Answer Questions 1 Fill in the blanks (i) In java, methods reside in. (ii) The number and type of arguments of a method are known as. (iii) The

More information

TECSYS Streamline Enterprise System Page 1 of 7

TECSYS Streamline Enterprise System Page 1 of 7 TECSYS Streamline Enterprise System Page 1 of 7 Section 1: Module: A/P Accounts Payable 1. 10.3.1 Enhancement to Interface to Scan and Store A/P Invoice Images Module: A/R Accounts Payable > A/P Invoicing..

More information

2 Mobile 0488 xxx xxx $ Telephone xxxx $65.92 SAMPLE. 4 BigPond $29.95 MAIL OR TELSTRA STORE

2 Mobile 0488 xxx xxx $ Telephone xxxx $65.92 SAMPLE. 4 BigPond $29.95 MAIL OR TELSTRA STORE YOUR TELSTRA BILL GHABN 33 051 775 556 TAX INVOICE FOR MR SIMON 123 ST, TOWN NSW 2000 Previous Balance $88.29 Previous Bill $87.71 Payments $176.00 2 Mobile 0488 xxx xxx $65.29 BILLING PERIOD 07 March

More information

TRIO MODULE CHANGES SQL January 21, 2016

TRIO MODULE CHANGES SQL January 21, 2016 Voiding AP checks will remove them from the warrant as well. This will ensure an accurate reprint. Also if an entire warrant is voided and the warrant number is reused, it will only show the new entries

More information

SMS Price List (W.E.F. 1 st April 2018) A. Transactional SMS # Particulars & Description SMS Qty. Total Price (In Rs.) TAX

SMS Price List (W.E.F. 1 st April 2018) A. Transactional SMS # Particulars & Description SMS Qty. Total Price (In Rs.) TAX SMS Price List (W.E.F. 1 st April 2018) A. Transactional SMS # Particulars & Description SMS Qty. Total Price (In Rs.) TAX 1 Transactional SMS (With Sender ID) 5,00,000 52,000.00 2 Transactional SMS (With

More information

CASH MANAGEMENT HOW-TO

CASH MANAGEMENT HOW-TO Vision Municipal Solutions CASH MANAGEMENT How-To Guide Contents Set-Up... 4 Changing Your Default Period... 4 How to Change Your Default Period... 4 Payment Centers... 4 Adding a Payment Center... 4 Drawers...

More information

Cyprus VAT and direct tax update course

Cyprus VAT and direct tax update course Cyprus VAT and direct tax update course Brief description: To update participants 0n the latest Cyprus VAT and direct tax law amendments and circulars issued by the Cyprus tax authorities as from 1 January

More information

These instructions allow you to create a payment or credit memo for a Vendor (payee) with one invoice or credit memo, using Document Level Accounting.

These instructions allow you to create a payment or credit memo for a Vendor (payee) with one invoice or credit memo, using Document Level Accounting. These instructions allow you to create a payment or credit memo for a Vendor (payee) with one invoice or credit memo, using Document Level Accounting. Document Level accounting can be used when the FOAPAL(s)

More information

You can use these quick links, and the links on the left sidebar to navigate quickly around this User Manual.

You can use these quick links, and the links on the left sidebar to navigate quickly around this User Manual. USER MANUAL Fooman Connect: Xero (Magento 1) Quick Links This document is structured in the following sections: 1. 2. 3. Installation Set up in Xero and Magento Troubleshooting You can use these quick

More information

Assignment-I PGDCA 01- INFORMATION TECHNOLOGY

Assignment-I PGDCA 01- INFORMATION TECHNOLOGY PGDCA 01- INFORMATION TECHNOLOGY 1. What is role of IT industry in the global world? Explain. 2. What is software? Describe system software and Application Software. 3. Describe various parts of digital

More information

Programming: Java. Chapter Objectives. Control Structures. Chapter 4: Control Structures I. Program Design Including Data Structures

Programming: Java. Chapter Objectives. Control Structures. Chapter 4: Control Structures I. Program Design Including Data Structures Chapter 4: Control Structures I Java Programming: Program Design Including Data Structures Chapter Objectives Learn about control structures Examine relational and logical operators Explore how to form

More information

Showorks Online Entry Directions

Showorks Online Entry Directions Showorks Online Entry Directions You can register by going to our website: www.pcyf.net or by visiting https://polk.fairmanager.com/ directly. Welcome to the Polk County Youth Fair Online entry system.

More information

Downloaded from

Downloaded from FIRST TERMINAL EXAMINATION, INFORMATICS PRACTICES Time : 3 hrs. Class - XI M.M. : 70 Instructions: This question paper contains seven questions. All the questions are compulsory. Answer the questions carefully.

More information

MANAGE // CLAIMS & RETURNS TRAINING MANUAL

MANAGE // CLAIMS & RETURNS TRAINING MANUAL MANAGE // CLAIMS & RETURNS TRAINING MANUAL CONTENTS BASIC NAVIGATION RETURN REQUEST STARTING A NEW CLAIM 5 CREDIT REQUEST SEARCH AND ADD PRODUCTS 6 REVIEW AND SUBMIT CLAIM BASIC NAVIGATION BASIC NAVIGATION

More information

Reports in MSB. Form or Screen: MSB - Reports Updated: 2/5/18 QRG Doc. #: Q.SA.014

Reports in MSB. Form or Screen: MSB - Reports Updated: 2/5/18 QRG Doc. #: Q.SA.014 Form or Screen: MSB - Reports Updated: 2/5/18 QRG Doc. #: Q.SA.014 Business Use: MySchoolBucks is a system designed to streamline school payments for parents and students. Several reports yield crucial

More information

Operator Manual. btwin Retail scale

Operator Manual. btwin Retail scale Operator Manual btwin Retail scale Contents 2 METTLER TOLEDO Operator Manual btwin Contents 1 Your new retail scale... 5 1.1 Most important functions... 5 1.2 Device overview... 5 1.3 Safety instructions...

More information

CLOUDPM GM FUNCTIONS. Multi-Systems Inc. December 12, 2012 Page 1 of 7

CLOUDPM GM FUNCTIONS. Multi-Systems Inc. December 12, 2012 Page 1 of 7 Multi-Systems Inc. December 12, 2012 Page 1 of 7 Table of Contents Accounting... 3 Rooms and Rates... 5 Rooms... 5 Property Settings... 6 Misc. Codes... 6 Security and Permissions... 7 Phone Extensions...

More information

Instructions for Electronic Giving

Instructions for Electronic Giving Instructions for Electronic Giving Thank you for your interest in supporting Zion Baptist Community Church ( ZBCC ) through electronic giving. ZBCC has partnered with TelPay (www.telpay.ca) to accept financial

More information

What is the Smart Vend Monitor System?

What is the Smart Vend Monitor System? The Smart Vend Monitor Network Payment Solution What is the Smart Vend Monitor System? Total expense management solution Networked system of value for service management All communication is network IP

More information

DEHRADUN PUBLIC SCHOOL ASSIGNMENT SUBJECT-INFORMATICS PRACTICES (065) CLASS XI

DEHRADUN PUBLIC SCHOOL ASSIGNMENT SUBJECT-INFORMATICS PRACTICES (065) CLASS XI DEHRADUN PUBLIC SCHOOL ASSIGNMENT 2018-19 SUBJECT-INFORMATICS PRACTICES (065) CLASS XI CH-1 HARDWARE CONCEPTS Q1. Arrange the following units of memory in ascending order of their capacity: Terabyte, Petabyte,

More information

Downloaded from

Downloaded from SAMPLE PAPER - 2014 INFORMATICS PRACTICES Class XII Time: 3Hrs. M.M. 70 Instructions: (i) There are 30 questions contained in four sections A,B,C and D. (ii) All questions are compulsory to solve. (iii)

More information

Magento 2 User Guide March 11, 2018

Magento 2 User Guide March 11, 2018 Magento 2 User Guide March 11, 2018 Getting Started Logging in to your Magento 2 Admin Panel Once your account has been set up, you can access the Plugin through your Internet browser. To log in: 1. Use

More information

Question Bank. 4. Write a menu driven program to accept two numbers and find a. HCF / GCD b. LCM

Question Bank. 4. Write a menu driven program to accept two numbers and find a. HCF / GCD b. LCM Question Bank 1. Write a program using over loading function with name as area to calculate a. Area of a square (side * side) b. Area of a rectangle (length * breadth) c. Area of a circle. ( * radius *

More information

Accounts Receivable. Billing Functions. Establishing House Accounts

Accounts Receivable. Billing Functions. Establishing House Accounts 18 The billing functionality in FTD Mercury allows you to set up an automated billing system, complete with aging cycles, finance charges, and statements for your customers. You can bill your customers

More information

Receiving Payments on House Accounts

Receiving Payments on House Accounts 18 The billing functionality in FTD Mercury allows you to set up an automated billing system, complete with aging cycles, finance charges, and statements for your customers. You can bill your customers

More information

Pyramid Displays The Exhibition & Display Specialists

Pyramid Displays The Exhibition & Display Specialists Pyramid Displays The Exhibition & Display Specialists Have proudly been appointed your official Exhibition Contractor for Event Name: Office Choice 2014 Event Dates: 22 nd 26 th October 2014 Venue: Jupiter

More information

Sentinel SmartTouch Instruction Manual

Sentinel SmartTouch Instruction Manual Sentinel SmartTouch Instruction Manual 1. Introduction.. 2 2. Installing the Software... 2-6 3. Using Admin to setup SmartTouch.. 7-25 4. Using SmartTouch 26-28 5. Main Flags. 29-30 6. SmartTouch Upgrade

More information

DATA MINING EXAMPLES UltraTax CS

DATA MINING EXAMPLES UltraTax CS DATA MINING EXAMPLES UltraTax CS Overview... 1 Creating a birthday report... 1 Designing a custom report... 2 Performing a search... 4 Generating mailing labels... 6 Creating an invoice information report...

More information

Log In or Create an Account

Log In or Create an Account Welcome to AFC Events Registration! Before beginning the registration process for an AFC Event, you should log in or create an account at store.afc.org. Log In or Create an Account When looking at the

More information

EZ Parent Center Directions Parent Sign Up with Meal Payments

EZ Parent Center Directions Parent Sign Up with Meal Payments EZ Parent Center Directions Parent Sign Up with Meal Payments Sign Up for Returning Parents Who Used EZ School Lunch POS the Previous Year (All others scroll down to New Parent Sign Up) Parents should

More information

Table Service Daily Steps for Cashiers

Table Service Daily Steps for Cashiers Table Service Daily Steps for Cashiers Process Sales Tasks This section provides information on processing sales from the Process Sales screen. Tasks Select menu items Steps Option 1: (single course meal)

More information

1.5 Hints 1. You need a separate license for each computer or USB memory stick, on which you install the singleuser

1.5 Hints 1. You need a separate license for each computer or USB memory stick, on which you install the singleuser 1. Software and Order Information 1.1 Software-Versions All software versions include the same functions, only the installation procedure, the activation and the license prices are different. Single-User

More information

Uber How-To Guide. What is Uber? How to Download Uber. How to Create Your Uber Account

Uber How-To Guide. What is Uber? How to Download Uber. How to Create Your Uber Account Uber How-To Guide What is Uber? Uber is a car service in which you can request private drivers to pick you up from your current location and drop you off at your desired location. This service is conducted

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES Series OSR Code No. 90 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 8 printed pages. Code number given on the right hand

More information

COMPUTER APPLICATIONS

COMPUTER APPLICATIONS COMPUTER APPLICATIONS (Theory) (Two hours) Answers to this Paper must be written on the paper provided separately. You will not be allowed to write during the first 15 minutes. This time is to be spent

More information

Tangled Web Therapeutic Services LLC

Tangled Web Therapeutic Services LLC Tangled Web Therapeutic Services LLC Hello, Since you have made your first appointment, I want to provide you with the information you will need to find my office as well as a few forms for you to complete.

More information

Frequently Asked Questions

Frequently Asked Questions 1 Frequently Asked Questions Index Questions Answers Where do I start the re-enrollment process? page 2 Nothing happens when I click reenroll. What next? page 2 Where s my password for Student Account

More information

Getting Started. If you have any questions please send an to

Getting Started. If you have any questions please send an  to Open the TouchBase webpage https://touchbase.bsd405.org/ and select one of the following options - Each registered student has a web account. The User Name is the Student s ID The Password is the student

More information

Step by Step Guide to Join OPN & Sun OEM Knowledge Zone

Step by Step Guide to Join OPN & Sun OEM Knowledge Zone Step by Step Guide to Join OPN & Sun OEM Knowledge Zone Index I. Overview... 2 II. Program Qualification Criteria & Fees... 3 III. How to Apply for OPN Specialized Platinum, Gold or Silver Program Levels.

More information

Opera 3 Cashbook Training Manual

Opera 3 Cashbook Training Manual Opera 3 Cashbook Training Manual Contents Module Overview... 3 Cashbook Processing... 3 Viewing Historical Transaction... 4 Nominal Ledger Posting... 4 Purchase Ledger Postings... 5 Sales Ledger Postings...

More information

Getting Around QuickBooks Online

Getting Around QuickBooks Online QuickBooks Online Student Guide Chapter 2 Getting Around QuickBooks Online Chapter 2 Chapter 2 Now that you ve finished your company setup in QuickBooks Online, you re ready to get started. It s a good

More information

COMPUTER APPLICATIONS

COMPUTER APPLICATIONS COMPUTER APPLICATIONS (Theory) (Two hours) Answers to this Paper must be written on the paper provided separately. You will not be allowed to write during the first 15 minutes. This time is to be spent

More information

A. Login and Navigate to Form GSTR-9A - Annual Return for Composition Taxpayer page

A. Login and Navigate to Form GSTR-9A - Annual Return for Composition Taxpayer page Manual > GSTR-9A How can I prepare and file Form GSTR-9A return? Form GSTR-9A is an annual return to be filed once for each financial year by taxpayers who have opted for the composition scheme any time

More information

Tables Screen. Table State Buttons: Changes the state of the selected table to one of the following: Table Open. Table Reserved Needs Bussing

Tables Screen. Table State Buttons: Changes the state of the selected table to one of the following: Table Open. Table Reserved Needs Bussing Task 1: Log on to POS 1. Select the point of service icon. 2. Choose your Name. 3. Select Keyboard on the Login screen. 4. Enter your Password. 5. Select Enter on the Keyboard screen. Task 2: Open a Serving

More information

Server Manual. Document version 1.0. Copyright Posera Page 1

Server Manual. Document version 1.0. Copyright Posera Page 1 Server Manual Document version 1.0 Copyright 2015 2017 Posera Page 1 Contents Clock In... 4 Clock Out... 7 Change Job Skill... 8 Printing a Time Card... 10 Entering Your Information... 11 Navigating the

More information

Huawei Test 5. Explanation: P.W. of Rs. 12,880 due 8 months hence=rs. [ (12880*100)/(100+(18*(8/12)))]

Huawei Test 5. Explanation: P.W. of Rs. 12,880 due 8 months hence=rs. [ (12880*100)/(100+(18*(8/12)))] Huawei Test 5 1 A man wants to sell his scooter. There are two offers, one at Rs. 12,000 cash and the other a credit of Rs. 12,880 to be paid after 8 months, money being at 18% per annum. Which is the

More information

MSI Business License Version 4.0

MSI Business License Version 4.0 MSI Business License Version 4.0 User s Guide Municipal Software, Inc. 1850 W. Winchester Road, Ste 209 Libertyville, IL 60048 Phone: (847) 362-2803 Fax: (847) 362-3347 Contents are the exclusive property

More information

2017 Scotiabank Charity Challenge Participant Registration Guide

2017 Scotiabank Charity Challenge Participant Registration Guide 2017 Scotiabank Charity Challenge Participant Registration Guide Scotiabank Charity Challenge Registration for this event must be done through the Race Roster registration form. You can register for the

More information