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: March 24, 2022In: Other

      Write any problem with its solution in respect to problem solving technique. ‘Customers who bought this also bought this…’ we …

      I'M ADMIN
      I'M ADMIN
      Added an answer on March 24, 2022 at 8:38 pm

      Q.‘Customers who bought this also bought this…’ we often see this when we shop on Amazon. What is the logic behind recommendation engines?   Answer: Let's take example of Amazon. Amazon has one of the best recommendation system available out there. I will try to explain this complex system beloRead more

      Q.‘Customers who bought this also bought this…’ we often see this when we shop on Amazon. What is the logic behind recommendation engines?

       

      Answer:

      Let’s take example of Amazon.

      Amazon has one of the best recommendation system available out there. I will try to explain this complex system below.

       

      Magic happens mainly due to 3 things.

      -> Cookies, Clicks and Machine Learning.

      It starts with cookies. When you visit Amazon, several cookies are generated on your browser. These cookies contain information ranging from session, id as well as the time. These cookies stay on your browser until you delete them or Amazon deletes them. Effectively allowing Amazon to know that this is the same dude that accessed Amazon 20 minutes ago, among the pool of millions of active users. These cookies faciliates Amazon in data gathering which it requires in later steps.

      Next is, using these cookies Amazon identifies you whether you are an Amazon user or just someone wandering around the site. And accordingly, Amazon starts tracking your clicks and interests & recording them in databases.

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    2. Asked: March 24, 2022In: Other

      Write any problem with its solution in respect to problem solving technique. ‘Customers who bought this also bought this…’ we …

      I'M ADMIN
      I'M ADMIN
      Added an answer on March 24, 2022 at 8:35 pm

      Q.Write any problem with its solution in respect to problem solving technique. Answer: The process of problem-solving using searching consists of the following steps.   Define the problem Analyze the problem Identification of possible solutions Choosing the optimal solution ImplementationRead more

      Q.Write any problem with its solution in respect to problem solving technique.

      Answer:

      The process of problem-solving using searching consists of the following steps.

       

      Define the problem

      Analyze the problem

      Identification of possible solutions

      Choosing the optimal solution

      Implementation

       

      Example:

      8 Puzzle Problem:

      • Here, we have a 3×3 matrix with movable tiles numbered from 1 to 8 with a blank space. The tile adjacent to the blank space can slide into that space. The objective is to reach a specified goal state similar to the goal state, as shown in the below figure.

       

      • In the figure, our task is to convert the current state into goal state by sliding digits into the blank space.

       

       

      In the above figure, our task is to convert the current(Start) state into goal state by sliding digits into the blank space.

       

      The problem formulation is as follows:

      • States: It describes the location of each numbered tiles and the blank tile.
      • Initial State: We can start from any state as the initial state.
      • Actions: Here, actions of the blank space is defined, i.e., either left, right, up or down
      • Transition Model: It returns the resulting state as per the given state and actions.
      • Goal test: It identifies whether we have reached the correct goal-state.
      • Path cost: The path cost is the number of steps in the path where the cost of each step is 1.
      1. Note: The 8-puzzle problem is a type of sliding-block problem which is used for testing new search algorithms in artificial intelligence.
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    3. Asked: March 15, 2022In: Microprocessor

      If the 8085 adds 87H and 79 H, which of the flag register will get set . Give calculation.

      I'M ADMIN
      I'M ADMIN
      Added an answer on March 24, 2022 at 7:08 pm

      87H = 1000 0111   79H = 0111 1001   SUM= 1 0000 0000 =00H   FLAGS:   SIGN FLAG: 1   ZERO FLAG : 1   AUXILIARY CARRY FLAG: 0   PARITY FLAG: 0   CARRY FLAG:1

      87H = 1000 0111

       

      79H = 0111 1001

       

      SUM= 1 0000 0000 =00H

       

      FLAGS:

       

      SIGN FLAG: 1

       

      ZERO FLAG : 1

       

      AUXILIARY CARRY FLAG: 0

       

      PARITY FLAG: 0

       

      CARRY FLAG:1

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    4. Asked: March 24, 2022In: Computer Science

      Illustrate AND-OR search of gaming theory.

      I'M ADMIN
      I'M ADMIN
      Added an answer on March 24, 2022 at 7:04 pm

      When a problem can be divided into a set of sub problems, where each sub problem can be solved separately and a combination of these will be a solution, AND-OR graphs or AND - OR trees are used for representing the solution.   The decomposition of the problem or problem reduction generates ANDRead more

      When a problem can be divided into a set of sub problems, where each sub problem can be solved separately and a combination of these will be a solution, AND-OR graphs or AND – OR trees are used for representing the solution.

       

      The decomposition of the problem or problem reduction generates AND arcs.

       

      The figure shows an AND-OR graph 

      1. To pass any exam, we have two options, either cheating or hard work.
      2. In this graph we are given two choices, first do cheating or (The red line) work hard and (The arc) pass.
      3. When we have more than one choice and we have to pick one, we apply OR condition to choose one.(That’s what we did here).
      4. Basically the ARC here denote AND condition.
      5. Here we have replicated the arc between the work hard and the pass because by doing the hard work possibility of passing an exam is more than cheating.
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    5. Asked: March 16, 2022In: Microprocessor

      Indicate and analyse the status of each flag when microprocessor perform the following operation:- i)                   96H + FFH ii)                 C1 H + …

      I'M ADMIN
      I'M ADMIN
      Added an answer on March 24, 2022 at 5:09 pm

      CLICK ON BELOW LINK FOR ANSWER: https://sikshapath.in/question/indicate-and-analyse-the-status-of-each-flag-when-microprocessor-perform-the-following-operation-2/

      CLICK ON BELOW LINK FOR ANSWER:

      Indicate and analyse the status of each flag when microprocessor perform the following operation:-                                          i)                   96H + FFH ii)                 C1 H + 33 …

      See less
        • -1
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    6. Asked: March 22, 2022In: Microprocessor

      If the 8085 adds 87H and 79 H, which of the flag register will get set . Give calculation.

      I'M ADMIN
      I'M ADMIN
      Added an answer on March 24, 2022 at 5:08 pm

      87H = 1000 0111 79H = 0111 1001 SUM= 1 0000 0000 =00H FLAGS: SIGN FLAG: 1 ZERO FLAG : 1 AUXILIARY CARRY FLAG: 0 PARITY FLAG: 0 CARRY FLAG:1

      87H = 1000 0111
      
      79H = 0111 1001
      
      SUM= 1 0000 0000 =00H
      
      FLAGS:
      
      SIGN FLAG: 1
      
      ZERO FLAG : 1
      
      AUXILIARY CARRY FLAG: 0
      
      PARITY FLAG: 0
      
      CARRY FLAG:1
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    1 … 52 53 54 55 56 … 122

    Sidebar

    store ads

    Stats

    • Questions 1k
    • Answers 1k
    • Posts 141
    • Best Answers 89
    • Cloud Computing Notes 101: Learn Fundamentals, Service Models, and Virtualization!
    • This Free AI Tool Translates Entire Books in Minute !
    • 25 Essential Software Testing Questions: Flashcard Edition!
    • 27 C++ Questions & Answers – Quiz 1 Flashcards
    • Interactive Alphabet Flashcards for Kids: A to Z Learning Fun!

    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