KENDRIYA VIDYALAYA No. 2, Delhi Cantt. 10 AUTUMN BREAK: SHIFT 2 - HOLIDAYS HOMEWORK. Class: XI

Size: px
Start display at page:

Download "KENDRIYA VIDYALAYA No. 2, Delhi Cantt. 10 AUTUMN BREAK: SHIFT 2 - HOLIDAYS HOMEWORK. Class: XI"

Transcription

1 Subject : HINDI Class: XI क न द र य व द य ऱय स -२ द ल ऱ छ न ( द व त य प ऱ ) श र य अ क श ग हक यय (२८ ससतम बर ०८ अक ट बर २०१४) व षय दहन द क - ग य र (दहन द -ऐच छछक) १. कब रद स, स रद स, द व, ऩदम कर, स ममत र न दन ऩ त तथ मह द व वम क ज वन बत ए गए बबन द ओ क आध र ऩर मऱख ए २. प र मच द, हररश कर ऩरस ई, र ग य र घव, म क ततब ध और भ रत द हररश च द क ज वन क ब र-ब र ऩढ़कर बबन द ओ क आध र ऩर मऱख ए ३. स च र क स धन, क य स च, ननब ध एव ऩत र ऱ न क अभ य स क क जए ४. आव र मस ह कह न क ऩढ़कर अऩन शब द म मऱख ए क ग य रह (क च न द रक) ननम नमऱख त क ऩ नर व नत कर गद य भ ग १. नमक क दर ग, अप ऩ क ढ ई स ऱ, ववद ई स भ षण, गऱत ऱ ह कथ ऱ न एव अभ य स क य ऩद य भ ग २. कब रद स, म र ब ई, स ममत र न दन ऩन त, भव न प रस द ममश र -- क भ व थ एव अभ य स क य ३. ऩ रक ऩ क ततक स र जतथ न क रजत ब द ४. अमभव यक तत और म ध यम मऱ ह ए १० प रश न क उत तर

2 Subject : PHYSICS CLASS XI- A : 1-SOLVE COMPLETE EXERCISE ALONG WITH ADDITIONAL QUESTIONS OF THE CHAPTER ROTATIONAL DYNAMICS 2- REVISE CHAPTER -4 TO CHAPTER-7 FOR UNIT TEST -II from Sanjay Kumar PGT PHY Second shift Subject : CS ASSIGNMENT CLASS XI CS ASSIGNMENT 1. WAP which take roll no. of student and marks in 5 subject. Display the total marks & % age and division of student. 2. WAP to check whether a given no. is >=0 or not i.e +ve or -ve. 3. Accept the side of the cube and display its volume. 4. WAP that takes two nos. & calculate one no. to the raise of pow function. 5. WAP to create simple calculation which accepts 2 nos. and one operator and gives the answer of operation. 6. WAP for quadratic equation. 7. Input character check whether lower case or upper case or digit. 8. Input character and print ASCII code of next two characters. 9. Input character and print next 3 characters. 10. Find error in code below and explain. #include<iostream.h> void main() int x = 5 ;

3 if( x > 5 ) x += 5; int y = 8; y += x; 11. Find the output of the code below : void main( ) int NoOfGirls = 4; int NoOfBoys = 10 ; if ( NoOfBoys = 8 && NoOfGirls <= NoOfBoys ) cout<< Great achievement ; cout<< Greater achievement ; 12. Find the output of the code below : void main( ) int circle = 5, rectangle = 0, square = 4, triangle = 0 ; if( circle) if( rectangle square ) cout<< Draw diagram ; if(! rectangle &&! square ) cout<< Invalid diagram ; if( circle == rectangle square == triangle )

4 cout<< Canvas Available ; cout<< Invisible diagram ; 13. Find the output of code below: void main( ) int x = 3, y = 5; if( x <= 5 ); cout<< Hurray ; cout<< Trapped ; 14. Write a program which inputs day(dd), month(mm) and year(yyyy) and checks whether it is a valid date or not. [ A valid date must lie on the calendar ] Subject : IP CLASS XI Assignment IP Q1. What will be the output of the following code segment: String firstname = "Johua "; String lastname = "Yacomo"; String fullname = firstname + lastname; jtextfield1.settext("full Name: "); jtextfield2.settext (fullname); Q2. What will be the value of j and k after execution of the following code: int j=10,k=12;

5 if(k>=j) k=j; J=k; Q3.What will be the contents of jtextield after executing the following statement: int num=4; num=num+1; if(num>5) jtextfield1.settext(integer.tostring(num)); jtextfield1.settext(integer.tostring(num*4)); Q4. Find the output of the following code: int First = 7; int Second = 73; First++; if (First+Second> 90) jlabel1.settext("value is 90 "); jlabel1.settext("value is not 90 "); Q5. Find the output int Number1 = 7,Number2=8; int Second = 73; if (Number1>0 Number2>5) if (Number1>7) jtextfield1.settext("code Worked"); jtextfield1.settext("code MightWork"); jtextfield1.settext("code will not Work"); Q6.Predict the output for tan & tan1 if sac equals 7? int tan = 0, tan1 = 4 ; if ( sac == 2 ) tan = 4 ; tan1 = 0; if (sac == 8) tan = 0 ; tan1 = 4; JOptionPane.showMessageDialog( null, tan = + tan +, tan1 = + tan1 ) ; Q7. Find error in following code and rewrite the correct code. inti,j=5; i==j+5; if(i=j)

6 jtextfield1.settext( i and j are unequal ); jtextfield2.settext( they are not equal ); break; jtextfield1.settext( i and j are equal ); Q8.Given the following code fragment : If(a==0) System.out.println( zero ); If(a==1) System.out.println( one ); If(a==2) System.out.println( two ); If(a==3) System.out.println( three ); Write an alternative code (Using if) that saves on number of comparsons Q9.Design the following application and answer the questions that follow : (a) Write the code for the Clear button to clear all the textfields and checkbox. Set the default choice in the radio button as Fixed Deposit. (b) Write the code for the calculate button to calculate compound interest and amount and display the values in the txtinterest and txtamount depending on principal, rate and time. Rate is calculated based on the time according to the following table: Account Time Rate Fixed Deposit <= 1 10% >1 and <=5 12% >5 15% Recurring Deposit <= 2 11% >2 and <=7 12%

7 >7 15% Q10. Read the following case study and answer the questions that follow: Mr.Basu of MEGA MALL decided to computerize the billing department. The accounts manager at MEGA MALL is creating the billing software to generate the bill during the sale period. A new bill is generated for each item sold. The discount is given based on the item category. An additional discount of 5% is given to the MEGA MALL card holders. The following is data entry screen used at the MEGA MALL Object Type Object Name Description JFrame MEGA MALL The main form JPanel Category To display different items category JRadioButtons MenRB To select Men s Category WomenRB KidRB To select Women s Category To select Kid s Category JButtons CalJB To calculate discount and final price ClearJB ExitJB TestJB To clear all JTextFields To exit from the application To test data validity JTextFields txtitem To enter item name txtprice txtdiscount txtfp To enter item price To display discount To final price

8 JCheckBox CHCheck To check card holders (a) Write the code for the ClearJB Radio button to clear all the JTextField. (b) Write the code for the TestJB button to ensure that the user does not enter a negative or a zero value in txtitem JTextField.If a negative or a zero value is entered that txtitem should be made blank and a warning message should be displayed through a JOptionPalne. (c) Write the code for the CalJB button to display the discount and final price in the txtdiscount and txtfp JTextFields respectively. Note that final price is calculated as (price discount) and the discount is calculated based on the category and price according to the following table. Also remember to given an additional 5% discount for membership card holders i.e. if the CHCheck JCheckBox is checked. Category Price Discount Men s < % >= % Women s < % >= % Kid s < % >= % (d) Write the code for ExitJB button to exit from the application.

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

USER MANUAL. Online Payment Form (User Interface) For. Rajiv Gandhi Institute of Petroleum and Technology, Raebareli. Version 1.0

USER MANUAL. Online Payment Form (User Interface) For. Rajiv Gandhi Institute of Petroleum and Technology, Raebareli. Version 1.0 USER MANUAL For Rajiv Gandhi Institute of Petroleum and Technology, Raebareli Online Payment Form (User Interface) Designed & Developed By: Index Sr.no Content Page No 1 Online Payment Page 3 2 State Bank

More information

Wood Based Industries MIS Uttar Pradesh Forest Department

Wood Based Industries MIS Uttar Pradesh Forest Department Wood Based Industries MIS Uttar Pradesh Forest Department New License User Interface Design Document Version 1.0 1 1.0 REGISTRATION AND LOGIN 1.1 REGISTRATION प ज करण User: For submitting the proposal,

More information

CLASS 11 HOLIDAY HOMEWORK. English PERIODIC TEST II PORTION HOLIDAY HOMEWORK

CLASS 11 HOLIDAY HOMEWORK. English PERIODIC TEST II PORTION HOLIDAY HOMEWORK CLASS 11 HOLIDAY HOMEWORK English PERIODIC TEST II PORTION 1. The Ailing Planet 2. The Browning Version 3. Albert Einstein at School 4. The Voice of the Rain Two Writing Skills 1. Poster Writing 2. Article

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education HINDI AS A SECOND LANGUAGE 0549/02 Paper 2 Listening For examination from 209 MARK SCHEME Maximum

More information

व य पक पट ररच लन मस द

व य पक पट ररच लन मस द व य पक पट ररच लन मस द प रल ख प र क षण स ज ञ पन स दर भ ददन क एलआईट ड 17/ट -122 28-01-2019 कन क सवमव : एलआईट ड 17 ऩ न व ऱ क न म: 1) स चन प रण ल स रक ष एव ब य म ट र क ववषय सवमव, एऱआईट ड 17 2) इऱ क ट र ननक

More information

व ड ज एक स प म इनस क र प ट क -ब डड सक र य करन क ल ए

व ड ज एक स प म इनस क र प ट क -ब डड सक र य करन क ल ए 1 व ड ज एक स प म इनस क र प ट क -ब डड सक र य करन क ल ए Step 1 1. Go to Start-> Control Panel > Regional & Language Options >Click on Languages Tab Tick the Check box to Install files for complex scripts...

More information

ह म चल प रद श क न दर य व श व द य लय महत वप र ण स चन

ह म चल प रद श क न दर य व श व द य लय महत वप र ण स चन ह म चल प रद श क न दर य व श व द य लय Central University of Himachal Pradesh क प क य य, एचप स ए व क स वडयम क वनक, धम, व - क गड, वहम च प रद 176215 Camp Office, Near HPCA Cricket Stadium, Dharamshala, District

More information

User Guide. for. Control Table Management Web Application

User Guide. for. Control Table Management Web Application User Guide for Control Table Management Web Application National Electoral Roll Management System (ERMS) Phase-I TABLE OF CONTENTS Sr. No. Topic Page No. 1 How to Login 1 2 Main Menu 2 3 Change Password

More information

प ज ड /PGD 13 (13360)

प ज ड /PGD 13 (13360) Address: Manak Bhavan 9, Bahadur Shah Zafar Marg, New Delhi-110002 Ph: 011 23230131, 23233375, 23239402 PRODUCTION AND GENERAL ENGINEERING DEPARTMENT http://www.bis.org.in Email pgd@bis.org,in व य पक पर

More information

NOTE: The technical content of document is not attached herewith / available on website. To get the document please contact:

NOTE: The technical content of document is not attached herewith / available on website. To get the document please contact: Address: Manak Bhavan 9, Bahadur Shah Zafar Marg, New Delhi-110002 Ph: 011 23230131, 23233375, 23239402 PRODUCTION AND GENERAL ENGINEERING DEPARTMENT http://www.bis.org.in Email pgd@bis.org,in व य पक पर

More information

INSTRUCTION MANUAL. Rajiv Gandhi Institute of Petroleum Technology, Jais ONLINE APPLICATION FORM FOR ADMISSIONS. Version 1.0. Designed & Developed By:

INSTRUCTION MANUAL. Rajiv Gandhi Institute of Petroleum Technology, Jais ONLINE APPLICATION FORM FOR ADMISSIONS. Version 1.0. Designed & Developed By: INSTRUCTION MANUAL ONLINE APPLICATION FORM FOR ADMISSIONS Rajiv Gandhi Institute of Petroleum Technology, Jais Designed & Developed By: Index Sr.no Content Page No 1 Student Login 3 2 Registration Page

More information

प ज ड /PGD 13 (13359)

प ज ड /PGD 13 (13359) Address: Manak Bhavan 9, Bahadur Shah Zafar Marg, New Delhi-110002 Ph: 011 23230131, 23233375, 23239402 PRODUCTION AND GENERAL ENGINEERING DEPARTMENT http://www.bis.org.in Email pgd@bis.org,in व य पक पर

More information

प ज ड /PGD 13 (13355)

प ज ड /PGD 13 (13355) Address: Manak Bhavan 9, Bahadur Shah Zafar Marg, New Delhi-110002 Ph: 011 23230131, 23233375, 23239402 PRODUCTION AND GENERAL ENGINEERING DEPARTMENT http://www.bis.org.in Email pgd@bis.org,in व य पक पर

More information

USER MANUAL. Online Payment Form. For. Rajiv Gandhi Institute of Petroleum Technology, Jais. Version 1.0. Designed & Developed By:

USER MANUAL. Online Payment Form. For. Rajiv Gandhi Institute of Petroleum Technology, Jais. Version 1.0. Designed & Developed By: USER MANUAL For Rajiv Gandhi Institute of Petroleum Technology, Jais Online Payment Form (User Interface) Designed & Developed By: Index Sr.no Content Page No 1 Online Payment Page 3 2 State Bank Collect

More information

व य पक पट ररच लन मस द

व य पक पट ररच लन मस द व य पक पट ररच लन मस द प रल ख प र क षण स ज ञ पन स दर भ ददन क एलआईट ड 17/ट -121 28-01-2019 कन क सवमव : एलआईट ड 17 ऩ न व ऱ क न म: 1) स चन प रण ल स रक ष एव ब य म ट र क ववषय सवमव, एऱआईट ड 17 2) इऱ क ट र ननक

More information

प ज ड /PGD 13 (13354)

प ज ड /PGD 13 (13354) Address: Manak Bhavan 9, Bahadur Shah Zafar Marg, New Delhi-110002 Ph: 011 23230131, 23233375, 23239402 PRODUCTION AND GENERAL ENGINEERING DEPARTMENT http://www.bis.org.in Email pgd@bis.org,in व य पक पर

More information

USER MANUAL. Online Payment Form. For. Rae Bareli. Version 2.0. Designed & Developed By:

USER MANUAL. Online Payment Form. For. Rae Bareli. Version 2.0. Designed & Developed By: USER MANUAL For Rajiv Gandhi Institute of Petroleum Technology, Rae Bareli Online Payment Form (User Interface) Designed & Developed By: Index Sr.no Content Page No 1 Online Payment Page 3 2 State Bank

More information

BUREAU OF INDIAN STANDARDS

BUREAU OF INDIAN STANDARDS Manak Bhavan, 9 Bahadur Shah Zafar Marg New Delhi 110002 Phones 2323 0131 2323 3375 Extn 4284 प रल ख प र षण स ज ञ पन व य पक पर च लन स द स दर भ ददन क ईट ड 18/ ट - 69 30/01/2019 तकन क सम तत ईट 18 प र षत

More information

वधम न मह व र ख ल वववय लय न तक उप ध क यम B.A (First Year) थम वष ल क श सन स आ त"रक म $य कन ह त स य क य PA 01 and PA 02

वधम न मह व र ख ल वववय लय न तक उप ध क यम B.A (First Year) थम वष ल क श सन स आ तरक म $य कन ह त स य क य PA 01 and PA 02 वधम न मह व र ख ल वववय लय न तक उप ध क यम B.A (First Year) थम वष ल क श सन स 2014-15 आ त"रक म $य कन ह त स य क य PA 01 and PA 02 य छ, आपक PA 01 और 02 प.यम क स य क य /भजव य ज रह ह2, जनक ववरण 5न6न क र ह :- प.यम

More information

Madhya Pradesh Bhoj (Open) University, Bhopal

Madhya Pradesh Bhoj (Open) University, Bhopal Subject- Management Information Systems Maximum Marks: 30 Q.1 What do you mean by Information System? Explain its categories. Q.2 Briefly describe what is ERP? Q.3 What is basic component of any software?

More information

Simple Queries in SQL & Table Creation and Data Manipulation

Simple Queries in SQL & Table Creation and Data Manipulation Simple Queries in SQL & Table Creation and Data Manipulation स ब एसई प ठ यक रम पर आध ररत कक ष -11 द व र : स ज व भद र य स न तक त त श क षक (स गणक शवज ञ न ) क ० शव० ब ब क (लखनऊ स भ ग) पररचय SQL क 1970 क अस

More information

BUREAU OF INDIAN STANDARDS

BUREAU OF INDIAN STANDARDS BUREAU OF INDIAN STANDARDS Manak Bhavan, 9 Doc Bahadur ETD/42/ Shah 11302 Zafar Marg New Delhi 110002 Phones 2323 0131 2323 3375 Extn 4284 TeleFax +91 11 2323 1192 Website : www.bis.org.in email : eetd@bis.org.in

More information

Table Joins and Indexes in SQL

Table Joins and Indexes in SQL Table Joins and Indexes in SQL स ब एसई प ठ यक रम पर आध ररत कक ष -11 द व र : स ज व भद र य स न तक त त श क षक (स गणक शवज ञ न ) क ० शव० ब ब क (लखनऊ स भ ग) पररचय कभ कभ हम ऐस आनफ म शन क अवश यकत पड़त ह जजसम ड

More information

BUREAU OF INDIAN STANDARDS

BUREAU OF INDIAN STANDARDS BUREAU OF INDIAN STANDARDS Manak Bhavan, 9 Bahadur Shah Zafar Marg New Delhi 110002 s 011-2323 0131, 2323 3375 Extn 4442 TeleFax +91 11 2323 7093 Website : www.bis.org.in, email : litd@bis.org.in WIDE

More information

Madhya Pradesh Bhoj (Open) University, Bhopal

Madhya Pradesh Bhoj (Open) University, Bhopal Diploma in computer application (DCA)- 2017-18 Subject : - FUNDAMENTALS OF COMPUTERS AND INFORMATION TECHNOLOGY 2 & fo'ofo ky; }kjk iznk; l=h; mrrj iqflrdkvksa esa gy djuk vfuok;z gsa 1. What is Computer?

More information

स चन औ दस ज- म नक क क टल क प रस व

स चन औ दस ज- म नक क क टल क प रस व व य पक पर च लन म मस द स दर भ ददन क सर सदस य प रल खन औ स चन व षय सवमव, एमएसड 5 प रक शन औ ग र द क प र द य व क व षय सवमव, एम एस ड 6 प रब ध औ त र पर षद, एमएसड स अन य इच छ क एमएसड 5/ ट 134 01-01-2018 वप रय

More information

Bid Sheet MSTC/BLR/MONITORING COMMITTEE /54/BANGALORE /17-18/9697 [148589] :35:00.0 :: :40:

Bid Sheet MSTC/BLR/MONITORING COMMITTEE /54/BANGALORE /17-18/9697 [148589] :35:00.0 :: :40: Seet Auction No. Period Of Auction Currenc y MSTC/BLR/MONITORING COMMITTEE /54/BANGALORE /7-8/9697 [48589] 7-9-4 5. 7-9-4 447.5654 INR der/ Info No. Of ders 7 No. Of Winners 7 No. Of s 8/W SL. No. der

More information

PG Diploma Programmes PROGRAMME SUMMARY & FEE STRUCTURE वषय न "म (Contents)

PG Diploma Programmes PROGRAMME SUMMARY & FEE STRUCTURE वषय न म (Contents) PG Diploma Programmes PROGRAMME SUMMARY & FEE STRUCTURE वषय न "म (Contents) School of Management Studies and Commerce Page 1. PG Diploma in Marketing Management (PGDMM-17) 2-3 2. PG Diploma Human Resource

More information

Material Handling Systems and Equipment Sectional Committee, MED 07

Material Handling Systems and Equipment Sectional Committee, MED 07 DRAFTS IN WIDE CIRCULATION DOCUMENT DESPATCH ADVICE Ref. Date MED 7 /T- 190, 02 01 2019 Material Handling Systems and Equipment Sectional Committee, MED 07 1) All Members of Mechanical Engineering Division

More information

Novel Unit Assignment 1 C141- C-144 Q 2:-Read the following questions and write the answers in NoteBook. (World Limit words)

Novel Unit Assignment 1 C141- C-144 Q 2:-Read the following questions and write the answers in NoteBook. (World Limit words) HOLIDAY HOMEWORK ClASS-XII TH (ARTS) Vacation! Holidays are the synonym for unlimited fun and merriment. Everything turns out best for us when we make the best use of our time. It is our heartiest desire

More information

BUREAU OF INDIAN STANDARDS

BUREAU OF INDIAN STANDARDS BUREAU OF INDIAN STANDARDS Manak Bhavan, 9 Bahadur Shah Zafar Marg New Delhi 110002 Phones 2323 0131 2323 3375 Extn 4284 TeleFax +91 11 2323 1192 Website : www.bis.org.in email : eetd@bis.org.in ल ख षण

More information

Ceramic or glass insulator units for a.c. systems Definitions, test methods and acceptance criteria

Ceramic or glass insulator units for a.c. systems Definitions, test methods and acceptance criteria DRAFTS IN WIDE CIRCULATION Document Despatch Advice REFERENCE Date ETD 06/ T-90 04-01-2017 TECHNICAL COMMITTEE ETD 06 ---------------------------------------------------------------- ------- --------------------------------------------

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

व य पक पट ररच लन मस द

व य पक पट ररच लन मस द व य पक पट ररच लन मस द प रल ख प र क षण स ज ञ पन स दर भ ददन क एलआईट ड 17/ट -120 28-01-2019 कन क सवमव : एलआईट ड 17 ऩ न व ऱ क न म: 1) स चन प रण ल स रक ष एव ब य म ट र क ववषय सवमव, एऱआईट ड 17 2) इऱ क ट र ननक

More information

Material Handling Systems and Equipment Sectional Committee, MED 07

Material Handling Systems and Equipment Sectional Committee, MED 07 DRAFTS IN WIDE CIRCULATION DOCUMENT DESPATCH ADVICE Ref. Date MED 7 /T- 170 02 01 2019 Material Handling Systems and Equipment Sectional Committee, MED 07 1) All Members of Mechanical Engineering Division

More information

कक ष आठव ववषय ह न द ग र ष मक ल न अवक श क यय

कक ष आठव ववषय ह न द ग र ष मक ल न अवक श क यय कक ष आठव ववषय ह न द ग र ष मक ल न अवक श क यय 1 प ठ -1,2,3 क अत लघ उत र य,लघ उत र य एव तनब ध त मक प रश न त र क अभ य स क ज ए 2 भ ष ब ल ललवप प ठ क अभ य स क यय क ज ए 3 वर य ववच छ द क अभ य स क ज ए 4 एक स वरच

More information

Mahatma Gandhi Institute For Rural Industrialization

Mahatma Gandhi Institute For Rural Industrialization मह त म ग ध ग र म ण औद य ग करण स स थ न Mahatma Gandhi Institute For Rural Industrialization मगनव ड, वध 442001 मह र ष ट र,भ रत Maganwadi, Wardha 442001, Maharashtra, India Phone No: +91-7152-253512 Fax:

More information

स चगक आईएसओ ववम ष ट ओ पर आध रर उपर क दस व ज क कन क स मग एमएचड स अन र ध पर प ककय ज सक ह

स चगक आईएसओ ववम ष ट ओ पर आध रर उपर क दस व ज क कन क स मग एमएचड स अन र ध पर प ककय ज सक ह भ रत य म नक ब य र लम म भ भपउ (,एव स वजन क नवतरण भ त पय,म रत सरक र ) BUREAU OF INDIAN STANDARDS (Ministry of Consumer Affairs, Food & Public distribution, Govt. of India) म नक भवन,9 बह द रश ह जफर म र ग,

More information

KENDRIYA VIDYALAYA BAILEY ROAD SECOND SHIFT HOLIDAY HOME WORK CLASS: XII SUB: ENGLISH

KENDRIYA VIDYALAYA BAILEY ROAD SECOND SHIFT HOLIDAY HOME WORK CLASS: XII SUB: ENGLISH KENDRIYA VIDYALAYA BAILEY ROAD HOLIDAY HOME WORK CLASS: XII SUB: ENGLISH Q.1. Write a letter to the Editor. Q.2. Write a complaint. Q.3. Write a Job application. Q.4. Write a comprehension. Q.5. Write

More information

ST. MARY S PRIMARY SCHOOL, JHARSUGUDA SYLLABUS FOR THE ACADEMIC SESSION CLASSV

ST. MARY S PRIMARY SCHOOL, JHARSUGUDA SYLLABUS FOR THE ACADEMIC SESSION CLASSV ST. MARY S PRIMARY SCHOOL, JHARSUGUDA SYLLABUS FOR THE ACADEMIC SESSION- 2018-19 CLASSV Eng I Le 1-Remembering Le-3 Adverbs: Degree, Le-9 Lost and Found Le-15 Prepositions Le-18 Boating What You Have Learnt

More information

STEPS TO BE FOLLOWED BY ERO FOR IMPLEMENTATION OF ECI ERMS

STEPS TO BE FOLLOWED BY ERO FOR IMPLEMENTATION OF ECI ERMS STEPS TO BE FOLLOWED BY ERO FOR IMPLEMENTATION OF ECI ERMS 1. एक Desktop Computer और इस पर Broadband Internet कन क शन स न चत कर Desktop System Windows XP/Windows 7/8 क स थ कम स कम 1 GB RAM और 50 GB Hard

More information

रण ल सर ष एव ब य मद क ववषय सममत एल टई लए,17 2) इल तनक एव स चन र य ग क वव पररषद एल टई लएसए क रध न सद य

रण ल सर ष एव ब य मद क ववषय सममत एल टई लए,17 2) इल तनक एव स चन र य ग क वव पररषद एल टई लएसए क रध न सद य य पक पर च लन मस द रलख रषण स ञ पन स द भ तकन क सममतत : एलआईट ड 17/ट - 81 स 106 एलआईट ड 17 -प न ददन क 31 अग त 2016 व ल क न म: 1) न रण ल सर ष एव ब य मद क ववषय सममत एल टई लए,17 3) गच रखन व ल 2) इल तनक एव स

More information

SUB: PHYSICS CLASS: XI

SUB: PHYSICS CLASS: XI Class 11 English application for job, enquiry letter, poster, advertisement, to learn done chapters. शरद अवक श ग ह क यय हहन द क XI. 1ववत न- ऱत म ग शकर-प रशन त तर लऱखन द ऩ वऱ -ननब ध 5.2,म र भ रत,आत कव द,

More information

Madhya Pradesh Bhoj (Open) University, Bhopal

Madhya Pradesh Bhoj (Open) University, Bhopal Subject : Computer Fundamentals Q.1 What are Logic Gates? Explain it. र ज क ग ट स क म ह सभझ ईम? Q.2 Explain Software Concepts and Classification of Software. स फ टव मय अवध यण ओ औय स फ टव मय क वग कयण क

More information

ST. MARY S PRIMARY SCHOOL, JSG. SYLLABUS FOR THE ACADEMIC SESSION , CLASS-IV

ST. MARY S PRIMARY SCHOOL, JSG. SYLLABUS FOR THE ACADEMIC SESSION , CLASS-IV ST. MARY S PRIMARY SCHOOL, JSG. SYLLABUS FOR THE ACADEMIC SESSION- 2018-19, CLASS-IV SUB MARCH/APRIL JUNE/JULY AUGUST/SEPTEMBER OCTOBER/NOVEMBER DECEMBER/JANUARY FEB. Le-2 Nouns: Compound, Collective,

More information

HERITAGE XPERIENTIAL LEARNING SCHOOL IX- HALF YEARLY SYLLABUS SESSION SNO SUBJECT HALF YEARLY SYLLABUS

HERITAGE XPERIENTIAL LEARNING SCHOOL IX- HALF YEARLY SYLLABUS SESSION SNO SUBJECT HALF YEARLY SYLLABUS HERITAGE XPERIENTIAL LEARNING SCHOOL IX- HALF YEARLY SYLLABUS SESSION- 2018-19 SNO SUBJECT HALF YEARLY SYLLABUS 1 Social Science 1. India Size and Location 2. Physical features of India 3. Drainage 4.

More information

Cambridge GRADE 4 Semester 2 nd EXAMINATIONS (1st February 2019)

Cambridge GRADE 4 Semester 2 nd EXAMINATIONS (1st February 2019) Page 1 of 6 Cambridge GRADE 4 Semester 2 nd EXAMINATIONS (1st February 2019) SUBJECT First Language ENGLISH PAPER TITLE ENGLISH PAPER 1 Non-Fiction TIME: 1 hour MARKS: 50 marks SECTION A: Reading Comprehension(

More information

शरद क ऱ न ग हक यय क त त य

शरद क ऱ न ग हक यय क त त य शरद क ऱ न ग हक यय क त त य बड़ ई क म त र ऱग कर क ई प च शब द लऱख ककन ह प च शब द क व ऱ म शब द लऱख ककन ह प च शब द क पय य च शब द लऱख न क त ऱ क ई प च शब द लऱख सद व षय पर क ई कव त लऱख च द रबब द ऱग कर क ई प च शब

More information

Address Change Process Related Documents

Address Change Process Related Documents Address Change Process Documents Back ground and Requirement of Policy-: RKCL is running its operations through its ITGKs. These ITGKs are working on certain premises, some of them in rented premise and

More information

Class 12 a homework. English holiday home work

Class 12 a homework. English holiday home work Class 12 a homework English holiday home work Class- XII(A) QUESTIONS from literature: 1. A. How did Mr. Hamel give the shocking news to the students and the villagers and with what effect? ( SAQ 3 MARKS)

More information

DRAFT(S) IN WIDE CIRCULATION. Reference Date MSD 2/T Quality Management Sectional Committee, MSD 2

DRAFT(S) IN WIDE CIRCULATION. Reference Date MSD 2/T Quality Management Sectional Committee, MSD 2 DRAFT(S) IN WIDE CIRCULATION Reference Date MSD 2/T-63 21-05-2018 Quality Management Sectional Committee, MSD 2 All members of Quality Management Sectional Committee, MSD 2, its subcommittee, MSD 2:1 Management

More information

epaper dainik jagran D9C1977F14595A8FA013E206E Epaper Dainik Jagran 1 / 6

epaper dainik jagran D9C1977F14595A8FA013E206E Epaper Dainik Jagran 1 / 6 Epaper Dainik Jagran 1 / 6 2 / 6 3 / 6 Epaper Dainik Jagran Jagran epaper - Dainik Jagran, Hindi newspaper known worldwide for its largest readership, is available now online at epaper.jagran.com, a hindi

More information

National Informatics Centre, Pune

National Informatics Centre, Pune USER MANUAL Admission Portal (Version 1.) School Education And Sports Department Government of Maharashtra January 2015 (NIC-PUNE-G3-AdmissionPortal-UM001) National Informatics Centre, Pune No part of

More information

Samrudhi Computers, Ladnun

Samrudhi Computers, Ladnun Android इत ह स ऍण ड र इड त नक स पर आध रर एक ओपर ट ग तसस टम ह, ज म ख य म ब इ फ न और ट ब ट क प य टर ज स टचस र न उपकरण क त ए बन य गय ह अक ट बर 2003 म स य क त र ज य अम ररक क क त फ तन य र ज य क प आल ट न मक

More information

LANGUAGE IN INDIA Strength for Today and Bright Hope for Tomorrow Volume 13 : 1 January 2013 ISSN

LANGUAGE IN INDIA Strength for Today and Bright Hope for Tomorrow Volume 13 : 1 January 2013 ISSN LANGUAGE IN INDIA Strength for Today and Bright Hope for Tomorrow Volume ISSN 1930-2940 Managing Editor: M. S. Thirumalai, Ph.D. Editors: B. Mallikarjun, Ph.D. Sam Mohanlal, Ph.D. B. A. Sharada, Ph.D.

More information

Draft Indian Standard METHODS OF TEST FOR RUBBER AND PLASTICS HOSES PART 5 DETERMINATION OF ABRASION OF LINING 2. PCD 29(10444) C/ ISO 4650 : 2012

Draft Indian Standard METHODS OF TEST FOR RUBBER AND PLASTICS HOSES PART 5 DETERMINATION OF ABRASION OF LINING 2. PCD 29(10444) C/ ISO 4650 : 2012 य पक पच ल न मस द स द भ र ख र ण स ञ पन ददन क प स ड 29/ट (1-8) स 04-07-2016 तकन क सम तत: प स ड 29 र ष त 1 प र ल यम, क य एव स ब ध त उ प व षवग प पषद व प स स क सव य 2 प स 29 सलमतत क सम त सव य 3 ध दखन व सग तनक

More information

It is an entirely new way of typing and hence please go through the instructions to experience the best usability.

It is an entirely new way of typing and hence please go through the instructions to experience the best usability. Panini Keypad allows you to write in all languages of India on the phone, fast and easily without the need of printed characters on the keypad. It is based on a patented invention of statistical predictive

More information

ELECTION PERSONNEL DEPLOYMENT SYSTEM

ELECTION PERSONNEL DEPLOYMENT SYSTEM ELECTION PERSONNEL DEPLOYMENT SYSTEM (EPDS) Uttar Pradesh Vidhan Sabha General Election 2017 By National Informatics Centre UP State Unit, Lucknow User Manual (Version 1.0.01) ELECTION PERRSONNEL RSONNEL

More information

SAMPLE PAPER FOUNDATION OF INFORMATION TECHNOLOGY Class IX Time :3 hrs. M.M: 90

SAMPLE PAPER FOUNDATION OF INFORMATION TECHNOLOGY Class IX Time :3 hrs. M.M: 90 SAMPLE PAPER - 2014 FOUNDATION OF INFORMATION TECHNOLOGY Class IX Time :3 hrs. M.M: 90 General Instructions: All the questions are compulsory Question paper consists of two sections, Section A and Section

More information

QUOTATION NOTICE NO. 1 FOR

QUOTATION NOTICE NO. 1 FOR QUOTATION NOTICE NO. 1 FOR 2013-14 The Executive Engineer, Tilari Canal Division No.1, Charathe-Sawantwadi, Dist-Sindhudurg, Pin Code No. 416510, Telephone No 02363/272213 is inviting sealed quotations

More information

Shreejee International School Syllabus ( ) Grade-IX. English

Shreejee International School Syllabus ( ) Grade-IX. English Shreejee International School Syllabus (2016-2017) Grade-IX English MONTH APRIL LITERATURE READER Prose - How I Taught My Grandmother to Read Poetry - The Brook Prose - A Dog Named Duke MAIN COURSE BOOK

More information

Updated SCIM Input Method

Updated SCIM Input Method Updated SCIM Input Method Basanta Krishna Shrestha basanta@mpp.org.np Madan Puraskar Pustakalaya, Nepal Abstract The document is an updated report on the SCIM Input Method. The updated version of the input

More information

Kendriya Vidyalaya Nagrota HOLIDAY HOMEWORK ( ) Class -6 TH -A

Kendriya Vidyalaya Nagrota HOLIDAY HOMEWORK ( ) Class -6 TH -A Kendriya Vidyalaya Nagrota HOLIDAY HOMEWORK ( 2018-19) Class -6 TH -A SUBJECT- ENGLISH 2 WORDS MEANING 2 SYNONYMS 2 ANTONYMS [EACH DAY ] 1 PAGE FOR WRITING EACH DAY 1 STORY WRITING 1 ESSAY ON THE TOPIC

More information

Marathi Indic Input 3 - User Guide

Marathi Indic Input 3 - User Guide Marathi Indic Input 3 - User Guide Contents 1. WHAT IS MARATHI INDIC INPUT 3?... 2 1.1. SYSTEM REQUIREMENTS... 2 1.2. APPLICATION REQUIREMENTS... 2 2. TO INSTALL MARATHI INDIC INPUT 3... 2 3. TO USE MARATHI

More information

INDIAN AGRICULTURAL STATISTICS RESEARCH INSTITUTE LIBRARY AVENUE: NEW DELHI WALK- IN- INTERVIEW. Qualifications

INDIAN AGRICULTURAL STATISTICS RESEARCH INSTITUTE LIBRARY AVENUE: NEW DELHI WALK- IN- INTERVIEW. Qualifications INDIAN AGRICULTURAL STATISTICS RESEARCH INSTITUTE LIBRARY AVENUE: NEW DELHI-110012 WALK- IN- INTERVIEW A walk-in interview will be held for the post of One(01) Young Professionals-II at ICAR-IASRI, Pusa,

More information

Performance Evaluation of Search Engines for Hindi Language Information Retrieval

Performance Evaluation of Search Engines for Hindi Language Information Retrieval Kumar Sourabh 1 and Vibhakar Mansotra 2 2 Associate Professor, 1,2 Department of Computer Science and IT, University of Jammu, Jammu 180001 J&K India 1 kumar9211.sourabh@gmail.com and 2 vibhakar20@yahoo.co.in

More information

Make a project in Accountancy on Comprehensive Problem which consists. of Journal, Ledger, Trial Balance, Trading & Profit and Loss A/c and

Make a project in Accountancy on Comprehensive Problem which consists. of Journal, Ledger, Trial Balance, Trading & Profit and Loss A/c and HOME ASSIGNMENT OF XI COMMERCE BUSINESS STUDIES AND ACCOUNTANCY Make a project in Accountancy on Comprehensive Problem which consists of Journal, Ledger, Trial Balance, Trading & Profit and Loss A/c and

More information

क पय न म ल ख त दस त व जक क त क कव प रव जसय वलमनत औ व च प रव जसय वलमनत, एम एव ड 5 त य ककय ह क रम

क पय न म ल ख त दस त व जक क त क कव प रव जसय वलमनत औ व च प रव जसय वलमनत, एम एव ड 5 त य ककय ह क रम व य पक प पक च ल म म द द र भ द म प ए एदड 5/ ट 143 01-01-2019 दर द स य प र खम औ द लम व षय दम त, ए एदड 5 प रप शम औ ग र फ प प र द य ग प व षय दम त, ए एद ड 6 प रब ध औ त र पकच ष, ए एदड द अन य च प प र य मह द य/मह

More information

(क) धरत क क न -क न कब ज ग उठत ह? (ख) स रज कह चमक? (ग) क म य न ककस द ड़ म भ ग नलय? (घ) र प क य ल य थ? (ड) श श क न ल य?

(क) धरत क क न -क न कब ज ग उठत ह? (ख) स रज कह चमक? (ग) क म य न ककस द ड़ म भ ग नलय? (घ) र प क य ल य थ? (ड) श श क न ल य? STD 3 rd SUBJECT Hindi F.A. 1 Exam DATE - Marks - 30 प र.१ सह उत तर पर ( ) क ननश न लग इए (५) (क)क य द खकर आन द आ रह थ? सब त ल बज रह थ ( ) सब ख ल रह थ ( ) सबक ननम ब नगर रह थ ( ) (ख) श श क न ल य? र प ( )

More information

Creation of a Complete Hindi Handwritten Database for Researchers

Creation of a Complete Hindi Handwritten Database for Researchers Journal of Pure and Applied Science & Technology Copyright 2011 NLSS, Vol. 8(1), Jan 2018, pp. 52-60 Creation of a Complete Hindi Handwritten Database for Researchers Rama Gaur 1, * and Dr. V.S. Chouhan

More information

Computer Operator Practical Examination Sample Set - 06

Computer Operator Practical Examination Sample Set - 06 Public Service Commission Computer Operator Practical Examination Sample Set - 06 F.M.: 30 P.M.:15 Time: 30 Minutes Attempt all of the following questions: Create a folder on desktop and name it your symbol

More information

Personal Letter. Letter - Address एन. सरब, ट यर स ऑफ म नह टन, ३३५ म न स ट र ट, न य य र क एन.य. ९२९२६

Personal Letter. Letter - Address एन. सरब, ट यर स ऑफ म नह टन, ३३५ म न स ट र ट, न य य र क एन.य. ९२९२६ - Address एन. सरब, ट यर स ऑफ म नह टन, ३३५ म न स ट र ट, न य य र क एन.य. ९२९२६ Standard English Address format: name of recipient street number + street name name of town + region/state + zip/postal code.

More information

INDIAN INSTITUTE OF MANAGEMENT INDORE

INDIAN INSTITUTE OF MANAGEMENT INDORE भ रत य प रब ध स स थ न इ द र INDIAN INSTITUTE OF MANAGEMENT INDORE प रब ध श खर, र ऊ-प थमप र र ड, इ द र 453 556 PRABANDH SHIKHAR, RAU-PITHAMPUR ROAD, INDORE 453 556 फ न PHONE: +91-731-2439630/2439631; फ

More information

Syllabus for Audit Assistant

Syllabus for Audit Assistant Syllabus for Audit Assistant i) Hindi & English Hindi तत सम,तद भव ऩयय यवयच,ववऱ म म हयवर और ऱ क क ततयय श द ध,-अश द ध वयतय स धध-ववच छ द अऱ कयर और समयस वचन, लऱ ग अन कयर थ और वयतय क लऱए एक शब द गद यय श आधयररत

More information

भ रत य प रब ध स स थ न इ द र

भ रत य प रब ध स स थ न इ द र भ रत य प रब ध स स थ न इ द र INDIAN INSTITUTE OF MANAGEMENT INDORE प रब ध श खर, र ऊ-प थमप र र ड, इ द र 453 556 PRABANDH SHIKHAR, RAU-PITHAMPUR ROAD, INDORE 453 556 फ न PHONE: +91-731-2439630/2439631; फ

More information

Mobile (Prepaid)Operator Margin Structure

Mobile (Prepaid)Operator Margin Structure Big Shop Recharge Off. No 1355 Anusmruti Sadan Back Side school No 4 Charholi RD Alandi devachi Tal - Khed Dist - Pune MH -412105 Mo No- 8308287889 / 7620405353 /7620045353 E-mail - central.tele7@gmail.com

More information

ROM (Read-only memory) Definition in Hindi

ROM (Read-only memory) Definition in Hindi ROM (Read-only memory) Definition in Hindi ROM, Read only Memory क short न म ह ROM क प य टर म builtin memory ह त ह ज सक ड ट read only ह त ह एव उसम क छ भ write or modify नह ककय सकत Generally, ROM क computer

More information

Block-2- Making 5 s. १. ट ल ज कर and 10 s Use of a and an number names

Block-2- Making 5 s. १. ट ल ज कर and 10 s Use of a and an number names SYLLABUS FOR STD I ACADEMIC YEAR 2016-17 Month English Math EVS Hindi Marathi sight words Block-1 Numbers 0 Block-1- My Family svar ³A sao AÁ (ग ण )एक ह त पर to 10 Block-2- My School Vowels Block-2- Making

More information

Join Consecutive Terms Concatenation of consecutive terms is performed at two stages.

Join Consecutive Terms Concatenation of consecutive terms is performed at two stages. Working Note FIRE 2013 Improving Accuracy of SMS based FAQ retrieval Anwar Shaikh (Delhi Technological University, Delhi) Rajiv Ratn Shah (National University of Singapore, Singapore) Rahis Shaikh (Vellore

More information

INDIAN INSTITUTE OF MANAGEMENT INDORE

INDIAN INSTITUTE OF MANAGEMENT INDORE भ रत य प रब ध स स थ न इ द र INDIAN INSTITUTE OF MANAGEMENT INDORE प रब ध श खर, र ऊ-प थमप र र ड, इ द र 453 556 PRABANDH SHIKHAR, RAU-PITHAMPUR ROAD, INDORE 453 556 फ न PHONE: +91-731-2439630/2439631; फ

More information

ASP.NET using C# Notes

ASP.NET using C# Notes Architecture of ADO.NET: Unit-3 The full form of ADO.NET is ActiveX Data Object.Net. Basically it is container of all the standard classes which are responsible for database connectivity of.net application

More information

Kendriya Vidyalaya No.2 Pondicherry

Kendriya Vidyalaya No.2 Pondicherry Kendriya Vidyalaya No.2 Pondicherry Winter Holiday Home Work 2016 2017 (Secondary Classes) Class: VI A & B Subject English Topics Home test to be done by the students in the given set of questions under

More information

Digital MLS. A Quick Start Guide for Respected Members of Legislative Assembly and Council to submit devices online into MKCL s Digital MLS

Digital MLS. A Quick Start Guide for Respected Members of Legislative Assembly and Council to submit devices online into MKCL s Digital MLS Digital MLS A Quick Start Guide for Respected Members of Legislative Assembly and online into MKCL s Version 1.0 THIS QUICK START GUIDE WILL EXPLAIN IN SHORT ABOUT: HOW TO LOG INTO DIGITAL-MLS SYSTEM,

More information

क न द र य सम द र म त स ययक अन स ध न स स थ न

क न द र य सम द र म त स ययक अन स ध न स स थ न F. No. 41-2/2014-P Dated: 11.12.2014 Addendum In continuation of this office tender Notice of even no dated 20.11.2014 for installation and Commissioning of Security Surveillance System at CMFRI, Hqrs.

More information

Enquiry Generation Details

Enquiry Generation Details Enquiry Generation Details PDF processed with CutePDF evaluation edition www.cutepdf.com http://past.ipr.res.in/limitedenquirynew.jsp Page 1 of 4 23-07-2018 ल म अन स ध न स थ न INSTITUTE FOR PLASMA RESEARCH

More information

F. No. I(7)/5/Audit-I/Systems/16-17 Date: 18 th July 2016 TENDER NOTICE

F. No. I(7)/5/Audit-I/Systems/16-17 Date: 18 th July 2016 TENDER NOTICE आय क त क य ऱय, क न द र य उत प द श ल क एव स व कर, ऱ ख पर -I, 301, ज.एन.एफ.स. ट वर, एस. ज. ह इव, अहमद ब द, ग जर त- 380 054 OFFICE OF THE COMMISSIONER OF CENTRAL EXCISE & SERVICE TAX, AUDIT-I, AHMEDABAD 301,

More information

Vedant Public School Isanpur, Ahmedabad.

Vedant Public School Isanpur, Ahmedabad. Class- 1 st Vedant Public School Isanpur, Ahmedabad. FA-4 Paper Style English Grammar (L- 4, 5, 6) Q.1 MCQs (10) Q.1 Blanks with in, on, under. (05) Q.2 Answer the questions. (04) Q.3 Fill in the blanks

More information

ल उड पर ईम ल स य शन सव र स व, ए ट व यरस और ए ट प म म ड य ल क स थ क लए न वद न टस

ल उड पर ईम ल स य शन सव र स व, ए ट व यरस और ए ट प म म ड य ल क स थ क लए न वद न टस भ रत य कप स नगम ल मट ड THE COTTON CORPORATION OF INDIA LTD. क पस भवन, ल ट न बर 3 ए, स टर 10, स ब ड ब ल प र, KAPAS BHAVAN, Plot No: 3A, Sector 10, CBD Belapur. नव म बई 400614 NAVI MUMBAI 400 614. Ph.022-27579217

More information

INSTITUTE FOR PLASMA RESEARCH. An Aided Institute of Department of Atomic Energy, Government of India

INSTITUTE FOR PLASMA RESEARCH. An Aided Institute of Department of Atomic Energy, Government of India Enquiry Generation Details PDF processed with CutePDF evaluation edition www.cutepdf.com http://past.ipr.res.in/limitedenquirynew.jsp Page 1 of 4 09-05-2018 ल म अन स ध न स थ न INSTITUTE FOR PLASMA RESEARCH

More information

Instructions for filling application for IISER Admission 2019

Instructions for filling application for IISER Admission 2019 Instructions for filling application for IISER Admission 2019 The link to the registration page is provided at IISER admissions website. Please click on the Registration button available at on https://www.iiseradmission.in/?page_id=1509.

More information

KENDRIYA VIDYALAYA NO. 2, DELHI CANTT Holiday Home Work: Summer Vacation ( )

KENDRIYA VIDYALAYA NO. 2, DELHI CANTT Holiday Home Work: Summer Vacation ( ) KENDRIYA VIDYALAYA NO. 2, DELHI CANTT Holiday Home Work: Summer Vacation (2018-19) Subject:-English 1. Read Novel 'The Invisible Man ' by H.G Wells 2. Write summary of any twenty chapters 3. Do Note Making

More information

Blue-Print SUMMATIVE ASSESSMENT II MATHEMATICS Class IX

Blue-Print SUMMATIVE ASSESSMENT II MATHEMATICS Class IX Blue-Print SUMMATIVE ASSESSMENT II MATHEMATICS Class IX Topic/Unit VSA SA (I) SA (II) LA Total Algebra (Linear equations in two variables) Geometry (Quadrilaterals, Area, Circles, Constructions) Mensuration

More information

As per given sort order at Pg 58, kindly mention position of standalone क in tabular format. BY Others

As per given sort order at Pg 58, kindly mention position of standalone क in tabular format. BY Others Page S. No. Version No. Concern Status 1 1.4.8 The draft should be vetted by two other independent wellknown Pending linguists, other than author(s) and their details to be shared. By TDIL Programme 2

More information

BUREAU OF INDIAN STANDARDS

BUREAU OF INDIAN STANDARDS BUREAU OF INDIAN STANDARDS Manak Bhavan, 9 Bahadur Shah Zafar Marg New Delhi 110002 Phones 2323 0131 TeleFax +91 11 2323 1192 Website : www.bis.org.in 2323 3375 Extn 4284 email : eetd@bis.org.in य प च

More information

(सतह ख रदर पन नय ण क लए स एनस मश न ग म कट ई क प र म टस क य ग मक ज च) Dheeraj Soni

(सतह ख रदर पन नय ण क लए स एनस मश न ग म कट ई क प र म टस क य ग मक ज च) Dheeraj Soni Experimental Investigation of Cutting Parameters in CNC Machining For Controlled Surface Roughness (सतह ख रदर पन नय ण क लए स एनस मश न ग म कट ई क प र म टस क य ग मक ज च) Dheeraj Soni Thesis Master of Technology

More information

Natural Language Interface for Databases in Hindi Based on Karaka Theory

Natural Language Interface for Databases in Hindi Based on Karaka Theory Natural Language Interface for Databases in Hindi Based on Karaka Theory Aanchal Kataria M.Tech Scholar Department of Computer Science and Applications Kurukshetra University Kurukshetra, Haryana, India

More information

Sample Copy. Not for Distribution.

Sample Copy. Not for Distribution. क क i Publishing-in-support-of, EDUCREATION PUBLISHING RZ 94, Sector - 6, Dwarka, New Delhi - 110075 Shubham Vihar, Mangla, Bilaspur, Chhattisgarh - 495001 Website: www.educreation.in Copyright, Authors

More information

(स म लसन ह ) भ रत य म नक ब य र पश च म क ष त र य क य लय प रय गश ल स दभ : प क ष क प र /प र म य /

(स म लसन ह ) भ रत य म नक ब य र पश च म क ष त र य क य लय प रय गश ल स दभ : प क ष क प र /प र म य / भ रत य म नक ब य र पश च म क ष त र य क य लय प रय गश ल स दभ : प क ष क प र /प र म य /7126926 16.11.2015 व षय: ह ई फ श क स ल ब र टर इ ड य प र इव ट लललमट, प ण क स श ध त स क प यह पररपत र ह ई फ ज क स ल ब र टर

More information

UPPCL Response Sheet Note: The answer key provided are provisional and subject to change after the finalization of objections

UPPCL Response Sheet Note: The answer key provided are provisional and subject to change after the finalization of objections RESPONSE SHEET UPPCL Response Sheet Note: The answer key provided are provisional and subject to change after the finalization of objections Hall Ticket No. 2103122509 Exam Date 12 11 2016 Assessment Name

More information