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.
How do you program a simple calculator in C?
Code: #include <stdio.h> int main() { char operator; double first, second; printf("Enter an operator (+, -, , /): "); scanf("%c", &operator); printf("Enter two operands: "); scanf("%lf %lf", &first, &second); switch(operator) { case '+': printf("%.1lf + %.1lf = %.1lf", first, seconRead more
Code:
See lessSuppose the numbers 7, 5, 1, 8, 3, 6, 0, 9, 4, 2 are inserted in that order into
Correct Answer is option (C) 0 1 2 3 4 5 6 7 8 9 Explanation: In-order traversal of a Binary Search Tree gives elements in increasing order. So, option c is correct.
Correct Answer is option (C) 0 1 2 3 4 5 6 7 8 9
Explanation: In-order traversal of a Binary Search Tree gives elements in increasing order. So, option c is correct.
See lessWrite a program in assembly language to interchange (swap) the …
LDA 2101H MOV H,A LDA 2105H MOV D,A XCHG MOV A,H STA 2101H MOV A,D STA 2105H HLT #ORG 2101H #DB CD,34
Find the 2’s complement of the number stored at memory …
LDA 4200H CMA INR A STA 4300H HLT #ORG 4200H #DB 10
Suppose you are working on stock market prediction, Typically tens of millions of shares of Microsoft stock are traded..
The correct answer to the question 'Suppose you are working on stock market prediction, Typically tens of millions of shares of Microsoft stock are traded (i.e., bought/sold) each day. You would like to predict the number of Microsoft shares that will be traded tomorrow' is (B) Regression.
The correct answer to the question ‘Suppose you are working on stock market prediction, Typically tens of millions of shares of Microsoft stock are traded (i.e., bought/sold) each day. You would like to predict the number of Microsoft shares that will be traded tomorrow’ is (B) Regression.
See lessWhich of these is a reasonable definition of machine learning? …
The correct Answer to the question 'Which of these is a reasonable definition of machine learning' is option (B) Machine learning is the field of study that gives computers the ability to learn without being explicitly programmed.
The correct Answer to the question ‘Which of these is a reasonable definition of machine learning’ is option (B) Machine learning is the field of study that gives computers the ability to learn without being explicitly programmed.
See lessOf the following examples, which would you address using an unsupervised learning algorithm?
Answer to the question 'of the following examples, which would you address using an unsupervised learning algorithm' are: b. Given a set of news articles found on the web, group them into sets of articles about the same stories. & c. Given a database of customer data, automatically discover markRead more
Answer to the question ‘of the following examples, which would you address using an unsupervised learning algorithm’ are:
b. Given a set of news articles found on the web, group them into sets of articles about the same stories.
&
c. Given a database of customer data, automatically discover market segments and group customers into different market segments.
See lessWhat is an attribute that is used to identify a unique tuple in a table?
A super key is a set of one or more attributes that is used to identify a unique tuple in a table.
A super key is a set of one or more attributes that is used to identify a unique tuple in a table.
See lessIn OSI model what are the main functions of transport layer?(COMPUTER NETWORK QUESTIONS)
Click on the below link for the answer: https://sikshapath.in/question/in-osi-model-what-are-the-main-functions-of-transport-layer-2/
Click on the below link for the answer:
See lessCalculate the regression coefficients from the following : x: 1 …
Check Q no 1 of the below-given link for the answer: https://sikshapath.in/question/calculate-the-regression-coefficients-from-the-following-x-1/
Check Q no 1 of the below-given link for the answer: