Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
Write a C++ function, smallestIndex, that takes as parameters an …
#include <iostream> using namespace std; int smallestIndex(int array[], int Size); int main() { const int SIZE = 15; int array[SIZE], i; for (int i = 0; i < SIZE; i++) { cout<<"Enter array["<<i<<"] : "; cin >> array[i] ; } smallestIndex(array, SIZE); cout << "TRead more
Loan Account Class: Create class LoanAccount. Use a static variable …
import java.util.*; public class LoanAccount{ // A static variable to store the annual Interest rate static double annualInterestRate; // A private variable of type double to store the principle amount private double principle; // Constructor of LoanAccount Class LoanAccount(double p){ principle = pRead more
RISC processors best illustrate the difference between architecture and implementation. To what extent is this statement true (or not true)?
RISC processors best illustrate the difference between architecture and implementation. To what extent is this statement true (or not true)? It is already stated that architecture and organization are orthogonal, i.e. they are independent. In principle, this statement is true. You can create an instRead more
RISC processors best illustrate the difference between architecture and implementation. To what extent is this statement true (or not true)?
It is already stated that architecture and organization are orthogonal, i.e. they are independent. In principle, this statement is true. You can create an instruction set on paper and then implement it any way you want, via direct logic (called random logic) or via a structure such as microprogramming.
However, some design or organization techniques may be suited or unsuited to a particular architecture. CISC processors are characterized by both complicated instructions (i.e., multiple-part instructions or instructions with complex addressing modes), for example, the BFFFO (locate the occurrence of the first bit set to 1) can be regarded as a complex instruction and irregular instruction encodings.
Consequently, CISC instruction sets are well-suited to implementation/interpretation via microcode. The instruction lookup table simply translates a machine code value into the location of the appropriate microcode. It doesn’t matter how odd the instruction encoding is.
RISC processors with simple instructions are well suited to implementation by pipelining because of the regularity of a pipeline, i.e. all instructions are executed in approximately the same way.
See lessSuppose you toss a coin 100 times and find that head occurs 72 times. You use maximum likelihood estimate to obtain P(H) to be p…
Correct option is (a.) p>q
Correct option is (a.) p>q
See lessWhich of the following sampling algorithms will ensure that no samples are discarded?
Correct options are (b.) Likelihood Sampling and (c.) Gibbs Sampling
Correct options are (b.) Likelihood Sampling and (c.) Gibbs Sampling
Q1.What does a first order predicate logic contain? Predicate and …
Q1.What does a first order predicate logic contain? Answer: Predicate and a subject Q2.At which state does the propositional literals are complementary? Answer: If one is the negation of the other Q3.Translate the following statement into FOL. “For every a, if a is a PhD student, thenRead more
Q1.What does a first order predicate logic contain?
Answer: Predicate and a subject
Q2.At which state does the propositional literals are complementary?
Answer: If one is the negation of the other
Q3.Translate the following statement into FOL.
“For every a, if a is a PhD student, then a has a master degree”
Answer: ∀ a PhD(a) -> Master(a)
Q4.Which of the following statements correctly define knowledge representation in AI?
Answer: All of the above
Q5.In AI systems, Knowledge can be represented in two ways. What are these two ways?
Answer: Predicate Logic , Propositional Logic
Q6.Which of the mentioned point are not valid with respect to a Propositional Logic?
Answer: Propositional Logic is a type of knowledge representation in AI
Q7.Consider the following statement:
“In the propositional logic system of knowledge representation, it is assumed that the word contains object, relations, and functions. The Predicate logic is a symbolized reasoning in which we can divide the sentence into a well-defined subject and predicate.”
By reading the above statement, State whether it is true or false?
Answer: False
See lessFor a cyclic group of order 420, the number of generators are
Correct option is (b) 96. Explanation: group of order = 420 prime factors of 420 = 2 x 2 x 3 x 5 x 7 prime factors are 2, 3, 5 and 7 No. of generators = 420× (1-1/2)(1-1/3)(1-1/5)(1-1/7) =420/2 x 2/3 x 4/5 x 6/7 =96
Correct option is (b) 96.
Explanation:
group of order = 420
prime factors of 420 = 2 x 2 x 3 x 5 x 7
prime factors are 2, 3, 5 and 7
No. of generators = 420× (1-1/2)(1-1/3)(1-1/5)(1-1/7)
=420/2 x 2/3 x 4/5 x 6/7
=96
See lessGiven f(x,y)= 8xy, when 0<=x<=1, 0<=y<=x and f(x,y)=0 elsewhere, find …
Go through the below link for Answer: https://sikshapath.in/question/question-1-2-points-given-fxy-8xy-when-0x1-0yx/
Go through the below link for Answer:
See lessYou want to establish a Disaster network for telecommunication. Which type of topology will you use and why?
You can use star topology which has the benefit of easy installation and reconfiguration of access nodes. It reduces the overall network cost and makes network management much easier. Star network topology is the most commonly used topology. It is laid out to make sure every node in the network is dRead more
You can use star topology which has the benefit of easy installation and reconfiguration of access nodes. It reduces the overall network cost and makes network management much easier.
Star network topology is the most commonly used topology. It is laid out to make sure every node in the network is directly connected to a single central hub. It is done via either fibre optic cable or coaxial, twisted pair cables.
The main benefit of star topology is its ability to prevent data loss. All the data transmission is managed by the central hub and also contributes as a repeater.
See lessWhich of the following statement is false? a. A process …
The correct Option is b. A design notation is a symbolic representational system
The correct Option is b. A design notation is a symbolic representational system
See less