IMPORTANT JAVA APPLICATION

Size: px
Start display at page:

Download "IMPORTANT JAVA APPLICATION"

Transcription

1 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 Name txtvvn VVN fees txtcfee Computer Fee jradiobutton btnsr Sr. Secondary section btnse Secondary section btnpr Primary section jbutton btnfee Get Fees BtnClr Clear The tuition fee is Rs. 300/- for Sr. Secondary, Rs. 200/- for Secondary and Rs.100/- for Primary section. The total fee is calculated as the sum of Tuition Fee, VVN and Computer Fee. 1. Write the code for calculation Total fee as per selection of Radio Buttons, when Get Fee button is clicked. The name along with the total fee to be displayed in a joptionpane dialog. (3) 2. Write the code for Clear button to clear all the jtextfields. Also Sr. Secondary Radio buton should be selected and the name field should be focused. (2)

2 Q2. K.K.Group of hotels has computerized it booking system. The following is the Booking From along with details: ( you may assume default names in sequence or suitable name for controls). i) Write the code for exit button so that when a user clicks on exit button Application will be closed. Also display a message Thank you for your nice visit before exiting the application. [2] ii) When the command button Calculate Charges is clicked all the charges along with discount & Total computed and displayed. [3] Then criterion for the calculation of charges is given below: Total = (Room charges + food charges - discount) Single Room:- Rs.400 per day Double Room :- Rs.700 per day Breakfast:- Rs.100 per day Lunch: Rs.180 per day Dinner: Rs.200 per Day Gold card member will be given 20% discount on total charges.

3 Q3. Manav works in Bharti Public School. He developed the following interface in java to check the eligibility of a student for admission in a particular stream like science, commerce and humanities. The user first enters the name, total percentage, status of NCC and desired stream by selecting the appropriate option button. The criterion for selection is as follows-. Net Percentage is same as Percentage entered but an additional 5% marks is given if NCC is opted. Minimum percentage for science stream is 70, for commerce 60 and for humanities 40. Controls Name Purpose jtextfield txtname Student Name txtper Percentage of marks txtnet Net Percentage txtresult Result Message jradiobutton optsc Science stream optcom Commerce stream opthum Humanities jbutton btnres Display result btncal Calculate Percentage btnclear Clear text boxes jcheckbox chkncc NCC option Write Java Code for the following a) On the Action event of the clear button all the text fields and the check boxes get cleared. (1) b) On Action event of the button Calc Per Net percentage of the student is calculated and displayed in the appropriate text filed. (2) On Action Event of the button Result, the application checks the eligibility of the students and display result as Eligible or Not Eligible in the Result text field.

4 Q4. Mr. Radhakrishnan works in State Bank of India. He wants to develop an application to calculate compound Interest and Maturity Amount for given Principal amount, account type and time (in years) as per given interface. The rate of interest will be as follows- Account Type Time (Years) Rate of Interest Fixed Deposit >= 5 10 % < 5 8 % Recurring Deposit >= 3 5 % < 3 4 % Additional 2 % will be given to Sr. Citizen, if chcsrcitizen is checked. Controls Name Purpose jtextfield txtpamt Principal amount txttime Time txtint Interest amount txtmamt Maturity amount jcheckbox chksrcitizen Senior citizen jradiobutton btnfd Fixed deposit btnrd Recurring deposit jbutton btncalculate Calculate Amount & Interest btnclear Clear Text Boxes btnexit Close Program Write code for the following- 1. On click of Calculate Button, maturity amount using compound interest formula [A=P (1+R/100) T ] and Interest amount [i.e. A- P ] to be calculated and displayed in corresponding text boxes. (3) Write the code for Clear button to clear all the jtextfields. Also Fixed deposit radio button should be selected as default. (2)

5 Q5. Ms. Radha works in a shopping mall. To calculate net payable amount she has developed the following GUI in NetBeans. The shop accepts payments in three modes- Cash, Debit Card, Credit Cards. The discount given as per mode of payment is as follows- Mode of payment Discount Cash 12% Debit Card Nil Credit Card 8% If the Member check box is checked then the customer gets an additional discount of 5% on net payable amount. I. Write the code to make the textfields for Discount( txtdiscount ) and Net Payable (txtnetpayable) uneditable. II. Write code to do the followinga) When Calculate button is clicked the discount and net payable amount is calculated as per the given criteria and displayed in discount and net payable text boxes. b) When Clear button is clicked all the text boxes should be clear. Close the application when Exit button is pressed..

6 Q6. Read the following case study and answer the questions that follow. ABC IT Solution is required to develop a student record. The school offers two different streams, medical and non-medical, with different grading criteria. The following is the data entry screen used to calculate percentage and grade. * Student can assume name for the controls. Q6. 1. Write the code for the Frame Window Activate event to disable the Percentage and the Grade text fields. (1) 2. Write the code for the Clear button to clear all the text fields. (1) 3. Write the code for the Calculate button to calculate the percentage to display in text field after finding the total marks of first term and second term (assuming that both marks are out of 100). (2) 4. Write the code for the cmdcalcgrade button to calculate the grade to display in text field txtgrade, depending on the stream selected according to the criteria in the following table: (2)

7 MARKING SCHEMES Q1. //to do code for btnfee int tot, tf,vvn,cf; String nm=txtname.gettext(); vvn=integer.parseint(txtvvn.gettext()); cf=integer.parseint(txtcfee.gettext()); if (btnsr.isselected()) tf=300; if(btnse.isselected()) tf=200; if(btnpr.isselected()) tf=100; tot=tf+vvn+cf; JOptionPane.showMessageDilog(null, Name: +nm+ +Total Fee: +tot); ( 2 marks for correct calculation and 1 mark for correct use of JOptionPane) //To do code for BtnClr txtname.settext(); txtvvn.settext(); txtcfee.settext(); btnsr.setselected(true); txtname.requestfocus(); ( 1 mark for correct code and 1 mark for use.requestfocus()) Q2. (i) // to do code for Exit button JOptionPane.showMessageDialog(null,"Thank you for your nice visit"); System.exit(0); (1 mark for each command) (ii) //to do code for Calculate Charges Button float day,rmchg, fchg, disc,tamt; day =Integer.parseInt(jTextField2.getText()); if (jradiobutton1.isselected()) rmchg=day*400; rmchg=day*700; // calculate food charges for all combination of check boxes if(jcheckbox1.isselected() && jcheckbox2.isselected() && jcheckbox3.isselected()) fchg=day*( ); if(jcheckbox1.isselected() && jcheckbox2.isselected() &&! jcheckbox3.isselected()) fchg=day*( ); if(jcheckbox1.isselected() &&! jcheckbox2.isselected() && jcheckbox3.isselected()) fchg=day*( ); if(jcheckbox1.isselected() &&! jcheckbox2.isselected() &&! jcheckbox3.isselected()) fchg=day*100; if(! jcheckbox1.isselected() && jcheckbox2.isselected() && jcheckbox3.isselected()) fchg=day*( ); if(! jcheckbox1.isselected() && jcheckbox2.isselected() &&! jcheckbox3.isselected())

8 fchg=day*180); if(! jcheckbox1.isselected() &&! jcheckbox2.isselected() && jcheckbox3.isselected()) fchg=day*200; if(! jcheckbox1.isselected() &&! jcheckbox2.isselected() &&! jcheckbox3.isselected()) fchg=0; tamt=rchg+fchg; if (jcheckbox4.isselected()) dis=tamt*20/100; dis=0; tamt=tamt-dis; jtextfield3.settext( +rchg); jtextfield4.settext( +fchg); jtextfield5.settext( +dis); jtextfield6.settext( +tamt); ( 1 mark for variable declaration, 1 mark for check box condition and 1 mark for calculation and display) Q3. (a) //to do code for btnclear txtname.settext( ) txtper.settext( ) txtnet.settext( ) txtresult.settext( ) chkncc.setselected(false); [1 mark for correct code] (b)//to do code for btncal int p; p=integer.parseint(txtper.gettext()); if (chkncc.isselected()) p=p+5; txtnet.settext( +p); [2 marks for correct code] (c)// To do code for btnres int p; p=integer.parseint(txtresult.gettext()); if( optsc.isselected()) { if ( p>=70) txtresult.settext( Eligible ); txtresult.settext( Not Eligible ); if( jradiobutton2.isselected()) { if ( p>=60) txtresult.settext( Eligible ); txtresult.settext( Not Eligible );

9 { if ( p>=40) txtresult.settext( Eligible ); txtresult.settext( Not Eligible ); [2 marks for correct code] Q4. (1) //to do code for btncalculate float a,p,r,t, i; p=float.parsefloat(txtpamt.gettext()); t= Float.parseFloat(txtTime.getText()); if (btnfd.isselected()) {if (t>=5) r=10; r=8; { if(t>=3) r=5; r=3; if(chksrcitizen.isselected()) r=r+2; a=p* Math.pow(1+(r/100), t); i= a-p; txtint.settext( + i); txtmamt.settext( +a); (2 marks for correct calculation and 1 mark for correct use of Math function) (2) //To do code for BtnClr txtpamt.settext( ); txttime.settext( ); txtint.settext( ); txtmamt.settext( +a); btnfd.setselected(true); ( 1 mark for correct code and 1 mark for use of.setselected())

10 Q6. Read the following case study and answer the questions that follow. 1. txtperc.setenabled(false); txtgrade.setenabled(false); (1/2 mark each) 2. txtftmarks.settext( ); (1 mark ) txtstmarks.settext( ); txtperc.settext( ); txtgrade.settext( ); 3. calculate percentage int f=integer.parseint(txtftmarks.gettext( )); int s=integer.parseint(txtstmarks.gettext( )); int total=f+s; double perc=(total *100)/200; txtperc.settext( +perc); (2) 4. calculate grade (1+1 for correct coding part in each radiobutton) double percent=double.parsedouble(txtperc.gettext()); String grade; if (rdbmedical.isselected()==true) { if(percent>=80) grade= A ; if(percent<80 && percent>=80) grade= B ; if(percent<60) grade= C ; if (rdbnonmedical.isselected()==true) { if(percent>=75) grade= A ;

11 if(percent<75 && percent>=50) grade= B ; if(percent<50) grade= C ; txtgrade.settext(grade);

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

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

More information

Application based QUESTIONS for JAVA

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

More information

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

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII

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

More information

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

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

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

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

KENDRIYA VIDYALAYA NO 1 AFS JALAHALLI (WEST) PRE BOARD INFORMATICS PRACTICE Class XII

KENDRIYA VIDYALAYA NO 1 AFS JALAHALLI (WEST) PRE BOARD INFORMATICS PRACTICE Class XII MM: 70 KENDRIYA VIDYALAYA NO AFS JALAHALLI (WEST) PRE BOARD- 0 INFORMATICS PRACTICE Class XII TIME: 3:00 HRS Note: There are 7 Questions and all questions are compulsory. Q. a) Abir wants to establish

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

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

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

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

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

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

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

More information

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

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

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

More information

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

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

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

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

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

http:/// Sample Paper 2011 Class XII Subject Informatics Practices 1. Answer the following questions: (a) Define: i. IP address ii. Modem 2 (b) What is Denial-of-service? 2 (c) Write the purpose of the

More information

4. Write the output in jtextfield1 if depcode is 3. switch(depcode) { case 1 : allowance = 4000; break; case 2 : allowance = 3200;

4. Write the output in jtextfield1 if depcode is 3. switch(depcode) { case 1 : allowance = 4000; break; case 2 : allowance = 3200; 1 Mark Questions/Answers 1. Identify the odd one out of the following statements. State reason for your choice. i) switch ii) do while iii) while iv) for Ans ( i) switch switch is a selection statement

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

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

Sample Paper 2012 Class XII Subject Informatics Practices

Sample Paper 2012 Class XII Subject Informatics Practices Sample Paper 2012 Class XII Subject Informatics Practices Time-3hrs Max m Marks-70 Roll No Do Not Write any thing on Question Paper Answer all the questions:- 1 (a) India Marchants Co is planning in the

More information

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION = ANSWER KEY. Q.1 a. What is protocol? 1

KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION = ANSWER KEY. Q.1 a. What is protocol? 1 KENDRIYA VIDYALAYA SANGATHAN- CHENNAI REGION INFORMATICS PRACTICES REVISION = 2012-13 ANSWER KEY Q.1 a. What is protocol? 1 A set of rules of communication is protocol. 1 mark for correct answer b. In

More information

(d) Write any two significance of Unicode? 1

(d) Write any two significance of Unicode? 1 1 (a) India Marchants Co is planning in the office building to connect all computers, each 1 spread over within distance of 45 Meters. Suggest the economical cable type having high speed data transfer

More information

Kendriya Vidyalaya No1 Rewa Pre-Board I ( )

Kendriya Vidyalaya No1 Rewa Pre-Board I ( ) Class XII Kendriya Vidyalaya No Rewa Pre-Board I (04-5) Sub Informatics Practices TIME : 3:00 hrs MAX. MARKS : 70 a) Mr. Abhay is interested in transferring songs from his mobile to Mr. Raj s mobile. Suggest

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

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

INDIAN SCHOOL MUSCAT THIRD PRELIMINARY EXAMINATION INFORMATICS PRACTICES

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

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH CLASS-XII FIRST TERM INFORMATICS PRACTICES. Chapter 1

INTERNATIONAL INDIAN SCHOOL, RIYADH CLASS-XII FIRST TERM INFORMATICS PRACTICES. Chapter 1 1. What is MAC Address? 2. Write two advantages of networks. 3. Write two disadvantages of networks. INTERNATIONAL INDIAN SCHOOL, RIYADH CLASS-XII FIRST TERM INFORMATICS PRACTICES Chapter 1 4. What is

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

JAVA GUI PROGRAMMING REVISION TOUR II

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

More information

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

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

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

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

More information

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

Getting Started with myschoolbucks

Getting Started with myschoolbucks Getting Started with myschoolbucks Congratulations, your school district now offers myschoolbucks, a convenient and secure online payment and parent information portal! With myschoolbucks you can deposit

More information

ASSIGNMENT FOR AUTUMN BREAK CLASS XI INFORMATICS PRACTICES ( )

ASSIGNMENT FOR AUTUMN BREAK CLASS XI INFORMATICS PRACTICES ( ) HARDWARE CONCEPTS ASSIGNMENT FOR AUTUMN BREAK CLASS XI INFORMATICS PRACTICES (2017-18) Q1. Write at least two points of difference between the following terms: (i) Analog Computer and Digital Computer

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

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

DEPARTMENT OF HIGHER EDUCATION, HARYANA ONLINE ADMISSIONS. URL:

DEPARTMENT OF HIGHER EDUCATION, HARYANA ONLINE ADMISSIONS. URL: DEPARTMENT OF HIGHER EDUCATION, HARYANA ONLINE ADMISSIONS User Manual for Online Admissions 2018-2019 URL: http://www.online.highereduhry.com Overview is a unit of the Government of Haryana in India that

More information

Class: XII Informatics Practices Marking Scheme Time allowed: 3 hours Maximum Marks: 70

Class: XII Informatics Practices Marking Scheme Time allowed: 3 hours Maximum Marks: 70 Class: XII Informatics Practices Marking Scheme 08-9 Time allowed: 3 hours Maximum Marks: 70 Q No. (a) Which of the following are open standards?.ogg.doc.bmp.odf Ans:.OGG.ODF (½ Mark for each correct answer)

More information

SECOND TERMINAL EXAMINATION, 2017 INFORMATICS PRACTICES

SECOND TERMINAL EXAMINATION, 2017 INFORMATICS PRACTICES SECOND TERINAL EXAINATION, 2017 INFORATICS PRACTICES Time : 3 hrs. Class XI.. : 70 Date - 25.02.2017 (Saturday) Name of the student Section Important instructions: All questions are compulsory. Answer

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

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII

KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII KENDRIYA VIDYALAYA SANGATHAN BLUE PRINT INFORMATICS PRACTICES CLASS XII Design of Question Paper Type of Marks per Total no. of Total Marks Questions Question Questions SA I 1 20 20 SA II 2 16 32 LA 6

More information

Class XII Informatics Practices Sample Question Paper Time allowed: 3 Hours Max. Marks: 70

Class XII Informatics Practices Sample Question Paper Time allowed: 3 Hours Max. Marks: 70 Class XII Informatics Practices Sample Question Paper 08-9 Time allowed: 3 Hours Max. Marks: 70 General Instructions: All questions are compulsory, however question number, and 6 have internal choices.

More information

Downloaded from

Downloaded from CHAPTER 8: DATABASE CONNECTIVITY TO MYSQL MYSQL provides connectivity for client applications developed in the Java programming language via JDBC driver, which is called MYSQL Connector/J. There are four

More information

Quick Reference Guide. How to Register

Quick Reference Guide. How to Register Quick Reference Guide How to Register 1 Click the Register Now link. 2 Step 1: Choose your course Click the course or program you would like to register in. 3 Explore your section options by clicking the

More information

Banner 9: Registration Processes. Accessing the Registration Query (SFAREGQ) Form

Banner 9: Registration Processes. Accessing the Registration Query (SFAREGQ) Form Banner 9: Registration Processes SFAREGQ This is the Registration Query Form. This query-only form will provide you with an online view of the student s schedule by displaying all registered courses and

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

How to register for your AP exam on Total Registration Website

How to register for your AP exam on Total Registration Website How to register for your AP exam on Total Registration Website Access the website using this URL: www.totalregistration.net/ap/444350 You should see a screen that looks like this: You will need to create

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

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

USER GUIDE TO FILL ONLINE APPLICATION FOR TS EAMCET 2019

USER GUIDE TO FILL ONLINE APPLICATION FOR TS EAMCET 2019 USER GUIDE TO FILL ONLINE APPLICATION FOR TS EAMCET 2019 The Candidates are advised to be ready with the following mandatory / optional details before filling the Online Application. User Guide provides

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

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

INFORMATICS PRACTICES

INFORMATICS PRACTICES SET-4 Series SGN 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 11 printed pages. Code number given on the right

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

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

More information

Food Service (Portal)

Food Service (Portal) Food Service (Portal) Account Types Viewing Account Information Example of Printed Account Information The Food Service screen allows parents and students access to the following food service information:

More information

Class XII Informatics Practices Sample Question Paper Time allowed: 3 Hours Max. Marks: 70

Class XII Informatics Practices Sample Question Paper Time allowed: 3 Hours Max. Marks: 70 Class XII Informatics Practices Sample Question Paper 08-9 Time allowed: 3 Hours Max. Marks: 70 General Instructions: All questions are compulsory, however question number, and 6 have internal choices.

More information

Programming Fundamentals

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

More information

Visit For All NCERT solutions, CBSE sample papers, Question papers, Notes for Class 6 to 12

Visit  For All NCERT solutions, CBSE sample papers, Question papers, Notes for Class 6 to 12 KENDRIYA VIDYALAYA SANGATHAN Class XI Subject : Informatics Practices MM:70 Time : 3 hours General Instructions : i) All questions are compulsory. ii) Answer the questions after carefully reading the text.

More information

XXXXXXXXXXXXXXXXXXX First Pre-Board Examination, Informatics Practices

XXXXXXXXXXXXXXXXXXX First Pre-Board Examination, Informatics Practices Series SOS 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 7 printed pages. Code number given on the right hand

More information

Time : 3 hours Max. Marks : 70

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

More information

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

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

SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70

SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70 SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70 Note : 1-This question paper is divided into three sections. 2- Section-A and Section-B are

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

user guide IDI Visit 866myezpay.com Simply Call 866-MY-EZPAY EZpay User Guide

user guide IDI Visit 866myezpay.com Simply Call 866-MY-EZPAY EZpay User Guide Visit 866myezpay.com Simply Call 866-MY-EZPAY EZpay User Guide table of contents Welcome....3 Before You Get Online Setting Up an Account....4 Registering Opening an Account for Your Student(s)....5 Adding

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

EZ Parent Center Directions Parent Sign Up and Meal Preordering

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

More information

INFORMATICS PRACTICES. Practical file. Session

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

More information

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

GUIDE TO REGISTRATION FOR UNIVERSITY OF ALICANTE STUDENTS.

GUIDE TO REGISTRATION FOR UNIVERSITY OF ALICANTE STUDENTS. GUIDE TO REGISTRATION FOR UNIVERSITY OF ALICANTE STUDENTS. On-line registration via UACloud Academic year 2017-18. Academic Management Service University of Alicante Page 1 of 14 ONLINE REGISTRATION INSTRUCTION

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

GUI Forms and Events, Part II

GUI Forms and Events, Part II GUI Forms and Events, Part II Quick Start Compile step once always mkdir labs javac PropertyTax6.java cd labs Execute step mkdir 6 java PropertyTax6 cd 6 cp../5/propertytax5.java PropertyTax6.java Submit

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

myschoolbucks Parents Getting Started Guide Version

myschoolbucks Parents Getting Started Guide   Version myschoolbucks https://www.myschoolbucks.com Parents Getting Started Guide Version 03052013 Copyright 2012 Heartland School Solutions, a division of Heartland Payment Systems, Inc. All Rights Reserved.

More information

To register and set up your access. Click the register button the next screen you see will look like this:

To register and set up your access. Click the register button the next screen you see will look like this: Online Registration Help When you click the button to register online, you will be taken to our Dance Studio management system where you will be able: To register as a first time user and 1. Set yourself

More information

Online School Payments (OSP) Parent User Guide for EDEP Payments

Online School Payments (OSP) Parent User Guide for EDEP Payments Online School Payments (OSP) Parent User Guide for EDEP Payments May, 2014 OSP User Guide Table of Contents Overview...2 Site Information...2 Account Setup...3 Making a Tuition Payment...5 1 P a g e Overview

More information

Help Manual. Important Instructions for Applicants Filling Online Registration Form

Help Manual. Important Instructions for Applicants Filling Online Registration Form Help Manual Important Instructions for Applicants Filling Online Registration Form (Student enter the URL in the browser then a Login Page will be open, on the login page Student click on New Registration

More information

Downloaded from

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

More information

CFMUNESCO 2015 Model United Nations Cividale del Friuli Convitto Nazionale Paolo Diacono

CFMUNESCO 2015 Model United Nations Cividale del Friuli Convitto Nazionale Paolo Diacono FORM II DELEGATES AND CHAIRS APPLICATION FORM 26 th - 28 th November This Application Form (Form II) must be completed and sent back no later than Saturday 3 rd October 2015 to the following email address:

More information

Examination will be conducted in English Medium and you are required to answer in English Medium.

Examination will be conducted in English Medium and you are required to answer in English Medium. A. Dates of Conducting the Business Level and Corporate Level s December, 2017 To All Candidates, Please read the following instructions carefully before filling the application 24 th, 30 th and 31 st

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

Revision Notes on JAVA Net Beans by AMAN GUPTA

Revision Notes on JAVA Net Beans by AMAN GUPTA Some Important Commands for JAVA Net Beans Sr. No. Command Description 1. System.exit(0) to exits the application 2. Integer.parseInt() Converts string to Integer 3. Double.parseDouble() Converts string

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

Register yourself (for new applicants who are registering for Examination 2016)

Register yourself (for new applicants who are registering for Examination 2016) Carefully read this guide before you proceed for filling up the form. It will help you to gain knowledge as to how to fill up and submit your Application Form. This segment will guide you through the operational

More information

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

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

More information

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

Managing Projects Using PMI s Standards facilitated by: Mr. Andreas Solomou

Managing Projects Using PMI s Standards facilitated by: Mr. Andreas Solomou 1 Managing Projects Using PMI s Standards facilitated by: Mr. Andreas Solomou 05, 12, 19 April 2019 03, 07 May 2019 Time: 08:30 17:00 Venue: CIIM Nicosia, 21 Akademias Avenue, 2151 Aglandjia Language of

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

DRX Your School Lunch Payment Program

DRX Your School Lunch Payment Program DRX Your School Lunch Payment Program DRX is the online software that Guess Who's Coming to Dinner Caterers uses as our lunch payment program. DRX creates accounts for students and allows parents to add

More information

Programming Logic Beginning

Programming Logic Beginning Programming Logic Beginning 152-101 Designing Programs and Applications Quick Links & Text References Program Design Pages 23 27 Algorithms Pages 25 26 Levels of Design Pages IOPs Pages User Interface

More information

USER GUIDE TO FILL IN THE EAMCET-2017 ONLINE APPLICATION FORM

USER GUIDE TO FILL IN THE EAMCET-2017 ONLINE APPLICATION FORM USER GUIDE TO FILL IN THE EAMCET-2017 ONLINE APPLICATION FORM Screen 1. On your Internet Browser type the website address www.sche.gov.in, press ENTER button and you will see the following screen displayed

More information