Application based QUESTIONS for JAVA

Size: px
Start display at page:

Download "Application based QUESTIONS for JAVA"

Transcription

1 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 fields and the check boxes get cleared. 1 c) On Action event of the button Calc Percentage Net percentage of the student is calculated and displayed in the appropriate text filed. Net percentage is same as that of the actual percentage if the student doesn t opts for NCC otherwise 5% is added to actual percentage. 2 d) On Action Event of the button Result, the application checks the eligibility of the students. And display result in the appropriate text field. Minimum percentage for science is 70, for commerce 60 and for humanities 40. Q2. Mr. Amit developed the following GUI application for Calculating Salary. Help him to write coding for the following

2 i) Calculate Salary as per the following criteria 2 BASIC PAY=BASIC+GRADE PAY DA= 90% OF BASIC PAY Display the DA in its appropriate textfield. ii) HRA should calculated according to the type of city 2 (Chosen from the listbox) Type of City Percentage TYPE-A 30% OF BASIC PAY TYPE-B 20% OF BASIC PAY TYPE-C 10% OF BASIC PAY GROSS=BASICPAY+DA+HRA Professional tax should be assigned as Rs. 300/- for Teaching Staff and Rs. 0/- for Nonteaching tax NET SALARY= GROSS-PROFESSIONAL TAX Display all calculated values in appropriate text fields. iii) Clear button should clear all text fields. 2 Q3. Blue Valley Public School has computerised its registration for class XI students. Given below is the data entry form for same. Control Controls Description

3 Name Text field jtextfield1 To accept admission number of the student Text field jtextfield2 To accept Name of the student Text field jtextfield3 To display total fee of the student Radio button joptcom To choose Commerce subject Radio button joptarts To choose Arts subject Radio button joptmed To choose Medical subject Radio button joptnonmed To choose Non Medical subject CheckBox jchkbox To enter information whether the computer is opted Button jbutton1 Button jbutton2 To perform the different tasks which are mentioned Button jbutton3 below. Button jbutton4 Answer the following questions using Java NetBeans IDE: (i) On clicking the initial button the jtextfield1 and jtextfield2 should be set as uneditable. (1) (ii) On clicking the Calculate button the Total Fee is calculated on the basis of the following criteria: Stream Fee(Rs.) Commerce 2500 Arts 2000 Medical 2900 Non-Medical 2800 The Total Fee should be displayed in jtextfield3.(3) (iii) If the student has opted for Computers Rs. 200 will be added to the total fee. The modified Total Fee should be displayedin jtextfield3. (1) (iv) On Clicking the End button the application will be closed.(1)

4 Q4.A cloth show room has announced the following festival discount on the purchase of items based on the total cost of the item purchased. Total Cost Discount (in percentage) Less than % 2001 to % % Above % Design a GUI application to input the total cost and the compute and display the amount to be paid by the customer after availing the discount. 1. Write a method called festival_discount ( ) which calculate net amount after discount The method should total cost as a double type parameter. 3 2.Write the code for calculate button click event procedure to call the festival_discount ( ) method 2 3.Write the code for Exit button. 1 Q5. Ms Pragati works at a Recreation Park as a system analyst. She has created the following GUI. When a group arrives at the Recreation Park, the number of people in the group and whether the group wants to enjoy the Water Park or not is entered. Entry fees is < 500 per person. The person can choose to play at Water Park by selecting the checkbox. Rides of Water Park will cost 250 per person. Help her to write code for the following : 3 (i) On the click of command button Calculate, textfield for Entry Fees should display Number of people. Textfield for Total Amount should display sum of Entry Fees and Water Park Charges for all the people in the group. (ii) Write Java code to clear all Textboxes on the click of Clear button. 1

5 (iii) Write Java code to close the application on the click of Exit button. 1 Q6. Read the following case study and answer the questions that follow : The Shop n Store has developed the following data entry screen for its operations. The store offers three different types of membership discount schemes for its regular customers. Platinum members get a discount of 10% on all their purchases, Gold members get 5% and Silver members get 3% discount. The list of controls for above interface is as follows: Object Type Text Field Radio Buttons Button Object Name ProducTF QtyTF RateTF AmountTF DiscountTF NetTF PlatinumRB GoldRB SilverRB CalcBTN ExitBTN Description To enter name of the product To enter quantity Sold To enter rate per unit To display total amount as quantity *rate To display the discount amount based on membership type To display net amount as amount-discount To Specify the Member Ship Type To Calculate the amount, discount and net amount To Close the Application (i). Write the code to disable the text fields AmountTF, DiscountTF and NetTF. [1] (ii). Write the code for CalcBTN to calculate the amount, discount and net amount as per given [2] descriptions and conditions. (iii).write the code for ExitBTN to close the application, but before the application is closed it should check the net amount and if the net amount > 10,000 the membership of the customer should be upgraded and displayed. For example, if the customer already has Silver membership it should be upgraded Gold membership (similarly from gold to platinum) and he informed of the same using a message box. Q7.Read the following case study and answer the questions that follow : The Shop n Store has developed the following data entry screen for its operations. The store offers three different types of membership discount schemes for its regular customers. Platinum

6 members get a discount of 10% on all their purchases, Gold members get 5% and Silver members get 3% discount. Marks Grade % > = 90 A A A B C D <40 Fail The list of controls for above interface is as follows: (i). Write the code to disable the text fields AmountTF, DiscountTF and NetTF. [1] (ii). Write the code for CalcBTN to calculate the amount, discount and net amount as per given [2] descriptions and conditions (iii).write the code for ExitBTN to close the application, but before the application is closed it [2] should check the net amount and if the net amount > 10,000 the membership of the customer should be upgraded and displayed. For example, if the customer already has Silver membership it should be upgraded Gold membership (similarly from gold to platinum) and he informed of the same using a message box. Q8.Design a GUI application having interface as shown below =5 (i) The percentage marks are to be entered in the Text field(markstf) and upon clicking at a button(calcbtn), corresponding grade (as per following rules) should be displayed in the label(resultlbl) below command button. Grade Calculator Enter your marks% 82 Calculate Final Grade You get on A+ (ii) Write the code for FocusLost event of texfield markstf to ensure that the user does not enter a negative or zero value. If a negative or a zero value is entered, then the textfield should be made blank and a warning message should be displayed. (iii) If you are asked to add a clear button to the application, what code would your write for it so that the textifield markstf and label resultlbl get cleared when it is clicked?

7 Q9.Mr. Madhav works in a construction company. To calculate total wages he has developed the following GUI in NetBeans. Male and female labourers are respectively paid Rs. 150/- per day and Rs. 170/- per day. Skilled labourers are paid extra at the rate of Rs. 100/- day. Male and female labourers from rural areas are paid 10% less per day. You may choose any valid name for control name and variable name. Write code to do the following- (i) When Calculate Wage button is clicked, the total wages is calculated as per the given criteria and displayed in total wage text box. [3] (ii) When Clear button is clicked, all the text boxes should be cleared and radio button, check box should be deselected. [1] (iii) Close the application when Quit button is pressed. [1] Q10.Suresh is an employer in Electricity board. He has developed the following GUI to calculate the electricity bill. Slab for units consumed Units Domestic Commercial Rs. 2/- per unit Rs. 5/- per unit

8 >300 Rs. 4/- for units Rs. 10/-per units For eg: if units consumed for domestic purpose is 650 then Upto 300 units :Rs. 600/- Above 300 units: Rs. 1400/- Net Amount: Rs. 2000/- (1) Which method is used to determine whether domestic or commercial radio button is been clicked or not? (1) (2) Write code for the following a) Calculate and display amount upto 300 units, above 300 units and net amount when Calculate button is clicked. (3) b) Clear all the text fields when clear button is clicked (1) c) Close the application when stop button is clicked.(1) ********************************************

SAMPLE PAPER Class XII Subject INFORMATICS PRACTICES. TIME: 3Hrs. M.M. 70

SAMPLE PAPER Class XII Subject INFORMATICS PRACTICES. TIME: 3Hrs. M.M. 70 SAMPLE PAPER -2015 Class XII Subject INFORMATICS PRACTICES TIME: 3Hrs. M.M. 70 Q1. (a). Which Protocol is used for transfer of hypertext documents of the Internet? [1] (b). Two doctors in the same room

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

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

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

Downloaded from Set :B SECTION A

Downloaded from   Set :B SECTION A Sample Paper 2014 Class XII Subject Informatics Practices Set :B Time : 3 Hours M.M. 70 M SECTION A Q1. (a)write the two advantage and two disadvantages of the following topologies in network (i) Bus Topologies

More information

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

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

UNIT IV (IT APPLICATIONS) (From this unit: 3 Questions - 5 Marks)

UNIT IV (IT APPLICATIONS) (From this unit: 3 Questions - 5 Marks) UNIT IV (IT APPLICATIONS) (From this unit: 3 Questions - 5 Marks) One Mark Questions 1. Define e-business. Name one popularly used e-business website. 2. What social impact does e-governance have on society?

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

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

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

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

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

P>80 A P>70 && P<80 B P<70 C 12. Calculate employee salary according to following condition

P>80 A P>70 && P<80 B P<70 C 12. Calculate employee salary according to following condition 1. Write a JAVA SCRIPT program to convert temperature Celsius to Fahrenheit AND Fahrenheit to Celsius and implement any three properties on Label. 2. Write a JAVA SCRIPT program to convert liter to gallons

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

APEEJAY SCHOOL SAKET First Term Examination Class - XII (Commerce) INFORMATICS PRACTICES(Code 065)

APEEJAY SCHOOL SAKET First Term Examination Class - XII (Commerce) INFORMATICS PRACTICES(Code 065) APEEJAY SCHOOL SAKET First Term Examination 07-8 Class - XII (Commerce) INFORMATICS PRACTICES(Code 065) Time allowed : 3 hours General Instructions : This question paper has 6 questions and 6 printed pages.

More information

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII TOPICS SA(1) SA(2) LA(6) TOTAL 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

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

Informatics Practices - Assignments. A Practical Workbook

Informatics Practices - Assignments. A Practical Workbook Informatics Practices - Assignments (based on JAVA & SQL) A Practical Workbook Class XII 1 Assignments based on JAVA 1. Create a java Desktop application to find the largest number among the three floating

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

TABLE OF CONTENTS PREFACE... 6 INTENDED AUDIENCE... 6 BEFORE YOU START... 6 I-SKOOL... 7 TECHNICAL SPECIFICATION... 7

TABLE OF CONTENTS PREFACE... 6 INTENDED AUDIENCE... 6 BEFORE YOU START... 6 I-SKOOL... 7 TECHNICAL SPECIFICATION... 7 i-skool User Manuall TABLE OF CONTENTS PREFACE... 6 INTENDED AUDIENCE... 6 BEFORE YOU START... 6 I-SKOOL... 7 TECHNICAL SPECIFICATION... 7 ARCHITECTURE OF I-SKOOL MODULE... 8 1 ACCESSING I-SKOOL... 9 2

More information

Select Avg (Commission) for Sales; Select Count(Sales) from Sales;

Select Avg (Commission) for Sales; Select Count(Sales) from Sales; GUESS PAPER 2014 CLASS - XII SUBJECT INFORMATICS PRACTICES (065) Duration : 3 Hours Maximum Marks : 70 General Instructions: I. All questions are compulsory. II. Answer the question after carefully reading

More information

Kendriya Vidyalaya Sangathan (Chandigarh Region) Blue Print of Question Paper Class: XI Subject: Informatics Practices Session

Kendriya Vidyalaya Sangathan (Chandigarh Region) Blue Print of Question Paper Class: XI Subject: Informatics Practices Session Kendriya Vidyalaya Sangathan (Chandigarh Region) Blue Print of Question Paper Class: XI Subject: Informatics Practices Session 2017-18 S.No. Unit Very Short Answer Short Answer-I Short Answer-II Long Answer

More information

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION TIME : 3 HOURS MAX MARKS : 70

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION TIME : 3 HOURS MAX MARKS : 70 KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION- 2012-13 TIME : 3 HOURS MAX MARKS : 70 NOTE : i. All the questions are compulsory. ii. Answer the questions after carefully reading

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

BLUE PRINT. S.No. Topic Marks 1 Java Programming 30 2 Database concepts 35 3 IT Applications 5

BLUE PRINT. S.No. Topic Marks 1 Java Programming 30 2 Database concepts 35 3 IT Applications 5 BLUE PRINT S.No. Topic Marks 1 Java Programming 30 2 Database concepts 35 3 IT Applications 5 KENDRIYA VIDYALAYA NO.2 TAMBARAM, CHENNAI 73 HALF YEARLY EXAM 2015 CLASS : XII MARKS : 70 SUB : INFORMATICS

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

INFOTECH Computer Education, Kishangarh (Raj) Visit : Page 1

INFOTECH Computer Education, Kishangarh (Raj) Visit :   Page 1 Q 1. (a) Which protocol is used for the transfer of hypertext document on the Internet. (1) (b) Which transmission medium should be used to transfer data across two continents at very high speed? (1) (c)

More information

NHS PTSA Self Registration Process

NHS PTSA Self Registration Process NHS PTSA Self Registration Process Sign-Up Guidance Step One To join NHS PTSA, sign up for the directory, volunteer sign-up, & Dues payment, please visit http://bit.ly/2tqnlpr; You will be navigated to

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

Cvent Passkey. Group Booking. User Guide v1.0. February 2017

Cvent Passkey. Group Booking. User Guide v1.0. February 2017 Cvent Passkey Group Booking User Guide v1.0 February 2017 Overview... 4 Group Booking Concepts... 4 Enabling Group Booking... 5 Organization or Hotel Profile... 5 Bundles... 5 Event... 5 Configuring Attendee

More information

INDIAN SCHOOL MUSCAT FIRST PRELIMINARY EXAMINATION 2017 INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT FIRST PRELIMINARY EXAMINATION 2017 INFORMATICS PRACTICES Roll Number Code Number 065/ INDIAN SCHOOL MUSCAT FIRST PRELIMINARY EXAMINATION 07 INFORMATICS PRACTICES CLASS: XII Sub. Code: 065 Time Allotted: 3 Hrs...07 Max. Marks: 70 Instructions:. All the questions

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

Maharaja Agrasen Model School Sample Paper Subject: Informatics Practices

Maharaja Agrasen Model School Sample Paper Subject: Informatics Practices Time: 3Hours Q-1 Answer the following questions: Maharaja Agrasen Model School Sample Paper Subject: Informatics Practices Maximum Marks:70 1.1 Which protocol is used for transfer of hyper text documents

More information

KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065)

KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065) KENDRIYA VIDYALAYA SANGATHAN CLASS XII EXAMINATION INFORMATICS PRACTICES (065) Time Allowed: 3 Hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming Language: Java, SQL

More information

Welcome to the Next Level Purchasing Association. Next Level Purchasing is absolutely delighted to have you as a member.

Welcome to the Next Level Purchasing Association. Next Level Purchasing is absolutely delighted to have you as a member. 0 Table of Contents Introduction... 1 Logging In... 2 Courses... 3 Accessing & Enrolling in Courses... 3 Attending Courses... 4 SPSM Family of Certifications: Exams... 4 SPSM Family of Certifications:

More information

KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK CLASS-XII INFORMATICS PRACTICES

KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK CLASS-XII INFORMATICS PRACTICES KENDRIYA VIDYALAYA ALIGANJ SHIFT-II HOLIDAY HOMEWORK 18-19 CLASS-XII INFORMATICS PRACTICES 1. Arrange the following data types in increasing order of their size : byte, int, float, double, char, boolean.

More information

Downloaded from

Downloaded from SURE SHOT QUESTIONS Long Questions:- Subject:- Informatics Practices Class- XII 1. Deb Bastralaya has developed a GUI application for their company as shown below The company accepts payments in 3 modes-

More information

SAMPLE PAPER CLASS XII SUBJECT Informatics Practices

SAMPLE PAPER CLASS XII SUBJECT Informatics Practices http:/// Time : 3 hrs. SAMPLE PAPER CLASS XII SUBJECT Informatics Practices MM:70 A. Answer the following questions. A.1 Expand the following terms: FLOSS and ODF (1) A.2 Sun Beam Connectivity Association

More information

Sample Paper 2015 Class XII Subject INFORMATICS PRACTICES

Sample Paper 2015 Class XII Subject INFORMATICS PRACTICES Sample Paper 205 Class XII Subject INFORMATICS PRACTICES Q. Answer the following questions: a) Mr. Abhinav wants to implements a network using less cable length and data should be transmitted in one direction

More information

Identifying Slope and y-intercept slope y = mx + b

Identifying Slope and y-intercept slope y = mx + b Practice 1 Identifying m and b Identifying Slope and y-intercept slope y = mx + b y-intercept 1 1. For each of the following, identify the slope and y-intercept, OR use the slope and y-intercept to write

More information

TAMIL NADU UNIFORMED SERVICES RECRUITMENT BOARD

TAMIL NADU UNIFORMED SERVICES RECRUITMENT BOARD TAMIL NADU UNIFORMED SERVICES RECRUITMENT BOARD RECRUITMENT OF SUB-INSPECTOR OF POLICE (FINGER PRINT) 2018 Instructions to the candidates How to Apply through online The candidates who are applying for

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

Time Allowed :3 hours Maximum Marks : 70

Time Allowed :3 hours Maximum Marks : 70 Guru Harkrishan Public School Pre Mock Examination 2014-15 Class XII Sub: Informatics Practices General instructions : Please check that this question paper contains 5 printed pages. Please check that

More information

General Instructions: (i) (ii) (iii) (iv) (v) (vi) (vii) All questions are compulsory Sample Paper 2014 Class XII Subject Informatics Practices Answer the questions after carefully reading the text. This

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

Sample Paper for class XII IP with Answers Prepared by Successbook Group Sub: - Informatics Practices Total Marks :70 Time:3hr

Sample Paper for class XII IP with Answers Prepared by Successbook Group Sub: - Informatics Practices Total Marks :70 Time:3hr Sample Paper for class XII IP with Answers Prepared by Successbook Group Sub: - Informatics Practices Total Marks :70 Time:3hr 1. (a.) Why do we use repeater? A repeater is used to regenerate data and

More information

HCF Program Forms Forms Enhancements List. New fields added to the Forms 460, 461, and 462. universalservice.org

HCF Program Forms Forms Enhancements List. New fields added to the Forms 460, 461, and 462. universalservice.org 2017 Forms Enhancements List HCF Program Forms New fields added to the Forms 460, 461, and 462 Form 460 Form Nickname -- This optional field was added to the Site Information tab for individual HCPs and

More information

WorldPoint ONE Solution V1.06 Upgrade Instructions and Overview of New Features!

WorldPoint ONE Solution V1.06 Upgrade Instructions and Overview of New Features! WorldPoint ONE Solution V1.06 Upgrade Instructions and Overview of New Features! Thank you for selecting WorldPoint ONE as your solution for Training Center Management. PRIOR TO UPGRADING IT IS RECOMMENDED

More information

Adept Software Online Family Registration

Adept Software Online Family Registration Adept Software Online Family Registration Contents Adept Software Online Family Registration... 1 Embedding Registration Package into Club Website... 2 Primary Contact and Family Medical Information...

More information

ALEKS. Introduction to Online Ordering. To access the ALEKS online ordering form, begin at the ALEKS home page and then click on the K-12 button.

ALEKS. Introduction to Online Ordering. To access the ALEKS online ordering form, begin at the ALEKS home page and then click on the K-12 button. ALEKS Introduction to Online Ordering To access the ALEKS online ordering form, begin at the ALEKS home page and then click on the K-12 button. From the navigation tool bar on the left, click on the Ordering

More information

WEB PAY EMPLOYEE GUIDE

WEB PAY EMPLOYEE GUIDE Revised 4/14/2017 WEB PAY EMPLOYEE GUIDE Client Resource WWW.PAYLOCITY.COM TABLE OF CONTENTS WEB PAY... 2 SELF SERVICE PORTAL... 9 HOME... 26 EMPLOYEES... 35 PAYROLL... 108 NOTIFICATIONS... 113 GLOSSARY...

More information

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION

KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION KENDRIYA VIDYALAYA SANGATHAN ERNAKULAM REGION FIRST PRE-BOARD EXAMINATION 04-5 INFORMATICS PRACTICES Time allowed: 3 hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming

More information

Questions Frequently Asked by Consumers PartyLite Preferred Program Consumer Questions

Questions Frequently Asked by Consumers PartyLite Preferred Program Consumer Questions Questions Frequently Asked by Consumers PartyLite Preferred Program Consumer Questions 1. What is PartyLite Preferred? PartyLite Preferred is an online loyalty program that is FREE to join! Members of

More information

Patient Registration

Patient Registration Patient Registration Adding a Patient Adding a new patient through SequelMed can be accomplished through just a few steps: Defining the Patient Attaching a Plan (optional) Attaching Documents (optional)

More information

MONTHLY TEST (JUNE 2018) CLASS XII INFORMATICS PRACTICES

MONTHLY TEST (JUNE 2018) CLASS XII INFORMATICS PRACTICES M.M: 40 MONTHLY TEST (JUNE 2018) CLASS XII INFORMATICS PRACTICES TIME: 80 Mins. Q1. Which of the following is not a feature of Networking? (i) Resource Sharing (ii) Reliability (iii) Uninterrupted power

More information

Q New Features Guide

Q New Features Guide Q3 2010 New Features Guide 080410 2010 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

The Platform ecommerce Functionality

The Platform ecommerce Functionality The Platform ecommerce Functionality EXTERNAL USER GUIDE 2 ECOMMERCE FUNCTIONALITY (EXTERNAL USER GUIDE) Contents Create a login for The Platform 4 Log on to The Platform 8 Search for a Training Course

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

INFORMATICS PRACTICES All questions are compulsory. Answer the questions after carefully reading the text.

INFORMATICS PRACTICES All questions are compulsory. Answer the questions after carefully reading the text. SET 4 Series : GBM/1 Code No. 90/1 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 11 printed pages. Code number given on the

More information

1. Answer the following questions: a. Explain Real Time OS.

1. Answer the following questions: a. Explain Real Time OS. SECOND TERMINAL EXAMINATION, 2014 INFORMATICS PRACTICES Time : 3 hrs. Class XI M.M. : 70 Date 26.02.2014 Important instructions: This question paper contains 7 questions. All the questions are compulsory.

More information

KENDRIYA VIDYALAYA SANGATHAN CLASS XII BOARD EXAMINATION INFORMATICS PREACITES (065)

KENDRIYA VIDYALAYA SANGATHAN CLASS XII BOARD EXAMINATION INFORMATICS PREACITES (065) KENDRIYA VIDYALAYA SANGATHAN CLASS XII BOARD EXAMINATION INFORMATICS PREACITES (065) Time allowed: 3 hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming language :

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

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

TABLE OF CONTENTS ACCOUNT REGISTRATION

TABLE OF CONTENTS ACCOUNT REGISTRATION STUDENT USER GUIDE TABLE OF CONTENTS ACCOUNT REGISTRATION... 3-4 LOGGING INTO YOUR ACCOUNT 5 MY DASHBOARD......6 CURRENT ACTIVITIES.....7 TRAINING HISTORY..8-9 CALENDAR.. 10 LEARNING PLAN...11 DESIGNATIONS..

More information

DEPARTMENT OF HIGHER EDUCATION, HARYANA ONLINE ADMISSIONS

DEPARTMENT OF HIGHER EDUCATION, HARYANA ONLINE ADMISSIONS DEPARTMENT OF HIGHER EDUCATION, HARYANA ONLINE ADMISSIONS URL: http://highereduhry.ac.in/ USER MANUAL Department of Higher Education, Haryana is a unit of the Government of Haryana in India that looks

More information

INFORMATICS PRACTICES

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

WIRELESS DEVICES: ACCEPTABLE USE AND GUIDELINES

WIRELESS DEVICES: ACCEPTABLE USE AND GUIDELINES Intermediate School District #917 WIRELESS DEVICES: ACCEPTABLE USE AND GUIDELINES Procedures Manual April 2009 Table of Contents Overview 3 Definitions 3 General Guidelines 4 Eligibility Requirements 5

More information

The Candidates are advised to be ready with the following mandatory / optional details before filling the Online Application Form.

The Candidates are advised to be ready with the following mandatory / optional details before filling the Online Application Form. USER GUIDE TO FILL THE ONLINE APPLICATION FORM FOR TS EAMCET-2018 The Candidates are advised to be ready with the following mandatory / optional details before filling the Online Application Form. User

More information

1-1. Variables and Expressions

1-1. Variables and Expressions exploration Catherine s dance team is planning a spring trip to the coast. Catherine is saving money in a bank account to pay for the trip. Her parents started her account with $100. She sells Christmas

More information

National Recreation and Park Association Certified Playground Safety Inspector Course & Exam

National Recreation and Park Association Certified Playground Safety Inspector Course & Exam National Recreation and Park Association Certified Playground Safety Inspector Course & Exam May 1-3, 2019 Spenard Community Recreation Center 2020 W. 48 th Avenue, Anchorage, Alaska Who Should Attend?

More information

All About Catalog. Contents. West Virginia University Information Technology Services. ecommerce End User Advanced Guide

All About Catalog. Contents. West Virginia University Information Technology Services. ecommerce End User Advanced Guide Contents All About Catalog Browse...2 Add a Product...5 Basic Info...5 Display Options...6 Taxes & Shipping...6 Inventory Control...7 Descriptions...8 Left Side Menu...9 Product Details...9 Images and

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

WIRELESS DEVICES: ACCEPTABLE USE AND GUIDELINES

WIRELESS DEVICES: ACCEPTABLE USE AND GUIDELINES Goodhue County Education District #6051 WIRELESS DEVICES: ACCEPTABLE USE AND GUIDELINES Procedures Manual Updated January 2016 Table of Contents Overview 3 Definitions 3 General Guidelines 4 Eligibility

More information

Guru Gobind Singh Public School. Assignment

Guru Gobind Singh Public School. Assignment Class : XII Subject : Informatics Practices Guru Gobind Singh Public School Sector: V/B, Bokaro Steel City Assignment 1 (a) The Chalchitra theatre has a computer network. The network is in one building.

More information

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES Roll Number Code Number 065/ INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES CLASS: XII Sub.Code: 065 Time Allotted:3 Hrs 0.0.08 Max. Marks: 70 Instructions:. All the questions

More information

BCSCCS407R01 JAVA PROGRAMMING LABORATORY

BCSCCS407R01 JAVA PROGRAMMING LABORATORY BCSCCS407R01 JAVA PROGRAMMING LABORATORY School of Computing Shanmugha Arts, Science, Technology and Research Academy [SASTRA] Thanjavur 613 401 List of Experiments 1. Polymorphism in java. 2. Inheritance

More information

SAMPLE PAPER: 2015 Class :XII Subject : Informatics Practices. Time: 3 hrs. M.M. 70. Section A

SAMPLE PAPER: 2015 Class :XII Subject : Informatics Practices. Time: 3 hrs. M.M. 70. Section A SAMPLE PAPER: 2015 Class :XII Subject : Informatics Practices Time: 3 hrs. M.M. 70 Instructions: i) All questions are compulsory. ii) Programming language:java Section A a) What is foreign key and Candidate

More information

INFORMATICS PRACTICES (065)

INFORMATICS PRACTICES (065) Roll No. Code : 112011-065-A Please check that this question paper contains 7 questions and 8 printed pages. CLASS-XI INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Maximum Marks : 70 General Instructions

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

AMS BASICS. IT Department APSACS SECRETARIAT

AMS BASICS. IT Department APSACS SECRETARIAT 2016 AMS BASICS IT Department APSACS SECRETARIAT TABLE OF CONTENT Chapter No1: School DBA Chapter No2: Data Entry Operator and School Teacher Chapter No3: Accounts Chapter No4: Roles of Principal Chapter

More information

Selection Control Structure CSC128: FUNDAMENTALS OF COMPUTER PROBLEM SOLVING

Selection Control Structure CSC128: FUNDAMENTALS OF COMPUTER PROBLEM SOLVING Selection Control Structure CSC128: FUNDAMENTALS OF COMPUTER PROBLEM SOLVING MULTIPLE SELECTION To solve a problem that has several selection, use either of the following method: Multiple selection nested

More information

8 th Grade - SBAC Review #1 Name:

8 th Grade - SBAC Review #1 Name: 8 th Grade - SBAC Review #1 Name: 1. Each day, Maria walks from home to school and then from school to home. The graphs below show the distance that Maria is from home at different times during her walk.

More information

Frequently Asked Questions. What is the Certificate in Commercial Credit programme?

Frequently Asked Questions. What is the Certificate in Commercial Credit programme? Frequently Asked Questions Programme Overview What is the Certificate in Commercial Credit programme? The Certificate in Commercial Credit (CICC) is a globally recognised certification programme tailored

More information

School Days Off Online Registration Tutorial

School Days Off Online Registration Tutorial 2016-2017 School Days Off Online Registration Tutorial Please follow the below steps to register for 2016-2017 School Days Off program dates. If you have any questions regarding School Days Off online

More information

FUNCTIONAL SIZE MEASUREMENT USING THE COSMIC METHOD EXAMPLE: ONLINE SHOPPING

FUNCTIONAL SIZE MEASUREMENT USING THE COSMIC METHOD EXAMPLE: ONLINE SHOPPING FUNCTIONAL SIZE MEASUREMENT USING THE COSMIC METHOD EXAMPLE: ONLINE SHOPPING Copyright 2014. All Rights Reserved. Mónica Villavicencio and Alain Abran Permission to copy all or part of this material is

More information

Registration form UNISA Online Courses. 1. Personal Details and Academic History Compulsory. 2. Contact Details

Registration form UNISA Online Courses. 1. Personal Details and Academic History Compulsory. 2. Contact Details Registration form UNISA Online Courses PLEASE NOTE: CATEGORY 1 TO 4 MUST BE COMPLETED BY ALL STUDENTS. 1. Personal Details and Academic History Compulsory Mr Mrs Miss Ms Other Initials Surname First Name/s

More information

SRS How To TABLE OF CONTENTS GENERAL 2

SRS How To TABLE OF CONTENTS GENERAL 2 SRS How To TABLE OF CONTENTS GENERAL 2 BEFORE YOU BEGIN 2 HOW TO PLACE YOUR ORDER IN THE INSTITUTIONAL STORE 2 HOW TO PLACE YOUR ORDER IN THE PERSONAL STORE 5 HOW TO VIEW ORDER STATUS 8 HOW ENTER AN ESTIMATE

More information

Industrial Technology

Industrial Technology 2014 HIGHER SCHOOL CERTIFICATE EXAMINATION Industrial Technology Multimedia Technologies Total marks 40 General Instructions Reading time 5 minutes Working time 1 1 hours 2 Write using black or blue pen

More information

S.W.B.A.T: Identify the independent and dependent variable in sentence. Write a function rule for a table and a situation.

S.W.B.A.T: Identify the independent and dependent variable in sentence. Write a function rule for a table and a situation. Lesson 31 Date: Mr. Jones S.W.B.A.T: Identify the independent and dependent variable in sentence. Write a function rule for a table and a situation. DO NOW 1. If ( ), find f(3). 2. If f(x) = 2x -1, what

More information

COURSE DESIGN DISTANCE LEARNING COURSE. Certified Trainer for Financial Cooperatives (CTFC)

COURSE DESIGN DISTANCE LEARNING COURSE. Certified Trainer for Financial Cooperatives (CTFC) COURSE DESIGN DISTANCE LEARNING COURSE Certified Trainer for Financial Cooperatives (CTFC) CENTRE FOR PROFESSIONAL EXCELLENCE IN COOPERATIVES (C-PEC) BANKERS INSTITUTE OF RURAL DEVELOPMENT (BIRD) LUCKNOW

More information

PHPBasket 4 Administrator Documentation

PHPBasket 4 Administrator Documentation PHPBasket 4 Please ensure you have the latest version of this document from http://www.phpbasket.com Contents CONTENTS 2 REQUIREMENTS 3 INSTALLATION 4 PREPARATION 4 UPLOAD 4 INSTALLATION 4 ADMINISTRATOR

More information

Test Booklet. Subject: MA, Grade: 10 TAKS Grade 10 Math Student name:

Test Booklet. Subject: MA, Grade: 10 TAKS Grade 10 Math Student name: Test Booklet Subject: MA, Grade: 10 TAKS Grade 10 Math 2009 Student name: Author: Texas District: Texas Released Tests Printed: Saturday July 14, 2012 1 The grid below shows the top view of a 3-dimensional

More information

Training Opportunities

Training Opportunities July September 2014 Training Opportunities Meeting Your Training Needs and CPE Requirements Group-Live Course Group Internet-Based Course To learn more or register for any of these events, visit www.gfoa.org.

More information

CAMPUS PORTAL QUICK REFERENCE GUIDE: STUDENT PORTAL

CAMPUS PORTAL QUICK REFERENCE GUIDE: STUDENT PORTAL CAMPUS PORTAL QUICK REFERENCE GUIDE: STUDENT PORTAL 1 CONTENTS How to Set Up Your Portal Web Account... 3 How to Personalize Your Homepage... 4 How to View Holds Applied to Your Portal Account... 4 How

More information

Frequently Asked Questions PartyLite Preferred Program

Frequently Asked Questions PartyLite Preferred Program PartyLite Preferred Program 1. What is PartyLite Preferred? PartyLite Preferred is an online loyalty program designed to help Consultants strengthen their businesses by developing long term relationships

More information

Legistar Administration Guide

Legistar Administration Guide Legistar Administration Guide Legistar Administration Use Legistar Administration to configure the settings in your Legistar database. We've organized the Administration topics as follows: Legistar Administration

More information

Registration Instructions

Registration Instructions Registration Instructions and Information Log-in Click on Use WebAdvisor Now! to log in. Important: Once you are logged in you have five minutes to make your transaction. This five minute time limit is

More information

CHAPTER 6: Scatter plot, Correlation, and Line of Best Fit

CHAPTER 6: Scatter plot, Correlation, and Line of Best Fit CHAPTER 6: Scatter plot, Correlation, and Line of Best Fit Name: Date: 1. A baseball coach graphs some data and finds the line of best fit. The equation for the line of best fit is y = 0.32x.51, where

More information