Monday, August 1, 2022

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 BOARD/ School Examination Board)
  • And Now I am pursuing B.C.A Final Year
  • About my Family background So I have one brother and one sister including me and all the Siblings are elder then me last but not least My father is a farmer and my mother is home maker.
  • About my hobbies
  • So I change my hobbies according to the time last but not the least my hobbies are playing instruments and listening music
  • About my strength So I always Do any work as an passion and one thing is always rotating in my mind that is Never Give up
  • About my Goal/ AIM So
  • I have two goals
  • My short term goal is I just want to get a job in professional company
  • And long term aim is to be a Indian classical Singer
  • Thanks for listening to me

Monday, June 20, 2022

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 (हिन्‍दी)

 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

FREQUENCY

FORCAST

MAX

MIN

MEDIAN

PERMUTATION

 

LOOKUP

LOGICAL FORMULA

 

CHOOSE

HLOOKUP

VLOOKUP

HYPERLINK

INDEX

TRANSPOSE

MATCH

 

AND

OR

NOT

XOR

IF

IFERROR

TRUE

FALSE

 

Financial Formula

1. PMT  ( FOR EMI CALCULATION )



2. IPMT ( Interest include in EMI ) 

    


3. PV (Principal Amount )



4. FV ( Future Value)



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  

    13. Internet

        1. Domain Name  2. browser  3.

    14. File Extension 






#yunussir #computersir #yunussirtutorial #Digitalsir #unishsir

    

    

Tuesday, June 7, 2022

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, validation testing, system testing.

UNIT - V
S/w reuse: reuse process, classification and retrieving components, economics of s/w reuse
Software maintenance- need for software maintenance, maintenance models.
Software configuration management (SCM) – version control – SCM process – software
configuration items
Computer aided software engineering (CASE): introduction to case, taxonomy of case tools

Tuesday, May 24, 2022

Data structure(Searching linear and binary)

Linear search :-इस 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 and recursion method


Selection sort :- Selection सिलेक्शन Sort में सबसे पहला सबसे छोटा आइटम सर्च किया जाता है और उस छोटे आइटम को swap कर दिया जाता है first एलिमेंट से इसी प्रकार से 2nd smallest element एलिमेंट फिर 3,4 so on. और ऐसे करके elements को सही पोजीशन पर लगाया जाता है

Step 0


Step 1


Step 2


Step 3


Program for Selection sort
Bubble sort :- swap to nex element. (link for example and programs )

Insertion sort :- select any element and sorted fully (sort like 2elemt . 3 elements >..)

Monday, May 23, 2022

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 arguments, errors and exceptions. Iteration and recursion: conditional execution, alternative execution, nested conditionals, the return statement. 

UNIT - III 

Recursion, stack diagrams for recursive functions, multiple assignment, the while statement, tables, two-dimensional tables (English) Strings and lists: string as a compound data type, length, traversal and the for loop, string slices, string comparison, a find function.

UNIT - IV

 Looping and counting, list values, accessing elements, list length, list membership, lists and for loops, list operations, list deletion. Cloning lists, nested lists Object oriented programming: introduction to classes, objects and methods, standard libraries.(English)

 UNIT - V 

Data structures: (LINK) ENGLISH arrays, list, set, stacks and queues. Searching and sorting: linear and binary search, bubble, selection and insertion sorting.   

Cyber Security (Syllabus )

BCA 4

Cyber security

Unit-1

Information security --overview, information security importance, information security components( English). threats to information system -external and internal threat, security threat vulnerability--overview, malware, type of Malware: virus,worms, Trojan, rootkits, robots adware's spyware's, ransom wares, zombies etc. Desktop security

Unit Third-- cloud computer and security, social network site security, attack prevention-Password ,protection against attack in social media, securing wireless network ,security threats.

Unit - 2

 application security - database security, e-mail security ,internet security, principles of security -confidentiality, integrity ,availability, introduction to cryptography -symmetric key cryptography ,asymmetric key cryptography, message authentication, application of cryptography. security technology- firewall, type of firewall, firewall benefit, VPN antivirus software.

Unit- 5

ISO-international organisation and standardization, World intellectual property organisation Cyber law-cyber law in India, IT act 2000, intellectual property rights-definition, intellectual property, category of intellectual property ,rights protected under intellectual property ,Copyright ,patent, trademark(English),design-design law in India.

Unit-4

Cybercrime-- concept of cybercrime, types of cybercrime,phishing, cybercrime prevention, case study, security threats to e-commerce- electronic payment system  Digital signature--digital signature process.

Tally Syllabus

 Tally Syllabus

Unit -1

Unit -2

Account

Inventory

Bank
Unit -3
Job Costing (English)
Cash book and bank book (english)
Journal Register (English )
Purchase Register (English )


Unit -4


Unit -5

Syllabus (DBMS)

  2BCA Notes All previous year paper

Database Management

Database Management

Introduction To Database System : Data - Database Applications -Advantages - Evolution of DB & DBMS- Need for data management, Introduction and applications of DBMS, File systems vS Database systems, Data Models, DBMS Architecture, Data Independence, Data Modeling using Entity-Relationship Model, Enhanced ER Modeling( English).data dictionary

UNIT - II

Relational Database Concept and Design: Introduction to relational database, Structure of Relational Database, Relational model terminology(English) domains, Attributes, Tuples, Relations  , relational DB schema. Relational algebra:  Set Theoretic projection, Select ion, operations Union, Intersection, set difference and division, Join operations: Inner,Outer, Left outer, Right outer and full outer join. Relational Database design, Functional Dependency, definition, trivial ki 7 and nontrivial FD, Normalization 1Nf, 2NF, 3NF,Decomposition using FD dependency preservation, BCNF, Multi valued dependency, 4NF,Join dependency and 5NF.

UNIT - III

Database storage and querying (English)-Basic Concepts of Indexing and Hashing Query Processing,Measures Of Query Cost, Query Processing for Select, Sort ,Join Operations, Basics of Query Optimization(English ), Transformation of Relational Expression( English) Estimating Statistics of Expression( English), Choice of Evaluation Plan link.

UNIT - IV

Concurrency, Recovery and Security -Concurrency Control: Definition of concurrency, lost update, dirty read and incorrect summary problems due to concurrency. (English)Concurrency Control Techniques: Overview of Locking, 2PL, Timestamp ordering, multi-versioning (English), validation Recovery concepts, Shadow paging, Log Based Recovery, Elementary concepts of Database security: system failure, Backup and Recovery Techniques, authorization and authentication.

UNIT - V

Introduction to Current Trends (English)– Centralized and Client Server Architectures, Distributed Databases(Fragment), Object Oriented Database(English), Spatial & Temporal Databases(English), Data Mining WarehousingData Visualization, Mobile Databases( English), OODB & XML Databases, Multimedia & Web Databases.

DBMS BCA

Unit -5
 Multimedia &Web database:- web database एक ऐसा system है जिसके द्वारा डेटाबेस सिस्टम में इंफॉर्मेशन को स्टोर किया जाता है तथा इंटरनेट के माध्यम से और बैक के माध्यम से उस डेटाबेस को अलग-अलग लोकेशंस पर साझा किया जाता है इसका प्रयोग डेटाबेस membership, Client list तथा inventory डेटाबेस में किया जाता है, बेबी स्टेटस का प्रयोग डाटा को मैनेज करने के लिए किया जाता है तथा इसका प्रयोग ई-कॉमर्स ई -बिजनेस ,लॉगइन ईमेल और भी कई ऑनलाइन Application में किया जाता है. Web डेटाबेस में कुछ चीजें बहुत जरूरी होती हैं चसे वेबसाइट डेटाबेस को सुरक्षित रखना, वेब बेस्ड डाटा बेस में बहुत अधिक मात्रा में डाटा को आसानी से व्यवस्थित करके रखा जाता है तथा जो भी query होती हैं उन्हें आसानी से Access किया जा सके, web based Data  को लोकल नेटवर्क तथा इंटरनेट के माध्यम से प्रयोग में लाया जा सकता है, इसका प्रयोग पर्सनल लोग और प्रोफेशनल लोग भी करते हैं तथा software as Service (SAAS) सर्विस मिलती है जिससे डाटा सुरक्षित रहता है अगर हम PHP को ऐसा Front end और डाटा भी इसके लिए हम लोग Mysql का प्रयोग किया जा सकता है जो कि आपकी Server साइड लैंग्वेज है वेब डेटाबेस में टेबल के रूप में डाटा बनाया जाता है तथा उसमें Primary Key की भी प्रयोग में लाई जाती है जिससे डाटा को एक्सेस करने में आसानी होती है.
मल्टीमीडिया डेटाबेस से यह तात्पर्य है कि हम लोग डेटाबेस में अलग-अलग प्रकार के Item को Save करके रख सकते हैं जैसे अगर हमें किसी की फोटो डेटाबेस में रखनी है या फिर कई प्रकार के डाक्यूमेंट्स को रखना चाहते हैं और या फिर कोई वीडियो क्लिप मूवी क्लिप हैं उन्हें हम मल्टीपल या मल्टीमीडिया डेटाबेस कह सकते हैं

Monday, May 9, 2022

Firewall

 Firewall :-किसी भी Computer Network (कंप्यूटर नेटवर्क) को सुरक्षित Safe रखने के लिए Firewall का Use किया जाता है Firewall हार्डवेयर तथा Software दोनों पर depend करती है Firewall में अलग-अलग function होते हैं जो हमारे Computer को सुरक्षित रखने में मदद करते हैं

Hardware Firewall इन physical device होता है जो computer network और GateWay के बीच Attach रहता है.

Software firewall simple सा program होता है जो कि कंप्यूटर में instal रहता है तथा वह port नंबर के आधार पर कार्य करता है.

Firewall security Level को check करता है और अलग-अलग तकनीक की मदद से हमारे कंप्यूटर  नेटवर्क को सुरक्षित रखता है 





Types of Firewall

1. Pack filtering firewall 

2.circuit level gateway 

3. application level gateway (proxy firewall)

4. Stateful multi layer inspection firewall

5. next generation firewall

 6. Threat focus NGFW

7.network address translation firewall

 8. cloud firewall 

9.unified treated management firewall


Explain

1 packet filter firewall basic type की firewall है जो कि यह Check करती है कि नेटवर्क द्वारा जो भी packet आ रहे हैं वह security रूल्स को follow कर रहे हैं कि नहीं, यह फायर बॉल नेटवर्क ट्रेफिक, आईपी प्रोटोकोल ,तथा पोर्ट नंबर को block कर देता है अगर packet rules   के हिसाब से नहीं होते हैं तो. इस फायर बॉल का एक नुकसान भी है कि यह web attack  से नेटवर्क को सुरक्षित नहीं रख पाती और यह पूरी तरह से safe भी नहीं होती, क्योंकि यह packet को verify नहीं कर पाती.

Circuit - Level Gateway:- इस फायरवॉल को session लेयर में operate किया जाता है, इस फायरवॉल की हेल्प से नेटवर्क ट्रेफिक को मैनेज किया जा सकता है यह ensure करती है कि session protect है कि नहीं, यह फायर बॉल भी actual data को चेक नहीं करती, इस फायर बॉल में Malware  आने के chance काफी रहते हैं

Application Level Gateway :- इसे proxy firewall भी कहा जाता है इसका प्रयोग Application लेयर पर intermediate device के साथ आने वाले incoming traffic को filters किया जाता है इसके द्वारा पहले client के पास request भेजी जाती ,or  client main Server के पास request भेजता है लेकिन client इस प्रकार से request भेजता है कि वह original client है, इसके द्वारा original क्लाइंट की identification को safe रखा जाता है. यह एक प्रकार की additional layer लिए बनाती है client और network के बीच में


Sateful multi layer Inspection Firewall :- इस वाली प्रोटोकोल मैं दो तरह की inspection होते हैं packet filtering or circuit level gateway. यह काफी सिक्योर रखता है हमारे नेटवर्क को और कनेक्शंस status को भी बनाकर रखता है सबसे पहले यूजर request करता है डाटा के लिए उसके बाद यह फायर बॉल एक database table बनाती है जिसमें session Information को सेव रखती है तथा source ip. Address पोर्ट नंबर और destination ip ऐड्रेस को चेक करती है.


Wednesday, May 4, 2022

Teach

Day 1 History
Day 2 Devices
Day - 3 software
Day 4 Network