INFORMATICS PRACTICES. Practical file. Session

Size: px
Start display at page:

Download "INFORMATICS PRACTICES. Practical file. Session"

Transcription

1 INFORMATICS PRACTICES Practical file Session

2 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 FUN AND FOOD PARK 4 CALCULATE MOBILE BILL 5 CALCULATE CAR RENT OF CAR HIRED AS PER CAR TYPE 6 CALCULATE FEES AS PER STREAM 7 CALCULATE FEES PAID BY MBA /MCA STUDENT 8 WAGE CALCULATOR 9 CALCULATE SALARY OF AN EMPLOYEE 10 ELECTRICTY BILL GENERATOR 11 PROGRAM TO CALCULATE NET DISCOUNT 12 CALCULATE BUS FARE AS PER DESTINATION AND BUS TYPE 13 LOAN CALCULATOR OF COMMON WEALTH BANK 14 THEATER BOOKING SYSTEM USING RADIO BUTTON

3 //1. COMPUTERISED BILLING OF ABC CAFÉ private void exitbtnactionperformed(java.awt.event.actionevent evt) { System.exit(0); private void ratebtnactionperformed(java.awt.event.actionevent evt) { float rate=0; if(regularrb.isselected()) rate=90; else if(panrb.isselected())

4 rate=110; ratetf.settext(" "+ rate); amountbtn.setenabled(true); private void amountbtnactionperformed(java.awt.event.actionevent evt) { String name= nametf.gettext(); float qty= Float.parseFloat(qtyTF.getText()); float rate=float.parsefloat(ratetf.gettext()); float costoftopping=0 ; if(cheesecb.isselected()) costoftopping= costoftopping + 20; if(capcb.isselected()) costoftopping= costoftopping + 20; if(pepcb.isselected()) costoftopping= costoftopping + 20; costoftoppingtf.settext(" "+costoftopping); rate= rate + costoftopping ; float amount = qty* rate ; costoftoppingtf.settext(" "+costoftopping); amounttf.settext(" " +amount );

5 // 2. Calculate Total Score in Shiksha Vidyalaya private void calculatebtnactionperformed(java.awt.event.actionevent evt) { String name=nametf.gettext(); int rollno=integer.parseint(rollnotf.gettext() ); float commscore=0, swachhscore=0, trafficscore=0; if(commcb.isselected()) commscore=10; if(swachhcb.isselected()) swachhscore=10; if(trafficcb.isselected())

6 trafficscore=10; commtf.settext(" " +commscore); swachhtf.settext(" " +swachhscore); traffictf.settext(" " +trafficscore); float total= commscore + swachhscore + trafficscore; totaltf.settext(" " +total); private void clearactionperformed(java.awt.event.actionevent evt) { nametf.settext(" "); rollnotf.settext(" "); commtf.settext(" "); swachhtf.settext(" "); traffictf.settext(" "); commcb.setselected(false); swachhcb.setselected(false); trafficcb.setselected(false);

7 // 3. Calculate Total Charges in Happy Fun and Food Park private void jbutton1actionperformed(java.awt.event.actionevent evt) { int noofpeople= Integer.parseInt(nopTF.getText()); float entryfees=0,watercharges=0,total=0; entryfees =noofpeople* 500; if(waterparkcb.isselected()) watercharges= noofpeople * 250; total=entryfees + watercharges; entryfeetf.settext(" "+ entryfees); waterparkchargestf.settext(" " +watercharges); amounttf.settext(" " +total);

8 private void clearactionperformed(java.awt.event.actionevent evt) { noptf.settext(" "); entryfeetf.settext(" "); waterparkchargestf.settext(" "); waterparkcb.setselected(false); private void exitbtnactionperformed(java.awt.event.actionevent evt) { System.exit(0);

9 //4 Calculate Mobile Bill private void calculatebtnactionperformed(java.awt.event.actionevent evt) { double callcharges=0, smscharges=0,mobiledatacharges=0, callssmscharges=0; double total=0; String name= nametf.gettext(); String mobileno = mobilenotf.gettext(); int calls=integer.parseint(callstf.gettext()); int sms=integer.parseint(smstf.gettext());

10 callcharges= calls*1.0; smscharges= sms*0.50; callssmscharges = callcharges+smscharges; total = callcharges+smscharges; if(mobiledatacb.isselected()) { mobiledatacharges=50; double netamount= callssmscharges + mobiledatacharges; callsmschargestf.settext(" " +callssmscharges); mobledatachargestf.settext(" " + mobiledatacharges); amounttf.settext(" " + netamount); private void clearactionperformed(java.awt.event.actionevent evt) { callsmschargestf.settext(" "); mobledatachargestf.settext(" "); amounttf..settext(" "); mobiledatacb.setselected(false); private void exitbtnactionperformed(java.awt.event.actionevent evt) { System.exit(0);

11 //5. Calculate Car Rent of car hired depending upon car type private void calculatebtnactionperformed(java.awt.event.actionevent evt) { String name= nametf.gettext(); String phone = phonetf.gettext(); int days=integer.parseint(daystf.gettext()); float amount=0,guidecharges=0,totalamount; if(delrb.isselected()) amount = days*1000; else if (semidelrb.isselected()) amount = days*800; else if(ordrb.isselected()) amount = days*700; if(guidecb.isselected())

12 guidecharges = days*500; totalamount=amount+guidecharges; amounttf.settext(" "+amount); guidechargestf.settext(" "+guidecharges); totalamounttf.settext(" "+totalamount); private void clearbtnactionperformed(java.awt.event.actionevent evt) { nametf.settext(" "); phonetf.settext(" "); daystf.settext(" "); amounttf.settext(" "); guidechargestf.settext(" "); totalamounttf.settext(" "); delrb.setselected(false); semidelrb.setselected(false); ordrb.setselected(false); guidecb.setselected(false); private void exitbtnactionperformed(java.awt.event.actionevent evt) { System.exit(0);

13 // 6 Calculate Fees as per stream private void initialbtnactionperformed(java.awt.event.actionevent evt) { admnotf.seteditable(false); nametf.seteditable(false); private void calculatebtnactionperformed(java.awt.event.actionevent evt) { String name= nametf.gettext(); int admno=integer.parseint(admnotf.gettext()); float totalfees=0; if(commrb.isselected()) totalfees=2500; else if(artsrb.isselected()) totalfees=2000;

14 else if(medrb.isselected()) totalfees=2900; else if(nonmedrb.isselected()) totalfees=2800; if(computercb.isselected()) totalfees=totalfees+200; totalfeestf.settext(" " +totalfees); private void clearbtnactionperformed(java.awt.event.actionevent evt) { nametf.settext(" "); admnotf.settext(" "); totalfeestf.settext(" "); commrb.setselected(false); artsrb.setselected(false); nonmedrb.setselected(false); medrb.setselected(false); computercb.setselected(false); private void exitbtnactionperformed(java.awt.event.actionevent evt) { System.exit(0);

15 //7. Calculate Fees Paid by MBA /MCA student as per facilities private void calculatebtnactionperformed(java.awt.event.actionevent evt) { int enrolmentno=integer.parseint(enrolmentnotf.gettext()); float librarycharges=0, messcharges=0,hostelcharges=0,totalcharges; if(mbarb.isselected()) { if(librarycb.isselected()) librarycharges= 500; if(messcb.isselected()) messcharges= 1500; if(hostelcb.isselected()) hostelcharges= 2000; else if(mcarb.isselected())

16 { if(librarycb.isselected()) librarycharges= 600; if(messcb.isselected()) messcharges= 1700; if(hostelcb.isselected()) hostelcharges= 2200; totalcharges= librarycharges+messcharges+hostelcharges; librarytf.settext(" " + librarycharges); messtf.settext(" " + messcharges); hosteltf.settext(" " + hostelcharges); totaltf.settext(" " + totalcharges); librarycb.setselected(false); messcb.setselected(false); hostelcb.setselected(false); private void clearbtnactionperformed(java.awt.event.actionevent evt) { enrolmentnotf.settext( " ") ; librarytf.settext( " ") ; messtf.settext( " ") ; hosteltf.settext( " ") ; totaltf.settext( " ") ;

17 // 8 wage calculator private void calwagebtnactionperformed(java.awt.event.actionevent evt) { String name=nametf.gettext(); int days=integer.parseint(daystf.gettext()); int rate=0; if(malerb.isselected()) rate=300; else if(femalerb.isselected()) rate=200; if(skillcb.isselected()) rate+=50; int totalwage=days*rate;

18 totalwagetf.settext(" " + totalwage); private void clearbtnactionperformed(java.awt.event.actionevent evt) { totalwagetf.settext(" "); nametf.settext(" "); skillcb.setselected(false); malerb..setselected(false); femalerb..setselected(false); private void stopbtnactionperformed(java.awt.event.actionevent evt) { System.exit(0);

19 //9. Calculate Salary of an employee private void calculatebtnactionperformed(java.awt.event.actionevent evt) { float basic,gradepay,basicpay,da,hra=0,grosspay, ptax=0,netsalary; basic=float.parsefloat(basictf.gettext()); gradepay=float.parsefloat(gradepaytf.gettext()); basicpay= basic+gradepay; da= basicpay* 90/100; String type=(string)jlist1.getselectedvalue();

20 if(type.equals("type-a")) hra=basicpay*30/100; else if(type.equals("type-b")) hra=basicpay*20/100; else if(type.equals("type-c")) hra=basicpay*10/100; grosspay= basicpay+da+hra; if(teachrb.isselected()) ptax= 300; else if(nonteachrb.isselected()) ptax= 0; netsalary= grosspay-ptax; datf.settext(" " +da); hratf.settext(" " +hra); grosstf.settext(" " +grosspay); ptaxtf.settext(" " +ptax); netsalarytf.settext(" " +netsalary); private void clearbtnactionperformed(java.awt.event.actionevent evt) { basictf.settext(" "); gradepaytf.settext(" "); datf.settext(" " ); datf.settext(" " );

21 hratf.settext(" "); grosstf.settext(" "); ptaxtf.settext(" "); netsalarytf.settext(" "); teachrb.setselected(false); nonteachrb.setselected(false);

22 //10 ELECTRICTY BILL GENERATOR private void calculateactionperformed(java.awt.event.actionevent evt) { String name=nametf.gettext(); int consumerno=integer.parseint(consumernotf.gettext()); int unitconsumed= Integer.parseInt(unitconsumedTF.getText()); int unit1,unit2, amount1=0, amount2=0,netamount; if(unitconsumed>300) { unit1= 300; unit2=unitconsumed-300; else { unit1= unitconsumed; unit2=0;

23 if(domrb.isselected()) { amount1= unit1*2; amount2=unit2*4; else if(commrb.isselected()) { amount1= unit1*5; amount2=unit2*10; netamount= amount1 + amount2; amount1tf.settext(" "+ amount1); amount2tf.settext(" "+ amount2); netamounttf.settext(" "+ netamount); private void clearbtnactionperformed(java.awt.event.actionevent evt) { amount1.settext(" "); amount2.settext(" "); netamounttf.settext(" "); unitconsumedtf.settext(" "); domrb.setselected(false); commrb.setselected(false);

24 // 11. PROGRAM TO CALCULATE NET DISCOUNT private void disbtnactionperformed(java.awt.event.actionevent evt) { String name, modeofpay; float amount, disc, netamount; disc=0; name=nametxt.gettext(); amount=float.parsefloat(amounttxt.gettext()); modeofpay=(string)modecmb.getselecteditem();

25 if(modeofpay.equals("cash")) disc=amount*8/100; else if(modeofpay.equals("cheque")) disc=amount*7/100; else if(modeofpay.equals("creditcard")) disc=0; if(amount>15000) disc=disc+amount*10/100; netamountbtn.setenabled(true); distxt.settext(" " + disc); private void netamountbtnactionperformed(java.awt.event.actionevent evt) { float amount,disc,netamount ; amount=float.parsefloat(amounttxt.gettext()); disc =Float.parseFloat(distxt.getText()); netamount=amount-disc; netamounttxt.settext(" " + netamount);

26 // 12. calculate bus fare as per destination and bus type private void calculatebtnactionperformed(java.awt.event.actionevent evt) { String destination=(string)jcombobox1.getselecteditem() ; int noofperson= Integer.parseInt(nopTF.getText()) ; float rateperkm=0,distance=0, amount; if(acrb.isselected()) rateperkm= 15; else if(nonacrb.isselected()) rateperkm= 10; if(destination.equals("delhi")) distance= 2000;

27 else if(destination.equals("mumbai")) distance= 1800; else if(destination.equals("pune")) distance= 1100; else if(destination.equals("hyderabad")) distance= 500; else if(destination.equals("goa")) distance= 1600; amount= distance* rateperkm*noofperson; distancetf.settext(" " + distance); amounttf.settext(" " + amount); private void clearbtnactionperformed(java.awt.event.actionevent evt) { noptf.settext(" "); amount2.settext(" "); distancetf.settext(" "); amounttf.settext(" "); acrb.setselected(false); nonacrb.setselected(false);

28 //13. LOAN CALCULATOR OF COMMON WEALTH BANK private void interestbtnactionperformed(java.awt.event.actionevent evt) { double interest=0; double loanamount= Double.parseDouble(loanamountTF.getText()); if(carrb.isselected()) interest= loanamount* 10/100; else if(houserb.isselected()) interest= loanamount* 8/100; else if(educationrb.isselected()) interest= loanamount* 5/100; interesttf.settext(" " +interest);

29 private void discountbtnactionperformed(java.awt.event.actionevent evt) { double discount=0 ; double loanamount= Double.parseDouble(loanamountTF.getText()); if(loanamount>100000) discount= loanamount* 2/100 ; else discount= loanamount* 2.5/100 ; discounttf.settext(" " +discount); private void netamountbtnactionperformed(java.awt.event.actionevent evt) { double loanamount= Double.parseDouble(loanamountTF.getText()); double interest= Double.parseDouble(interestTF.getText()); double discount= Double.parseDouble(discountTF.getText()); double netamount= interest-discount; netamounttf.settext(" " +netamount);

30 //14. THEATRE BOOKING SYSTEM private void stallrbitemstatechanged(java.awt.event.itemevent evt) { if(stallrb.isselected()) seattypelbl.settext("price per seat is Rs. 625/-"); private void circlerbitemstatechanged(java.awt.event.itemevent evt) { if(circlerb.isselected()) seattypelbl.settext("price per seat is Rs. 750/-"); private void ucirclerbitemstatechanged(java.awt.event.itemevent evt) { if(ucirclerb.isselected()) seattypelbl.settext("price per seat is Rs. 850/-");

31 private void boxrbitemstatechanged(java.awt.event.itemevent evt) { if(boxrb.isselected()) seattypelbl.settext("price per seat is Rs. 1000/-"); private void bookbtnactionperformed(java.awt.event.actionevent evt) { int totalamount; int price=0; int n=integer.parseint(seattf.gettext()); if(n<0) JOptionPane.showMessageDialog(null,"Enter Valid Seats Only "); if(boxrb.isselected()) price=625; else if(circlerb.isselected()) price=750; else if(ucirclerb.isselected()) price=850; else if(boxrb.isselected()) price=1000; totalamount=price*n; if(cashrb.isselected()) resultlbl.settext(" Cash Payment of Rs." + totalamount); else if(visarb.isselected()) resultlbl.settext(" Visa Payment of Rs." + totalamount); else if(amricanrb.isselected()) resultlbl.settext(" Amrican Express Payment of Rs." + totalamount); else if(masterrb.isselected()) resultlbl.settext(" Master Card Payment of Rs." + totalamount);

32

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

15 Create a Java GUI application which has the following interface as shown below: 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.

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 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

1. Wap in JAVA to accept two values and calculate highest value and lowest value.

1. Wap in JAVA to accept two values and calculate highest value and lowest value. Application based on if..else and nested if else structure : 1. Wap in JAVA to accept two values and calculate highest value and lowest value. 2. Wap in JAVA language to accept a number, check and display

More information

FAQs to your Premium-Transfer at fixed prices

FAQs to your Premium-Transfer at fixed prices TABLE OF CONTENTS FAQs to your Premium-Transfer at fixed prices I. Product overview. 2 II. Registration... 2 III. Booking 2 IV. After the booking... 5 V. During the ride.. 5 VI. After the ride.. 5 1 Product

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

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

Concur Travel User Guide

Concur Travel User Guide Concur Travel User Guide 1 Table of Contents What is Concur?... 3 Concur Modules... 3 Logging on to Concur... 5 Exploring the Home Page... 6 Updating Your Travel Profile... 7 Personal Information... 7

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

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

Package A $ x10 2 5x7 8 wallets Package includes 1 5x7 group photo Add $2.00 to upgrade to an 8x10. Package B $65

Package A $ x10 2 5x7 8 wallets Package includes 1 5x7 group photo Add $2.00 to upgrade to an 8x10. Package B $65 Groups only 5x7 $15 8x10 $20 11x14 $48 8 wallets 3x5(2) 5x7 8x10 11x14 16x20 24x30 Canvas tex. Retouching A la carte individual $25 $18 $18 $25 $60 $100 $200 $30 $45 Gifts See our menu of photo novelty

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

Decision Structures. Lecture 3 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz

Decision Structures. Lecture 3 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Decision Structures Lecture 3 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz Chapter Topics o Relational Operators o The if Statement o The if-else Statement o Nested if statements o The if-else-if

More information

Suggestions and Model Questions for B.Com Part II IT Practical Examination (C21G), 2016 (Information Technology and its Application in Business)

Suggestions and Model Questions for B.Com Part II IT Practical Examination (C21G), 2016 (Information Technology and its Application in Business) Suggestions and Model Questions for B.Com Part II IT Practical Examination (C21G), 2016 (Information Technology and its Application in Business) Students may practice the following 1. Creating Folders

More information

Time: 3 HOURS Maximum Marks: 100

Time: 3 HOURS Maximum Marks: 100 ANNA UNIVERSITY:CHENNAI 600 025 M.E/M.Tech. DEGREE EXAMINATIONS, NOV./DEC. 2014 Regulations 2013 Third Semester B.E. Computer Science and Engineering CS6311: PROGRAMMING AND DATA STRUCTURES LABORATORY

More information

Alg. 1 Unit 3 Notes Unit 3 Day 1: Represent Relations and Functions (O.C. 1-5)

Alg. 1 Unit 3 Notes Unit 3 Day 1: Represent Relations and Functions (O.C. 1-5) Alg. 1 Unit 3 Notes Unit 3 Day 1: Represent Relations and Functions (O.C. 1-5) A. Vocabulary Objectives: SWBAT represent functions Function Function Notation Coordinate Domain Range State the domain, the

More information

Object Oriented Programming Using C ++ Page No. : 1. ASSIGNMENT SHEET WITHOUT USING OBJECT AND CLASSES

Object Oriented Programming Using C ++ Page No. : 1. ASSIGNMENT SHEET WITHOUT USING OBJECT AND CLASSES Object Oriented Programming Using C ++ Page No. : 1. ASSIGNMENT SHEET WITHOUT USING OBJECT AND CLASSES 1. Write a program to calculate the sum of two numbers using function. 2. Write a program to calculate

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

Create a Travel Authorization (TA)

Create a Travel Authorization (TA) Create a Travel Authorization (TA) Login to mybyuh Enter CES net ID and password Click on PeopleSoft Finance IMPORTANT NOTE: In order to create Travel Authorization for a non-byuh employee, students or

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

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

VARIABLE, OPERATOR AND EXPRESSION [SET 1]

VARIABLE, OPERATOR AND EXPRESSION [SET 1] VARIABLE, OPERATOR AND EXPRESSION Question 1 Write a program to print HELLO WORLD on screen. Write a program to display the following output using a single cout statement. Subject Marks Mathematics 90

More information

INTERNET - NETWORK / TELEPHONE SERVICE CONTRACT

INTERNET - NETWORK / TELEPHONE SERVICE CONTRACT Exhibitor Company Name: Booth / Room #: Show Name: Billing Company Name: Billing Company Address: City, State / Country, Zip: Contact: Email: Credit Card Number: AMX MC Visa Expire Date(MM/YY): Credit

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

Decision Structures. Lesson 03 MIT 11053, Fundamentals of Programming

Decision Structures. Lesson 03 MIT 11053, Fundamentals of Programming Decision Structures Lesson 03 MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz M.Sc. in IS (SLIIT), PGD in IS (SLIIT), BBA (Hons.) Spl. In IS (SEUSL), MIEEE, Microsoft Certified Professional

More information

e-canteen System Presentation

e-canteen System Presentation Greenwood International School e-canteen System Presentation Version 1.0 Last Update on 28-10-2018 Copyright 2018, Greenwood International School. All rights reserved 1 e-canteen System GIS is introducing

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

Mobility provider of the future Get Ready for Seamless Integrated Mobility

Mobility provider of the future Get Ready for Seamless Integrated Mobility Mobility provider of the future Get Ready for Seamless Integrated Mobility Transport Ticketing Global, January 2017 Tim Wouda, Head of Transport Transactions Ericsson facts #1 Mobile infrastructure Operating

More information

Online Registration. TEE College. This document explains what to expect when using the online interactive registration application process:

Online Registration. TEE College. This document explains what to expect when using the online interactive registration application process: Online Registration TEE College This document explains what to expect when using the online interactive registration application process: Step 1: First you need to have a student number and a valid email

More information

Adding Cash to your Student Card

Adding Cash to your Student Card Adding Cash to your Student Card 1. You can now use your student card to purchase food and drinks from the Walkway Café or the new Coffee Pod. 2. To do this you need to set up an account with In-loop Campus.

More information

Package A $ x10 2 5x7 8 wallets Package includes 1 5x7 group photo Add $2.00 to upgrade to an 8x10. Package B $65

Package A $ x10 2 5x7 8 wallets Package includes 1 5x7 group photo Add $2.00 to upgrade to an 8x10. Package B $65 Groups only 5x7 $15 8x10 $20 11x14 $48 8 wallets 3x5(2) 5x7 8x10 11x14 16x20 24x30 Canvas tex. Retouching A la carte individual $25 $18 $18 $25 $60 $100 $200 $30 $45 Gifts See our menu of photo novelty

More information

Guru Gobind Singh Public School Sector V,B Bokaro Steel City Annual IP Assignment Class 11

Guru Gobind Singh Public School Sector V,B Bokaro Steel City Annual IP Assignment Class 11 Guru Gobind Singh Public School Sector V,B Bokaro Steel City Annual IP Assignment Class 11 1. What will be the output of given expression : int a=7; System.out.println(++a + + a-- + + a+1 + +a++); System.out.println(a);

More information

Visit Website :

Visit Website : CITC - CHANDIGARH INSTITUTE OF TECHNOLOGY & CONSULTANCY ISO 9001:2015 Certified Visit Website : www.citcchandigarh.com # Unique Features # - CITC Govt. of India Regd. Institute - (A Venture of ETC Services

More information

1 Jane s dress is... yours. A the same than B the same to C similar than D similar to

1 Jane s dress is... yours. A the same than B the same to C similar than D similar to Test 5A 1 Jane s dress is... yours. A the same than B the same to C similar than D similar to 2 We ve proved that he was guilty but he... doesn t admit it. A yet B already C still D no longer 3 If I...

More information

Practical List of. MCA IV SEM Session -2010

Practical List of. MCA IV SEM Session -2010 1. WAP to create own exception. Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of MCA IV SEM Session -2010 MCA-401 - Internet and Java Programming

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

HALF YEARLY EXAMINATION, INFORMATICS PRACTICES Time - 3 hrs. Class - XII M.M. 70

HALF YEARLY EXAMINATION, INFORMATICS PRACTICES Time - 3 hrs. Class - XII M.M. 70 HALF YEARLY EXAMINATION, 2017-18 INFORMATICS PRACTICES Time - 3 hrs. Class - XII M.M. 70 Name of the student Section Date-23.09.2017 (Saturday) Instructions: There are total 7 questions in this question

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

Snapshots/User Manual for last two year students (Session & ) who had taken admission directly through DDE Online Panel

Snapshots/User Manual for last two year students (Session & ) who had taken admission directly through DDE Online Panel Snapshots/User Manual for last two year students (Session 2013 14 & 2014 15) who had taken admission directly through DDE Online Panel Snapshots/User Manual for last two year students (Session 2013 14

More information

DATA INPUT METHODS WORKED EXAMPLES

DATA INPUT METHODS WORKED EXAMPLES MODULE 7 DATA INPUT METHODS WORKED EXAMPLES 7.1 What is the purpose of data validation program? To detect errors which may have been made by a data entry operator in entering data from forms into a computer

More information

Subject: Computer Science

Subject: Computer Science Subject: Computer Science Topic: Data Types, Variables & Operators 1 Write a program to print HELLO WORLD on screen. 2 Write a program to display output using a single cout statement. 3 Write a program

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

Case study Business start-up Budget versus actual

Case study Business start-up Budget versus actual Catherine Gowthorpe 00 Case study Business start-up Budget versus actual This is the solution to the case study found at the end of: Chapter 8 Budgeting Part Working Sales receipts can be estimated as

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

KENDRIYA VIDYALAYA TIRUMALAGIRI,SECUNDERABAD UNIT TEST II

KENDRIYA VIDYALAYA TIRUMALAGIRI,SECUNDERABAD UNIT TEST II KENDRIYA VIDYALAYA TIRUMALAGIRI,SECUNDERABAD UNIT TEST II SUB : COMPUTER SCIENCE CLASS : XII TIME : 90 MINS M.M: 40 1.a. Differentiate between default & parameterized constructor with suitable example.

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

2015 GoSystem Tax Line Conversion Chart. C-Corporation

2015 GoSystem Tax Line Conversion Chart. C-Corporation 2015 Line Conversion Chart C-Corporation January 2015 01A 30-100 1120 1B Gross receipts or sales 01B 30-105 1120 1D Returns and allowances 05 31-380 1120 5 Other Interest 05.01 31-380 1120 5 Tax exempt

More information

Table of Contents. Page 1 of 17

Table of Contents. Page 1 of 17 Table of Contents Accessing Your Concur Site... 2 Updating Your Travel Profile (You must do this before booking travel)... 2 Reviewing the Home Page... 4 Tulane Travel Site and Policy... 4 Company Notes...

More information

How to Buy A Bus Pass

How to Buy A Bus Pass How to Buy A Bus Pass How to Buy a RideTRAFFIX Bus Pass 2018 Step One: Go to the website Go to http://ridetraffix.com/buyapass.aspx Step Two: Enter Your Address Correctly Type in your Street number and

More information

Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of. MCA III SEM Session -2010

Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of. MCA III SEM Session -2010 Rani Durgavati Vishwavidyalaya Jabalpur (M.P.) (UICSA) Master of Computer Application (MCA) Practical List of MCA III SEM Session -2010 MCA-301 - Object Oriented Programming in C++ 1. WAP to generate Fibonacci

More information

My ASU TRIP manual. ASU Travel Service Center. Call Mon. through Fri., 8 a.m. to 5 p.m., Arizona time

My ASU TRIP manual. ASU Travel Service Center. Call Mon. through Fri., 8 a.m. to 5 p.m., Arizona time My ASU TRIP manual ASU Travel Service Center Call 480-965-3111 Mon. through Fri., 8 a.m. to 5 p.m., Arizona time Email: MyASUTrip@asu.edu 7/11/18 Table of contents Profile Update profile information...

More information

Class - XII English. Hindi

Class - XII English. Hindi English 1. Write Q- Ans. of Lesson 5 Indigo and Poem 4: A thing of Beauty. 2. Read Chapters 18 to 22 of The Invisible Man and write Summary of each. 3. Solve writing and reading section of Latest CBSE

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

Microsoft Access Relationship Total Queries - Reports

Microsoft Access Relationship Total Queries - Reports Primary Key Each table should include a primary key that uniquely identifies each record stored in the table such as an Employee ID. - A table contains only 1 primary key. - A primary key can be composed

More information

COMPUTER SCIENCE (330) TUTOR MARKED ASSIGNMENT

COMPUTER SCIENCE (330) TUTOR MARKED ASSIGNMENT COMPUTER SCIENCE (330) TUTOR MARKED ASSIGNMENT Max. Marks : 20 Note: (i) All questions are compulsory. The marks alloted for each question are given at same place. Write your name, enrollment number, AI

More information

II- Pre Board Examination SET A

II- Pre Board Examination SET A KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION II- Pre Board Examination- 08-9 SET A Subject : Informatics Practices (065) Class : XII Time : 3 hours Maximum Marks : 70 _ Note. (i) All questions are compulsory.

More information

MARKING SCHEME INFORMATICS PRACTICES (065) Time allowed : 3 Hours M. M.: 70. (a) Ans: Team Viewer( 1 mark for correct answer)

MARKING SCHEME INFORMATICS PRACTICES (065) Time allowed : 3 Hours M. M.: 70. (a) Ans: Team Viewer( 1 mark for correct answer) MARKING SCHEME INFORMATICS PRACTICES (065) Time allowed : 3 Hours M. M.: 70 1. (a) Ans: Team Viewer( 1 mark for correct answer) (b) Ans: i) WAN ii) MAN (1/2 Mark for each correct ans) (c) Ans: Modem convert

More information

The NIF. Presented by: Berkeley International Office 2299 Piedmont Avenue Berkeley, CA

The NIF. Presented by: Berkeley International Office 2299 Piedmont Avenue Berkeley, CA The NIF Presented by: Berkeley International Office 2299 Piedmont Avenue Berkeley, CA 94720-2321 http://internationaloffice.berkeley.edu What is The NIF? An online database Determines your need for an

More information

Business Online Banking & Bill Pay Guide to Getting Started

Business Online Banking & Bill Pay Guide to Getting Started Business Online Banking & Bill Pay Guide to Getting Started What s Inside Contents Security at Vectra Bank... 4 Getting Started Online... 5 Welcome to Vectra Bank Business Online Banking. Whether you re

More information

Sample Paper 2011 Class XII Subject Informatics Practices Time 03 hrs Max Marks 70 General Instructions:- 1. All questions are compulsory. 2. Question paper carries A, B & C Three parts. 3. Section A is

More information

Mobile Payment Systems: Mobiiliraha (Mobile Cash) Petteri Hernelahti, Elisa

Mobile Payment Systems: Mobiiliraha (Mobile Cash) Petteri Hernelahti, Elisa Mobile Payment Systems: Mobiiliraha (Mobile Cash) Petteri Hernelahti, Elisa Trends in payments and Value Added Services Payments Electronic payments developing and becoming increasingly popular e-banking

More information

Question Bank. Class : XII( ) Subject : Informatics Practices(065)

Question Bank. Class : XII( ) Subject : Informatics Practices(065) Question Bank Class : XII(2017-18) Subject : Informatics Practices(065) 1. What is the purpose of modem? [1] 2. Define Domain Name Resolution. [1] 3. What do you mean by transmission media? Name the type

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

9/9/2017. If ( condition ) { statements ; ;

9/9/2017. If ( condition ) { statements ; ; C has three major decision making instruction, the if statement, the if- statement, & the switch statement. A fourth somewhat less important structure is the one which uses conditional operators In the

More information

INTERNET - NETWORK / TELEPHONE SERVICE CONTRACT

INTERNET - NETWORK / TELEPHONE SERVICE CONTRACT Exhibitor Company Name: Booth / Room #: Show Name: Comfortech 2015 Billing Company Name: Billing Company Address: City, State / Country, Zip: Contact: Email: Credit Card Number: AMX MC Visa Expire Date(MM/YY):

More information

Sample Paper 2012 Class XII Subject Informatics Practices

Sample Paper 2012 Class XII Subject Informatics Practices Sample Paper 2012 Class XII Subject Informatics Practices Q1. Answer the following questions- (a) What is constant and how can we define it? (b) What will be the output of the following code? StringBuffer

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

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

Welcome PROGRAMME. Technology Products Awareness. 5 December, 2016 Canara Bank, All right reserved. DIT Wing, HO

Welcome PROGRAMME. Technology Products Awareness. 5 December, 2016 Canara Bank, All right reserved. DIT Wing, HO Welcome To Technology Products Awareness PROGRAMME 1 Banking through Technology 2 Banking through Technology Net Banking Mobile Banking Canara e-infobook Canara mwallet Online PPF A/c Opening Online Loan

More information

School Payment Portal. Parents Guide to Getting Started

School Payment Portal. Parents Guide to Getting Started School Payment Portal Parents Guide to Getting Started Contents Creating a New Account... 3 Logging into the School Payment Portal... 6 Site Logout... 7 Adding Students to Account... 8 Make a Cafeteria

More information

Concur Travel & Expense CAMPUS TRAINING GUIDE & LIVE DEMO

Concur Travel & Expense CAMPUS TRAINING GUIDE & LIVE DEMO Concur Travel & Expense CAMPUS TRAINING GUIDE & LIVE DEMO Training Agenda This training will be approximately 1.5 hours long and will go over the basics of Concur Travel and Expense system. Additional

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

Studio Designer Basic

Studio Designer Basic Studio Designer Pricing Studio Designer Basic Studio Designer Professional $35 / User / Month $45 / User / Month Feature Basic Professional Address Client and Vendor Address Maintenance X X Client and

More information

CSU Annual Library Statistic Report from ACRLMetrics. Counting Opinions (SQUIRE) Ltd.

CSU Annual Library Statistic Report from ACRLMetrics. Counting Opinions (SQUIRE) Ltd. COLLECTIONS EXPENDITURES Books (title count) Books Books Digital/Electronic (volume (title count) count) expenditures, excludes fringe materials/services expenses (Line 23) One-time physical material purchases

More information

A STUDY OF CONSUMER BEHAVIOUR TOWARDS MARUTI CARS IN SALEM DISTRICT, TAMILNADU

A STUDY OF CONSUMER BEHAVIOUR TOWARDS MARUTI CARS IN SALEM DISTRICT, TAMILNADU A STUDY OF CONSUMER BEHAVIOUR TOWARDS MARUTI CARS IN SALEM DISTRICT, TAMILNADU A. PERSONAL PROFILE: QUESTIONNAIRE 1. Name of the Respondent 2. Gender: (a) Male [ ] (b) Female [ ] 3. Age of the Respondent

More information

Frequently Asked Questions PopMoney

Frequently Asked Questions PopMoney Frequently Asked Questions PopMoney What is PopMoney? PopMoney is an innovative personal payment service that eliminates the hassles of checks and cash. Now, sending and receiving money is as easy as emailing

More information

CASHNet. Instructions for Students

CASHNet. Instructions for Students CASHNet Instructions for Students CASHNet is an online tool used by students to: View Oregon Tech account and bill online Pay bill by echeck or accepted credit/debit card Sign up for erefund Grant benefactor

More information

Concur Getting Started QuickStart Guide. Concur Technologies Version 1.2

Concur Getting Started QuickStart Guide. Concur Technologies Version 1.2 Concur Technologies Version 1.2 May 12, 2016 Page 1 Document Revision History Date Description Version Author 05/12/2016 converted to new template 1.2 Concur Proprietary Statement These documents contain

More information

Qatar Rail. Web Tender Advertisement. User Manual Document (Public User) Version Number: 1.0. Printed: P a g e

Qatar Rail. Web Tender Advertisement. User Manual Document (Public User) Version Number: 1.0. Printed: P a g e Qatar Rail Web Tender Advertisement User Manual Document (Public User) Version Number: 1.0 Printed: 24-01-2019 1 P a g e Table of Contents 1 GENERAL... 3 1.1 Introduction... 3 2 SYSTEM DESCRIPTION... 3

More information

Concur Travel User Guide

Concur Travel User Guide Concur Travel User Guide Table of Contents What is Concur?... 2 What Can You Use it For?... 2 Logging on to Concur... 3 Exploring the Home Page... 4 Updating Your Travel Profile... 5 Personal Information...

More information

ALIGARH MUSLIM UNIVERSITY Department of Computer Science. JAVA Lab Assignment Course: MCA II nd Semester Academic Session:

ALIGARH MUSLIM UNIVERSITY Department of Computer Science. JAVA Lab Assignment Course: MCA II nd Semester Academic Session: ALIGARH MUSLIM UNIVERSITY Department of Computer Science Dated: 25-01-2016 JAVA Lab Assignment Course: MCA II nd Semester Academic Session: 2015-2016 CSM-241: Object Oriented Programming Using JAVA Note:

More information

1 (i) do (ii) Float (iii) salary12 (iv) Product

1 (i) do (ii) Float (iii) salary12 (iv) Product Tagore Public School Shastri Nagar Pre-Board Examination 07-8 Class-XII Subject-IP (065) MM: 70. A Identify invalid variable names out of the following. State reason if invalid. (i) do (ii) Float (iii)

More information

Write a java program to prints the count of odd and even no s entered.

Write a java program to prints the count of odd and even no s entered. Dated: 27-01-2014 ALIGARH MUSLIM UNIVERSITY Department of Computer Science CS-2P1: Object Oriented Programming Using JAVA Java Lab Assignment Course: MCA (Semester-II nd ) Academic Session: 2013-2014 Note:

More information

BILL EXPLAINER - DOT WELCOME PAGE

BILL EXPLAINER - DOT WELCOME PAGE WELCOME PAGE GH THE SAMPLE COMPANY PTY LTD 123 SAMPLE STREET SAMPLETOWN WA 6000 01 Account Number 336 0000 000 Tax Invoice Issued 14 Nov 2013 Billing Period to 06 Nov 2013 Bill Number P 315 000 000-1 Telstra

More information

Exam Duration: 2hrs and 30min Software Design

Exam Duration: 2hrs and 30min Software Design Exam Duration: 2hrs and 30min. 433-254 Software Design Section A Multiple Choice (This sample paper has less questions than the exam paper The exam paper will have 25 Multiple Choice questions.) 1. Which

More information

Concur Getting Started QuickStart Guide. Concur Technologies Version 1.3

Concur Getting Started QuickStart Guide. Concur Technologies Version 1.3 Concur Technologies Version 1.3 January 23, 2017 Page 1 Document Revision History Date Description Version Author 05/12/2016 11/30/2016 converted to new template updated proprietary statement 1.2 Concur

More information

For the partial fulfillment of CBSE Exam Made By: Ashish kumar jha Class : XII Science Roll No :

For the partial fulfillment of CBSE Exam Made By: Ashish kumar jha Class : XII Science Roll No : For the partial fulfillment of CBSE Exam. 201 Made By: Ashish kumar jha Class : XII Science Roll No :9653100 Certificate This is to certify that the project entitled employee management system which deals

More information

Proprietary Clubs Tariff J ( )

Proprietary Clubs Tariff J ( ) Proprietary Clubs Tariff J (2018.08) Effective from 1st August 2018 (Also showing previous year s details in brackets) Contents 1. Scope of tariff 2. General conditions 3. Royalty rates 3.1 Featured music

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH. Ch 1 C++ Revision tour

INTERNATIONAL INDIAN SCHOOL, RIYADH. Ch 1 C++ Revision tour Grade- XII Computer Science Worksheet Ch 1 C++ Revision tour 1) Explain in brief the purpose of function prototype with the help of a suitable example. 2) What is the benefit of using default parameter/argument

More information

Concur Travel & Expense CONCUR TRAINING - OVERVIEW

Concur Travel & Expense CONCUR TRAINING - OVERVIEW Concur Travel & Expense CONCUR TRAINING - OVERVIEW Concur Training Agenda Today s meeting will cover: Concur Overview How to Login and Navigate User Profile Setup Completing a Travel Request Completing

More information

I 27, Discover 42 1, Diners!C.B TTL CREDIT CARDS 36,965.65

I 27, Discover 42 1, Diners!C.B TTL CREDIT CARDS 36,965.65 Bar I Daily Consolidated System Sales Detail Period From: 07/01/2012 To : 07/31/2012 Printed on Wednesday, August 01, 2012-5:02 AM 62,298.87 Returns Voids 0 187-1,417.04 Gross Receipts Charged Receipts

More information

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

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

More information

WestJet BIZ. User Manual. Contents. General Information 1. Profile categories

WestJet BIZ. User Manual. Contents. General Information 1. Profile categories Here is a step-by-step guide to help your team navigate the WestJet Biz website. Please note that your company will require an administrator to create the travel arranger profiles. The administrator will

More information

Object oriented programming

Object oriented programming Exercises 10 Version 1.0, 4 May, 2017 Table of Contents 1. Static members and exceptions............................................... 1 1.1. Problem................................................................

More information

Canberra Institute of Technology

Canberra Institute of Technology Canberra Institute of Technology Accounting and Law Centre for Business Student s Name & CIT # Tutor s Name: Place a cross (X) if student s Card NOT sighted Subject: COMP 337 Setup and operate a computerised

More information

DEMONETISATION IMPACT

DEMONETISATION IMPACT DEMONETISATION IMPACT India is hard hit by the scarcity of currency notes. To meet the demand supply of sufficient currency notes may take some more time. In this back drop we have to look for non cash

More information

Sample Question Paper Subject: Informatics Practices Class: XII Session

Sample Question Paper Subject: Informatics Practices Class: XII Session Sample Question Paper Subject: Informatics Practices Class: XII Session 07-8 Time: 3 Hrs. M.M. 70 (a) Mr. Ravi, an IT Help Desk executive needs to remotely login a customer s PC to provide him technical

More information

Updating to Tenant File Version 9

Updating to Tenant File Version 9 Updating to Tenant File Version 9 1 Improved Menu Systems This is the new enlarged Tenant File Main Menu. All actions start from this screen. For simplicity sake, we have not removed the selections above

More information

Wireless Services at the Fort Worth Convention Center

Wireless Services at the Fort Worth Convention Center Wireless Services at the Fort Worth Convention Center Exhibitor Internet (1.54Mbps / 1.54 Mbps ) Available throughout the entire building. (5GHz only inside of the exhibit hall. USB adapters are available

More information

University of Otago, Wellington. Conference Centre

University of Otago, Wellington. Conference Centre University of Otago, Wellington Conference Centre Conference Centre Located in the heart of Newtown, the University of Otago Wellington Conference Centre offers architecturally designed facilities, state-of-the-art

More information

INTERNET - NETWORK / TELEPHONE SERVICE CONTRACT

INTERNET - NETWORK / TELEPHONE SERVICE CONTRACT Exhibitor Exhibitor Services Show Name: RFID JOURNAL LIVE 2018 Billing Show Dates: 4 / 10 / 18 To 4 / 12 / 18 Billing Company Address: Incentive Order Deadline: 3/18/18 City, State / Country, Zip: Booth

More information