Robotics & Artificial Intelligence
Give any two differences between deterministic computing and probabilistic computing with an example.
Decision making in Machines
1 Like
Answer
| Deterministic Computing | Probabilistic Computing |
|---|---|
| Produces fixed and predictable output for a given input. | Produces output based on probability and may vary. |
| Does not involve randomness. | Involves uncertainty and randomness. |
| Example: Calculator | Example: Face recognition |
Answered By
1 Like
Related Questions
What will be the output of the following Python code?
s = "Great Day" print(s.count('a')) print(s.startswith('g'))What are Assistant Robots?
A company XYZ Ltd. records its monthly sales in lakhs as follows:
Month = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun']
Sales = [25, 30, 28, 35, 40, 38]Write a Python program using Matplotlib to:
- Store the data.
- Plot a bar chart with month on X-axis and sales on Y-axis.
- Label the axes and give a title "XYZ Ltd. Half-Yearly Sales"
What are smart homes? Name any two features that make a home a smart home.