Sign Up

Have an account? Sign In Now

Sign In

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

SIKSHAPATH

SIKSHAPATH Logo SIKSHAPATH Logo

SIKSHAPATH Navigation

  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
  • About
    1. Asked: May 2, 2022In: Other

      What are the three stages of building the hypotheses or …

      I'M ADMIN
      I'M ADMIN
      Added an answer on May 3, 2022 at 12:31 pm

      The three stages of building a machine learning model are:   Model Building Choose a suitable algorithm for the model and train it according to the requirement The six steps to building a machine learning model include:  Contextualise machine learning in your organisation  Explore the data andRead more

      The three stages of building a machine learning model are:

       

      Model Building

      Choose a suitable algorithm for the model and train it according to the requirement

      The six steps to building a machine learning model include: 

      1. Contextualise machine learning in your organisation 
      2. Explore the data and choose the type of algorithm  
      3. Prepare and clean the dataset 
      4. Split the prepared dataset and perform cross validation  
      5. Perform machine learning optimisation 
      6. Deploy the model 

      Model Testing

      In machine learning, model testing is referred to as the process where the performance of a fully trained model is evaluated on a testing set. The testing set consisting of a set of testing samples should be separated from the both training and validation sets, but it should follow the same probability distribution as the training set.

      Applying the Model

      Make the required changes after testing and use the final model for real-time projects

      See less
        • 2
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    2. Asked: May 2, 2022In: Microprocessor

      Discuss the functions of all general purpose registers of 8086.Explain …

      I'M ADMIN
      I'M ADMIN
      Added an answer on May 3, 2022 at 12:20 pm

      General Purpose registers are used for temporary storage of data and memory access. Since the processor accesses register more quickly than memory. 8086 has four 16-bit general-purpose registers AX, BX, CX and DX. These are available to the programmer, for storing values during programs. Each of theRead more

      General Purpose registers are used for temporary storage of data and memory access. Since the processor accesses register more quickly than memory. 8086 has four 16-bit general-purpose registers AX, BX, CX and DX. These are available to the programmer, for storing values during programs. Each of these can be divided into two 8-bit registers such as AH, AL; BH, BL; CL, CH and DL, DH. Beside their general use, these registers also have some specific functions.

      • AX Register (16-Bits): It holds operands and results during multiplication and division operations. All IO data transfers using IN and OUT instructions use A register (AL/AH or AX). It functions as accumulator during string operations.

      Example:

      MUL BL ; AX = (AL × BL)

      MUL BX ; DX-AX = (AX × BX)

      MUL BYTE PTR [BX] ; AX = (AL x DS:[BX])

      • BX Register (16-Bits): It holds the memory address (offset address), in Indirect Addressing modes.

      Example:

      MOV CL, [BX] ; Moves a byte from the address pointed by BX in Data Segment into CL. Physical Address calculated as DS * 10H + BX

      MOV CH, [BX+6] ; Moves a byte from the address pointed by BX+6 in Data Segment to CH; Physical Address: DS * 10H + BX + 6H

      MOV CL, [BX+SI] ; Moves a byte from the address pointed by BX+SI in Data Segment to CL. Physical Address: DS * 10H + BX + SI

      • CX Register (16-Bits): It holds count for instructions like: Loop, Rotate, Shift and String Operations.

      Example:

      MOV CX, 40H

      BACK: MOV AL, BL

      ADD AL, BL

      . . MOV BL, AL

      LOOP BACK

      MOV CX, 40H BACK: MOV AL, BL ADD AL, BL . . MOV BL, AL LOOPZ BACK

      • DX Register (16-Bits): It is used with AX to hold 32 bit values during Multiplication and Division. It is used to hold the address of the IO Port in indirect IO addressing mode.

      Example:

      MUL BX ; DX-AX = (AX × BX)

      MOV DX, 2000H

      IN AL, DX

      See less
        • 1
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    3. Asked: April 29, 2022In: Other

      State the situations under which gateways are necessary in the …

      I'M ADMIN
      I'M ADMIN
      Added an answer on May 3, 2022 at 12:15 pm

      Gateway operates at all 7 layers of the OSI model. It is a device, which connects two different dissimilar n/w which have the same function of communication. The situation where gateways are necessary for different n/w like Ethernet, Token Ring, FDDI, etc. It can communicate if they are using the saRead more

      Gateway operates at all 7 layers of the OSI model. It is a device, which connects two different dissimilar n/w which have the same function of communication. The situation where gateways are necessary for different n/w like Ethernet, Token Ring, FDDI, etc. It can communicate if they are using the same protocol for communication like TCP/IP 08 Apple talk if they are using different protocols from gateway cash forward packets across different n/w s that may also use different protocols. Eg: if n/w A is a Token Ring network using TCP/IP & network B is a Novell Network, a gateway can relay frames between the two. This means that a gateway has not only had but also between different protocols. In certain situations, the only changes required are to the frame header. In other cases, the gateway must take the case of different frame sizes, data rates, formats, acknowledgment schemes, priority schemes, etc.

      Features of Gateways

      • Gateway is located at the boundary of a network and manages all data that inflows or outflows from that network.
      • It forms a passage between two different networks operating with different transmission protocols.
      • A gateway operates as a protocol converter, providing compatibility between the different protocols used in the two different networks.
      • The feature that differentiates a gateway from other network devices is that it can operate at any layer of the OSI model.
      • It also stores information about the routing paths of the communicating networks.
      • When used in enterprise scenario, a gateway node may be supplemented as proxy server or firewall.
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    4. Asked: May 2, 2022In: Computer Science

      State the situations under which gateways are necessary in the …

      I'M ADMIN
      I'M ADMIN
      Added an answer on May 3, 2022 at 12:12 pm

      Gateway operates at all 7 layers of the OSI model. It is a device, which connects two different dissimilar n/w which have the same function of communication. The situation where gateways are necessary for different n/w like Ethernet, Token Ring, FDDI, etc. It can communicate if they are using the saRead more

      Gateway operates at all 7 layers of the OSI model. It is a device, which connects two different dissimilar n/w which have the same function of communication. The situation where gateways are necessary for different n/w like Ethernet, Token Ring, FDDI, etc. It can communicate if they are using the same protocol for communication like TCP/IP 08 Apple talk if they are using different protocols from gateway cash forward packets across different n/w s that may also use different protocols. Eg: if n/w A is a Token Ring network using TCP/IP & network B is a Novell Network, a gateway can relay frames between the two. This means that a gateway has not only had but also between different protocols. In certain situations, the only changes required are to the frame header. In other cases, the gateway must take the case of different frame sizes, data rates, formats, acknowledgment schemes, priority schemes, etc.

      Features of Gateways

      • Gateway is located at the boundary of a network and manages all data that inflows or outflows from that network.
      • It forms a passage between two different networks operating with different transmission protocols.
      • A gateway operates as a protocol converter, providing compatibility between the different protocols used in the two different networks.
      • The feature that differentiates a gateway from other network devices is that it can operate at any layer of the OSI model.
      • It also stores information about the routing paths of the communicating networks.
      • When used in enterprise scenario, a gateway node may be supplemented as proxy server or firewall.

       

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    5. Asked: May 2, 2022In: Python

      Write a Python class named Student with two attributes student_id, …

      I'M ADMIN
      I'M ADMIN
      Added an answer on May 3, 2022 at 10:24 am

      Follow the given link: https://sikshapath.in/question/1-write-a-python-class-named-student-with-two-attributes/

      Follow the given link:

      Write a Python class named Student with two attributes student …

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    6. Asked: May 3, 2022In: Computer Science

      Create network to implement TCP/IP protocol

      I'M ADMIN
      I'M ADMIN
      Added an answer on May 3, 2022 at 10:22 am

      Follow The Below Link For the Answer:   https://sikshapath.in/question/configuration-of-tcp-ip-protocols-using-cisco-packet-tracer/

      Follow The Below Link For the Answer:

       

      Configuration of TCP/IP Protocols using cisco packet tracer

      See less
        • 1
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    1 … 21 22 23 24 25 … 122

    Sidebar

    store ads

    Stats

    • Questions 1k
    • Answers 1k
    • Posts 149
    • Best Answers 89
    • This Free AI Tool Translates Entire Books in Minute !
    • AI News: 🎬 Hollywood’s AI Studios, 🎓 OpenAI’s Latest Gift to Educators, 🚚 Class8 Bags $22M, 🧠 Google Gemini’s Memory Upgrade
    • AI NEWS: Legal Action Against OpenAI, $16M Paid, & Elon Musk’s Praise from Investor 🤖💰📑 | AI Boosts Cloud Seeding for Water Security 🌱💧
    • AI News: 🎬AI Video Tool Scam Exposed🤯, 🛰️ AI-Powered Drones to Ukraine 😱, Google’s $20M AI Push, Sam Altman Joins SF’s Leadership Team
    • AI News: 🤝 Biden Meets Xi on AI Talks, 💡 Xavier Niel’s Advice for Europe, ♻️ Hong Kong’s Smart Bin Revolution, 🚀 AI x Huawei

    Explore

    • Recent Questions
    • Questions For You
    • Answers With Time
    • Most Visited
    • New Questions
    • Recent Questions With Time

    Footer

    SIKSHAPATH

    Helpful Links

    • Contact
    • Disclaimer
    • Privacy Policy Notice
    • TERMS OF USE
    • FAQs
    • Refund/Cancellation Policy
    • Delivery Policy for Sikshapath

    Follow Us

    © 2021-24 Sikshapath. All Rights Reserved