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

Size: px
Start display at page:

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

Transcription

1 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 to all parents to encourage my kids to do the given assignment and learn by heart which will keep them in touch with the syllabus. The school will remain closed for summer vacation from May 19, 2017 and will reopen on July 3, ENGLISH NOTE: Do the following assignment in together with Assignment book Reading Assignment Unit - Assignment-2 Unit Assignment-3 Unit Assignment-4 A11 A18 A19- A-26 A27-A-34 Writing Assignment Literature and Novel Assignment Unit - Assignment-1 Unit Assignment-2 Unit Assignment-3 Unit Assignment-4 Unit - Assignment-1 Unit Assignment-2 Unit Assignment-6 Unit Assignment-7 Unit Assignment-12 Unit Assignment-13 B35 B-38 B-39-B-42 B-43-B-46 B-47- B-50 C63 c66 C67-C-70 C83 C86 C87-C92 C115-C-118 C119-C 122 Novel Unit Assignment 1 C141- C-144 Q 2:-Read the following questions and write the answers in NoteBook. (World Limit words) 1. Who was Sarah? Describe her relationship with silas? 2. During his stay in Lantern yard, Silas was considered a divine spirit what had made than people believe Like to this? 3. How did the village people react when Silas was successful in treating a woman named sally Oates? 4. What is point of argument between the Cass brothers? (Chapter-3) 5. To whom does Dunstan agree to sell wildfire? What is the agreement? 6. What does the author tell us about Rainbow? 7. What kind of conversation was going on at the inn before silas reached there? 8. How does Silas suspicion about Jem Rodney turnout to be worthless? 9. Who offers himself to be appointed deputy constable? Why does Mr. Macey object to it? 10. Why were country people suspicious of linen weaver? Prepare a nice book cover for any internationally famous book of your choice on a A3 size Drawing sheet and write the synopsis of the book in 200 words on a page attached to it. Write an article in soft as well as the hard copy, on a Global Social Issue ( Example: Women Empowerment, Terrorism, Pollution, Global Warming, Need of Renewable Energy Sources, conservation of resources etc.). Word Limit: 200 words ( The best entries will be placed in School's Blog and School's Magazine)

2 POLITICAL SCIENCE Do the following questions in fair notebook 1. Explain the concept of arms control. 2. Explain the middle East alliance system of USA. 3. Write two objectives of NAM. 4. What is Equal distance theory? 5. Name the key founders of NAM. 6. What do you understand by socialist bloc? 7. In what way soviet union lagged behind the west. 8. What is meant by Shock Therapy? 9. What was the largest garage sale in history? 10. Discuss the economic features of shock therapy. 11. What do you mean by U.S Hegemony? 12. Which event does 9/11 refers to? 13. What do you know about First Gulf was? 14. What are global Public goods? 15. Examine the US military action during Clinton Era. 16. What do you mean by British Paramountary? 17. What was the immediate outcome of Two Nation Theory? 18. Explain the concept of Two Nation Theory. 19. What was the issue related to Punjab and Bengal? 20. What was the main provision of the agreement instrument of accession? 21. Who founded the Indian National congress and why? 22. What do you mean by Charismatic leader oriented Party? 23. Under what conditions did the Indian party system originate? 24. When did the Election commission come into existence? Who was the first chief election commissioner? 25. Give two reasons for a dominant one party system in India. 26. Why did India adopt planning? 27. When and How was the planning commission set up? 28. Give the composition of planning commission. 29. Why did India opt for more emphass on the public sector?emphasis 30. What is plan holiday? Why some years are called plan holidays? Learn the syllabus done so far. Read newspaper daily. Do all the objective exercises of h-1 to 4 of the book (Indian politics since independence in Notebook) INFORMATIC PRACTICES Q.1 What is procedural programming?how is it different from object oriented programming? Q.2 What is a class? What is an object? Give examples? Q.3 What is Inheritance? What is need of Inheritance? Q.4 Compare exit controlled and entry controlled loop. Q.5 What is use of presence of break in switch statement? Q.6.What will be output of following code segment : int num=20; if (num==20) l1.settext( equals ) l1.settext( not equal ); Q.7 What is output of following code : jtextfield1.settext( Java \n Object \t Programming \n); Q.8 How many times the following loop is executed : for (int a=50; a>=0; ++a) { l1.settext(a); } Q.9 Convert the following into equivalent switch case :

3 int a=integer.parseint(t1.gettext()); if (a==1) l1.settext( One ); if (a==2) l1.settext( Two ); if (a==3) l1.settext( Three ); l1.settext( Four ); Q.10. Name any two native classes in Java and also name one function of each. Q.11 How is data abstraction.how class in JAVA implement sit. Q.12 What is data encapsulation? Show how a class implements it. Q.13 Compare do while and while loop. Q.14What is use of default in switch statement? Q.15.What will be output of following code segment : int x=10; if (x>=10) l1.settext( Allowed entry ) l1.settext( Not allowed ); Q.16What is output of following code : jtextfield1.settext( Informatics\tObject \nprogramming\n ); Q.17 How many times the following loop is executed : for (int a=100; a>=0; ++a) { tl1.settext(a); } Q.18 Convert the following into equivalent switch case : int x=integer.parseint(t1.gettext()); if (x==100) l1.settext( Hundred ); if (x==200) l1.settext( Two Hundred ); if (x==300) l1.settext( Three Hundred ); l1.settext( Invalid ); Q.19. Name and also give purpose of any two functions in Java that belong to two classes? Q.20. Name the control to which the following methods belong to.also explain the following methods. i) is Selected() ii)setenabled() HOTS : Q1. While working in Net beans, Rajmeeta included a list box in the form. Now she wants the list of her` friends names to be displayed in it. Which property of listbox control should she used to do this? Q2. What is the purpose of default clause in a switch statement? Q3. How many times will each of the following loop execute? Which one of these is an entry controlled loop & which one is an exit controlled loop? Loop 1 int sum 0, i=5; do {sum += i; i++ ; } while ( i<5); Loop 2 int sum 0, i=5; while (i<5) {sum += I ; i++ ; } Q4. What will be the content of jtextfield1 after executing the following code: int num=6;

4 num=num+1; If (num>5) jtextfield1.settext(integer.tostring(num)); jtextfield1,settext(integer.tostring(num+5)); Q5.What will be the contents of jtextarea1 after executing the following statement; jtextarea1.settext( object\n oriented \t programming ); Q.6 Rewrite the following program code using switch statement : if (d==1 ) day= Monday ; if (d==2) day= tuesday ; if (d==3); day= wednesday ; if d= - ; day= thursday ; Q7.The following code has some errors (s). rewrite the correct code underlining all the corrections made: int i= 2 ; j = 5 ; while ( j > i) {j Textfield1.getText( j is greater ) ; j-- ; ++I ; } Joptionpane.showMessageDialog( Hello ) ; Q8.What will be the contents of jtextfield1 and jtextfield2 after executing the following code : string s = sun micro system ; jtextfield1.settext(s.length() + ); jtextfield2.settext(s.tolowercase()); jtextfield2.settext(s.touppercase()); jtextfield2.settext(s.concat( ** )); WEB TECHNOLOGY Do the given questions on notepad, access and then attach in a file. Unit 1 Ch-1 [pg Q.2, 11, 15,,16] Ch-2 [pg Q.1, 2] of lab exercises. Unit 2 Ch-1 [pg Q.82, 84, 87, 90] Ch-2 [pg Q.31, 35, 36] Unit 3 Ch-1 [pg Q. 31, 35, 36] Ch-2 [pg Q. 108, 110 Pg Q. 28, 30, 31, 37, 38, 39] Write the syntax of: 1.if 2.if- 3. Else-if ladder 4. Switch case 5. 3 types of loops 6. Array Write all the HTML tags with its attributes. Explain all the tags with example. Learn all solved question answers of covered syllabus: unit 1 (ch-1,2,3), unit 2 (ch-1,2) and unit 3 (ch-1,2,3)

5 Hindi प रश न ०१. पत र: प रध न च र य क चर त र प रम ण पत र क ल ए पत र आपक क ष त र म लचकनग लनर क बढ़त प रभ व क मद द नज़ खत ह ए सम प दक क पत र ल ख आपक घ क प न क लब ठ क नह आर ह इसक ल ए ज लवभ ग क पत र ल ख आपक क ष त र म गन व ब ज़ क क ण अस लवध ह ह ह इस ह त स ब लधत अलधक क पत र ल ख क र य र सह र क पद ह त आव दन पत र प रश न ०२. लनब ध: क मक ज न क समस य ए ब ट बच ओ, ब ट पढ ओ इ ट न टक उपर लगत प रश न ०३. प ठ १-५ गद य: प रश न उत त र द क प रश न ०४. कलवत - त स द स, क शव, घन न द: प रश न उत त र द क प रश न ०५. क शव, त स द स, घन न द: ज वन ल ख औ र द क

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

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

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

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

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

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

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

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

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

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

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

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

व ड ज एक स प म इनस क र प ट क -ब डड सक र य करन क ल ए 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

प ज ड /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

Table Joins and Indexes in SQL

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

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

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

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

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

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

KENDRIYA VIDYALAYA No. 2, Delhi Cantt. 10 AUTUMN BREAK: SHIFT 2 - HOLIDAYS HOMEWORK. Class: XI Subject : HINDI Class: XI क न द र य व द य ऱय स -२ द ल ऱ छ न ( द व त य प ऱ ) श र य अ क श ग हक यय (२८ ससतम बर ०८ अक ट बर २०१४) व षय दहन द क - ग य र (दहन द -ऐच छछक) १. कब रद स, स रद स, द व, ऩदम कर, स ममत

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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/ट -122 28-01-2019 कन क सवमव : एलआईट ड 17 ऩ न व ऱ क न म: 1) स चन प रण ल स रक ष एव ब य म ट र क ववषय सवमव, एऱआईट ड 17 2) इऱ क ट र ननक

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

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

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

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

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

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

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

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

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

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

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

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

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

रण ल सर ष एव ब य मद क ववषय सममत एल टई लए,17 2) इल तनक एव स चन र य ग क वव पररषद एल टई लएसए क रध न सद य य पक पर च लन मस द रलख रषण स ञ पन स द भ तकन क सममतत : एलआईट ड 17/ट - 81 स 106 एलआईट ड 17 -प न ददन क 31 अग त 2016 व ल क न म: 1) न रण ल सर ष एव ब य मद क ववषय सममत एल टई लए,17 3) गच रखन व ल 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- 190, 02 01 2019 Material Handling Systems and Equipment Sectional Committee, MED 07 1) All Members of Mechanical Engineering Division

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

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

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

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

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

Note Books. Central Academy Sr. Sec. School, (10+2) Vijay Nagar, Jabalpur List of Books For the Session Class : Nursery Date : 02/03/2017

Note Books. Central Academy Sr. Sec. School, (10+2) Vijay Nagar, Jabalpur List of Books For the Session Class : Nursery Date : 02/03/2017 Class : Nursery Date : 02/03/2017 1. Alphabet Popcorn 2. Learn to write - 1 3. English writing 4. Rhymes with Rhythm - A Clever Ants 1. My book of numbers-1 2. Maths No. writing 1. क ल र भ ग -1 Clever

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

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

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

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

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

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

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

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

More information

2 Types of chart are : A) bar chart B) pie chart C) column chart D) all of the above

2 Types of chart are : A) bar chart B) pie chart C) column chart D) all of the above ल क स व आय ग र जप अन कत त य ण, ब बध / य.- स सद स व,सह यक क य टर अपर टर पदक तय ग मक ल खत पर समय :- ४५ मन ट म त :- २०७०/०२/२५ बषय :- स व स ब ध प ण क :- ५० 1 We use.. operator to multiply in MS Excel. A)

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

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

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

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

Downloaded from

Downloaded from INFORMATICS PRACTICES (05) SAMPLE PAPER CLASS XII Time: 3HRS MM: 70 Q- Answer the following questions a) Name any two phone operating system(floss). b) What is a character encoding system? c) Mr. Rohan

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

A HINDI LANGUAGE PERSONAL ASSISTANT FOR ANDROID

A HINDI LANGUAGE PERSONAL ASSISTANT FOR ANDROID International Journal of Computer Engineering and Applications, Volume IX, Issue III, April 15 www.ijcea.com ISSN 2321-3469 Asha Bharambe 1, Adwait Vyas 2, Vedant Pandit 2, Chinmay Pai 2, Sanjay Wadhwa

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

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

Voice Based Information System For Developing Nations. 14 th February, 2014 Siddhartha Asthana (http://siddasthana.wordpress.com/)

Voice Based Information System For Developing Nations. 14 th February, 2014 Siddhartha Asthana (http://siddasthana.wordpress.com/) Voice Based Information System For Developing Nations 14 th February, 2014 Siddhartha Asthana (http://siddasthana.wordpress.com/) Outline Motivation Aim Prior Work Research Direction Road Map Experiments

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

Article Date Headline / Summary Publication Edition Page No. Journalist. Mainlines. The Free Press Journal. Regional.

Article Date Headline / Summary Publication Edition Page No. Journalist. Mainlines. The Free Press Journal. Regional. Article Date Headline / Summary Publication Edition Page No. Journalist Mainlines 2 Aug 2018 Tata Power dedicates India's first 'All-women' Customer Relations Centre The Free Press Journal 24 Bureau 1

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

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

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

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

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

Samrudhi Computers, Ladnun

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

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

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

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

(भ रत सरक र क उपकर म)

(भ रत सरक र क उपकर म) (भ रत सरक र क उपकर म) क ष तर य क य र लय, 201-202,र हत ह उस,3- ट लस ट य म गर, नई दल ल - 110001 द रभ ष : 011-23314164, 23317666 फ क स : 011-23317197 ईम ल : ro_dli @itiltd.co.in ( A Govt. of India Undertaking)

More information

DS-IASTConvert: An Automatic Script Converter between Devanagari and International Alphabet of Sanskrit Transliteration

DS-IASTConvert: An Automatic Script Converter between Devanagari and International Alphabet of Sanskrit Transliteration DS-IASTConvert: An Automatic Script Converter between Devanagari and International Alphabet of Sanskrit Transliteration Subhash Chandra, 2 Vivek Kumar, 3 Anju Assistant Professor, 2 Doctoral Research Scholar,

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

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

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

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

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

User Manual: Online Licensing Grant/Renewal for Sale (Retail, Wholesale, Retail & Wholesale) of Drugs

User Manual: Online Licensing Grant/Renewal for Sale (Retail, Wholesale, Retail & Wholesale) of Drugs DRUG CONTROL ORGANIZATION Swasthya Bhawan, Tilak Marg, Jaipur User Manual: Online Licensing Grant/Renewal for Sale (Retail, Wholesale, Retail & Wholesale) of Drugs Contents Important (before you start

More information

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

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

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

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

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

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

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 TeleFax +91 11 2323 1192 Website : www.bis.org.in email : eetd@bis.org.in व य पक पर च लन म मस द रल ख र षण स

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

Deep Learning Based Large Scale Handwritten Devanagari Character Recognition

Deep Learning Based Large Scale Handwritten Devanagari Character Recognition Deep Learning Based Large Scale Handwritten Devanagari Character Recognition Shailesh Acharya Institute Of Engineering Tribhuvan University Kathmandu, Nepal sailes437@gmail.com Ashok Kumar Pant Institute

More information

Holidays HomeWork

Holidays HomeWork Holidays HomeWork 2018-19 Class IX Computer Write answers of the following questions in class notebook. Q1.What is social networking? What are its benefits? Q2.What are the dangers associated with social

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

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

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

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

Proposal to encode the TAKRI VOWEL SIGN VOCALIC R

Proposal to encode the TAKRI VOWEL SIGN VOCALIC R Proposal to encode the TAKRI VOWEL SIGN VOCALIC R Srinidhi A srinidhi.pinkpetals24@gmail.com Sridatta A sridatta.jamadagni@gmail.com March 28, 2018 1 Introduction This is a proposal to encode the following

More information