Posts

English Introdution

  DAY -1  Introduction English  When introducing yourself you can consider the following:  1. Your names  2. Where you come from  3. And educational background  4. What you do for a living  5. What things you like and don't like  6. What is your favourite movie, song, artist  7. What you intend to achieve in life  8. Your family - parents, siblings, wife/husband/children  9. If you have pets    Very casual:  Hi, my name is ______. I’m from ______ and I am ___ years old. I live in _____. Nice to meet you!   More formal: Hello. I am ______. I’m from _______ and I am ___ years old. It’s nice to meet you. Example : First of All thanks to you  beacuse you are providing me a wonderful chance to speak about my Self so this side Yunus Mohammad . Currently I am staying in Chhatarpur(New Delhi) Besically I am from Bihar About my  qualifications  concern So I have completed my 10th and 12th from BSEB(MP ...

MP PSC NOTES

 MPPSC 1. MP GK     1. Basic     2. 2. History 3. Constitution 4. Commission Reasoning Link   MATH    *. AVERAGE * Number system  Quiz -1   * Simplification Quiz - 1      2.PERCENTAGE       3. SI/CI  Quiz - 1          4.MENSURATION  Quiz- 1 ,         5. Boat and Stream Quiz - 1 ,  ENGLISH     1.  HINDI          1. Basic

Excel Formula (हिन्‍दी)

Image
 MS Excel Formula Text Date and Time Math FINANCIAL Statistical BHTTEXT CHAR CLEAN CODE CONCATENATE DOLLER EXACT FIND FIXED LEFT LEN LOWER MID NUMBERVALUE PROPER REPLACE REPT RIGHT SEARCH SUBSTITUE T TEXT TRIM UNICHAR UNICODE UPPER VALUE DATE DATEVALUE DAY DAYS DAYS360 EDATE EMONTH HOUR ISOWEEKNO MINUTE MONTH NOWDAYS NOW SECOND TIME TIMEVALUE TODAY WEEKDAY WEEKNUM WORKDAY YEAR YEARFRAC   ABS AGGREGATE BASE CEILING COMBIN COMBINA DECIMAL EVEN EXP FACT FLOOR GCD INT LCM LOG MOD PI POWER PRODUCT QUOTIENT RADIAN RAND RANDBETWEEN ROUND SQRT SUBTOTAL SUM SUMIF TRUNC   CUMIPMT DB DDB FV PMT SLN     AVERAGE AVERAGEIF COUNT ...

CPCT Syllabus 2022- 23

  Computer Proficiency Certification Test  (CPCT)  MCQ Test - 75 Marks Hindi Typing test + English Typing test Topics Computer ( Revision )     1.History     2. Generation     3. Types of Computer     4.Computer Hardware - Computer Fundament             a. Motherboard    b. VGA  C.     5. Computer Software -           a. Operating System               1. Windows    2. Linux      3. Dos          6. MS Word   - Keyboard  Shortcut - Extra Fact     7. MS Excel - Keyboard Shortcut - Formulas - Fact     8.MS Power Point     9.Outlook     10.Application Software     11.Computer Full Form     12. Network                 a. TCP/IP ...

Software Engineering's

Software : software characteristics and appli1cations, software engineering - a layered  technology, software process models - linear sequential model, prototype & RAD model,  incremental model and spiral model. Project metrics: software measurement–size oriented,  function oriented metrics, extended function point metrics.  UNIT - II  Software project planning: objectives, decomposition techniques, and empirical estimation models. Analysis concept and principles: requirement analysis, analysis principles.  UNIT – III  Design concepts and principles: design process, design concepts, design principles, effective modular design, human computer interface design, interface design guidelines.  UNIT – IV  S/w quality assurance: quality concepts, reliability s/w testing models: s/w testing  fundamentals, white and black box testing, basic path testing, testing strategies: strategic approach to s/w testing, unit testing, integration testing,...

Data structure(Searching linear and binary)

Image
Linear sear ch :-इस Search सर्च में element को एक-एक करके search किया जाता है और जहां element  मिल जाता है search complete. (Compare element one by one) Time taking      Best Case = O(1)     Average Case = O (n)      Worst Case Complexity O(n) Assume Find K = 41  Program # Linear Search in Python def linearSearch (array, n, x) : # Going through array sequencially for i in range( 0 , n): if (array[i] == x): return i return -1 array = [ 2 , 4 , 0 , 1 , 9 ] x = 1 n = len(array) result = linearSearch(array, n, x) if (result == -1 ): print ( "Element not found" ) else : print ( "Element found at index: " , result) Binary seach :-( Worked with sorted Array ) हमारे पास elements (a+b/2)  को Check किया जाता है और उसके हिसाब से Half parts  को eleminate कर दिया जाता है और आगे के Parts  को ऐसे ही तरीके से सर्च किया जाता है. Program for Binary Search by iteration a...

Python (Syllabus)

 Python Syllabus UNIT - I  Planning the computer program: concept of problem solving, problem definition, program design, debugging, types of errors in programming, documentation. Techniques of problem solving: flowcharting , decision table, algorithms, structured programming concepts, programming methodologies viz. Top-down and bottom-up programming. Overview of programming: structure of a python program, elements of python.  UNIT - II  Introduction to python: python interpreter, using python as calculator, python shell, indentation. Atoms, identifiers and keywords, literals, strings, operators (arithmetic operator, relational operator, logical or Boolean operator, assignment, operator, ternary operator, bit wise operator, increment or decrement operator) Creating python programs: input and output statements, control statements(branching, looping, conditional statement, exit function, difference between break, continue and pass.), defining functions, default argume...