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: February 23, 2022In: Other

      How alpha beta search is different from minimax search algorithm. How does it overcome the problem of minimax search algorithm.

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 23, 2022 at 9:36 pm

      FOLLOW THE BELOW LINK TO FIND YOUR ANSWER:   https://sikshapath.in/question/question-1-how-alpha-beta-search-is-different-from-minimax-search-algorithm-how-does-it-overcome-the-problem-of-minimax/

      FOLLOW THE BELOW LINK TO FIND YOUR ANSWER:

       

      QUESTION 1 How alpha beta search is different from minimax search algorithm. How does it overcome the problem of minimax …

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

      How state space strategy is useful in problem solving?

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 23, 2022 at 9:34 pm

      A state contains all of the information necessary to predict the effects of an action and to determine if it is a goal state. The idea is that a problem can be solved by examining the steps that can lead to a goal state (solution).This may involve several searches from the initial state to the goalRead more

      A state contains all of the information necessary to predict the effects of an action and to determine if it is a goal state.

      The idea is that a problem can be solved by examining the steps that can lead to a goal state (solution).This may involve several searches from the initial state to the goal state within an optimal time

      State-Space searching assumes that:

      • The agent has a perfect knowledge of the state space and can observe what it is in (i.e., there is full observability);
      • The agent has a set of actions that have known deterministic effects;
      • Some states are goal states, the agent wants to reach one of these goal states, and the agent can recognize a goal state;
      • A solution is a sequence of actions that will get the agent from the current state to a goal state.

       

      See less
        • 2
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    3. Asked: February 23, 2022In: Data Structure

      What is a Stack data structure? List the operations that can be performed on a stack.

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 23, 2022 at 9:23 pm

      Q//What is a Stack data structure? ANSWER: Stack is a linear data structure which follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out). List the operations that can be performed on a stack.: Push: Adds an item in the stRead more

      Q//What is a Stack data structure?

      ANSWER: Stack is a linear data structure which follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out).

      List the operations that can be performed on a stack.:

      • Push: Adds an item in the stack. If the stack is full, then it is said to be an Overflow condition.
      • Pop: Removes an item from the stack. The items are popped in the reversed order in which they are pushed. If the stack is empty, then it is said to be an Underflow condition.
      • Peek or Top: Returns the top element of the stack.
      • isEmpty: Returns true if the stack is empty, else false.
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    4. Asked: February 23, 2022In: Data Structure

      What are the various applications of a stack data structure?

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 23, 2022 at 9:20 pm

      the various Applications of Stack in Data Structure: Evaluation of Arithmetic Expressions Backtracking Delimiter Checking Reverse a Data Processing Function Calls

      the various Applications of Stack in Data Structure:

      • Evaluation of Arithmetic Expressions
      • Backtracking
      • Delimiter Checking
      • Reverse a Data
      • Processing Function Calls
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    5. Asked: February 23, 2022In: Data Structure

      Create B tree of order 5 for 10,20,50,60,40,80,100,70,130,90,30,120,140,25,35,160,180.

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 23, 2022 at 9:17 pm
      This answer was edited.

      Q. Create B tree of order 5 for 10,20,50,60,40,80,100,70,130,90,30,120,140,25,35,160,180.     ANSWER:  DOWNLOAD THE ATTACHMENT FOR THE ANSWER.

      Q. Create B tree of order 5 for 10,20,50,60,40,80,100,70,130,90,30,120,140,25,35,160,180.  

       

      ANSWER:  DOWNLOAD THE ATTACHMENT FOR THE ANSWER.

      See less
      Attachment

        • -2
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    6. Asked: February 23, 2022In: Data Structure

      Compare the contrast between a binary and binary search tree.

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 23, 2022 at 9:05 pm

      Binary Tree: Tree where each node has up to two leaves, it’s a data structure. It is a non-linear tree data structure where a node can have a maximum of 2 children. Nodes with duplicate values are allowed. Used to implement variations of Binary Tree like BST, Perfect Binary Tree, etc. Time complexitRead more

      Binary Tree:

      • Tree where each node has up to two leaves, it’s a data structure.
      • It is a non-linear tree data structure where a node can have a maximum of 2 children.
      • Nodes with duplicate values are allowed.
      • Used to implement variations of Binary Tree like BST, Perfect Binary Tree, etc.
      • Time complexity is usually O(n)

       

      Binary Search Tree:

      • Used for searching. It’s an algorithm for searching element.
      • It is ordered binary tree with each node can have a maximum of 2 children.
      • In BST, the left child’s data will always have a value less than the parent’s data and the right child’s data will always have the value greater than the parent’s data
      • Nodes with duplicate values are not allowed.
      • Used to implement variations of Balanced Binary Trees like AVL, Red-Black, etc.
      • Time complexity is usually O(n)
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    1 … 77 78 79 80 81 … 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