[solved] – Question 82586

To know the following process that you can also get from the techniques of <a href=”https://microsoftsupport.co/blog/fix-error-0xc00d36c4/”>fix error 0xc00d36c4</a> that can also prove the same things of that.

Expert Answer


[solved] – Question 82596

write a program that receives date and displays it displays it as following depending on user choice:date/month/year or dd/mm/yy

Expert Answer


[solved] – Question 82600

First of all go to https://www.w3schools.com/sql/trysql.asp?filename=trysql_select_all.
This is the link to W3Schools MySQL Tryit Editor
and the sample database we are using.

Questions:
1. Write a query that lists the first name and the number of sales of each
employee including the ones that has not received any orders yet.
2. Write a query that calculates and lists the total price of each order.
3. Write a query that lists the name of each different product shipped by
Speedy Express.

Expert Answer


[solved] – Question 82622

Q1. What is the diffrence between job and process?

Q2. What are the diffrences between real time sharing and time sharing?

Q3. How buffering can improve the performance of the computer system?

All questions are related from the course Operating System

Expert Answer


[solved] – Question 82624

Divide 1161_8 by 31_8 . Express the obtained result in decimal number.

Expert Answer


[solved] – Question 82629

what is the diffrence between job and the process? (Course name: Operating System)

Expert Answer


[solved] – Question 82630

what is the difference between real time sharing and time sharing system? (Course Name: Operating System)

Expert Answer


[solved] – Question 82633

Q.2 How Buffering can improve the performance of a Computer system (operating system)

Expert Answer


[solved] – Question 82643

Assume there are two variables, k and m, each already associated with a positive integer value and further assume that k’s value is smaller than m’s. Write the code necessary to compute the number of perfect squares between k and m. (A perfect square is an integer like 9, 16, 25, 36 that is equal to the square of another integer (in this case 3*3, 4*4, 5*5, 6*6 respectively).) Associate the number you compute with the variable q. For example, if k and m had the values 10 and 40 respectively, you would assign 3 to q because between 10 and 40 there are these perfect squares: 16, 25, and 36. Do NOT modify k and m.
This is what I have but I keep getting that q is incorrect
i=1
q=0
while i*i<k:
i+=1
while i*i<=m:
q+=1
i+=1

Expert Answer


[solved] – Question 82645

Divide 1161 by 31 both are octal numbers

Expert Answer