I have this project and I can't do anything about it, I do really need help ASAP

Answers

Answer 1

sorry i can't i am confused


Related Questions

How was the first computer reprogrammed

Answers

Answer:

the first programs were meticulously written in raw machine code, and everything was built up from there. The idea is called bootstrapping. ... Eventually, someone wrote the first simple assembler in machine code.

Explanation:

Explain the term software dependability. Give at least two real-world examples which further elaborates
on this term. Do you think that we can ignore software from our lives and remain excel in the modern
era? What is the role of software in the current pandemic period?

Answers

Answer:

Explanation:In software engineering, dependability is the ability to provide services that can defensibly be trusted within a time-period. This may also encompass mechanisms designed to increase and maintain the dependability of a system or software.Computer software is typically classified into two major types of programs: system software and application software.

If you are insured with third party insurance, it will cover which costs?

A. business losses due to a denial-of-service attack
B. loss of data in your laptop because of a coffee spillover
C. ransomware attack on your laptop
D. costs related to lawsuits, and penalties due to a cyberattack

Answers

Answer:

c.

Explanation:

Answer: D (costs related to lawsuits, and penalties due to a cyberattack)

Explanation: Third Party insurance covers the liabilities of policyholders to their clients or customers. Regulatory: It covers the cost related to legal affairs, lawsuits and penalties due to a cyberattack.  

Explain the paging concept and main disadvantages of pipelined
approaches? Compare the superscalar and super pipelined approaches
with block diagram?

Answers

Answer:

PAGINACIÓN En la gestión de memoria con intercambio, cuando ... Debido a que es posible separar los módulos, se hace más fácil la modificación de los mismos. ... Ventajas y Desventajas de la segmentación paginada

Explanation:

If D3=30 and D4=20, what is the result of the function
=IF(D4 D3, D3-D4, "FULL")?
0-10
O Unknown
O 10
O Full

Answers

Answer:

c. 10

Explanation:

Given

[tex]D3 = 30[/tex]

[tex]D4 = 20[/tex]

Required

The result of: [tex]=IF(D4 < D3,D3-D4,"FULL")[/tex]

First, the condition D4 < D3 is tested.

[tex]D4 < D3 = 20 < 30[/tex]

Since 20 < 30, then:

[tex]D4 < D3 = True[/tex]

The condition is true, so:

D3 - D4 will be executed.

[tex]D3 - D4 = 30 - 20[/tex]

[tex]D3 - D4 = 10[/tex]

Hence, the result of the function is 10

Many individuals and organizations are choosing cloud storage for their important files. Discuss the pros and cons of cloud storage for both personal files and business files. Many individuals and organizations are choosing cloud storage for their important files. Discuss the pros and cons of cloud storage for both personal files and business files. What inputs and outputs are needed to support the storage environment

Answers

Answer:

Pros of cloud storage

Files can be accessed remotely without having to be connected to a company's intranetSecurity and file backups are managed by the cloud storage company, frees up employees time applying updates and other maintenance tasks.Usually billed monthly which allows for a lower initial startup cost

Cons of cloud storage

File security relies upon trust in the cloud storage providerLong term cost could be higher than storing files yourselfRequires an internet connection to access files

I need help solving this problem on Picoctf. The question is What happens if you have a small exponent? There is a twist though, we padded the plaintext so that (M ** e) is just barely larger than N. Let's decrypt this: ciphertext. The ciphertext is this. I tried using stack flow and the rsatool on GitHub but nothing seems to work. Do you guys have any idea of what I can do. I need to solve this problem asap

Answers

Explanation:

Explanation:

RSA encryption is performed by calculating C=M^e(mod n).

However, if n is much larger than e (as is the case here), and if the message is not too long (i.e. small M), then M^e(mod n) == M^e and therefore M can be found by calculating the e-th root of C.

Implement a class Clock whose getHours and getMinutes methods return the current time at your location. (Call java.time.LocalTime.now().toString() and extract the time from that string.) Also provide a getTime method that returns a string with the hours and minutes by calling the getHours and getMinutes methods. Provide a subclass WorldClock whose constructor accepts a time offset. For example, if you live in California, a new WorldClock(3) should show the time in New York, three time zones ahead. Which methods did you override

Answers

Answer:

Explanation:

The following code was written in Java. It uses the LocalTime import to detect the current time. Then it creates a getHours, getMinutes, and getTime method to correctly print out only the hours and minutes in a simple format. Then it does the same for the WorldClock subclass which takes in the time offset as an int parameter and adds that to the hours in your own timezone.

class Clock {

   public String getHours() {

       String hours = java.time.LocalTime.now().toString().substring(0,2);

       return hours;

   }

   public String getMinutes() {

       String min = java.time.LocalTime.now().toString().substring(3,5);

       return min;

   }

   public String getTime() {

       String time = getHours() + ":" + getMinutes();

       return time;

   }

}

class WorldClock extends Clock {

   int timeZone = 0;

   public WorldClock(int timeZone) {

       super();

       this.timeZone = timeZone;

   }

   public String getHours() {

       String hours = String.valueOf(Integer.parseInt(super.getHours()) + 3);

       return hours;

   }

   public String getTime() {

       String time = getHours() + ":" + super.getMinutes();

       return time;

   }

}

class Test {

   public static void main(final String[] args) {

       Clock myClock = new Clock();

       System.out.println("My Time: " + myClock.getTime());

       WorldClock worldClock = new WorldClock(3);

       System.out.println("My Time + 3: " + worldClock.getTime());

   }

}

From the philosophical standpoint, especially in the discussion of moral philosophy or ethics, why do we consider “murder” or “killing” wrong or bad?

Answers

Explanation:

Morality is a set of values ​​and habits that a society acquires over time and can be categorized as good and bad values, right and wrong, justice and crime. Ethics is defined as the study of morals, the practical application of moral behaviors defined by society.

Therefore, the concept of "murder" or "killing" is seen as an immoral act by the vast majority of society around the world, strengthened by the set of moral conduct common to all human beings, which are the Articles on the Universal Declaration of Human Rights. Human Rights, which is an official document of the UN, which contains several universair and analytical rules on the rights of every individual, such as the right to life, security, freedom, etc.

(Hours, minutes, and seconds) Write a method that returns a string in the form of hour:minute:second for a given total seconds using the following header:
public static String format(long seconds)
Here is a sample run:

Enter total seconds: 342324
The hours, minutes, and seconds for total seconds 342324 is 23:05:24

Note that a zero is padded to hour, minute, and second if any of these values is a single digit.

Answers

Answer:

Answered below.

Explanation:

class Convert {

public static String format(long seconds) {

Scanner sc = new Scanner(System.in);

System.out.print("Enter total seconds: ");

int secs = sc.nextInt();

int hours = secs / 3600;

int minutes = (secs % 3600) / 60;

int seconds = (secs % 3600) % 60;

String timeFormat = hours + ":" + minutes + ":" + seconds;

return timeFormat;

}

}

explain the different type of shift register counter ​

Answers

Answer:

Shift registers are also used as counters. There are two types of counters based on the type of output from right most D flip-flop is connected to the serial input. Those are Ring counter and Johnson Ring counter.

There are two types of shift register counters. They are given below:

Ring counter.Johnson ring counter.

What do you mean by Shift register counter?

The shift register counter may be defined as a sequence of a specific number of core registers that are significantly interconnected to one another in order to provide a clock-driven data shift.

A shift register is a set of f FFs that can be connected within the series and the stored data can be moved in the registers sequentially as per the command or instruction is given.

They are also utilized as counters. The type of shift register counter is based on the output from the D flip-flop which is connected to the serial input from the rightmost side.

Therefore, the two types of shift register counters are well mentioned above.

To learn more about Shift register, refer to the link:

https://brainly.com/question/14096550

#SPJ6

If a 9V, 7W radio is on from 9am to 12pm. Calculate the amount of charge that flows through it, hence or otherwise the total number of free electrons that pass through at a point at the power supply terminals​

Answers

Answer:

Q=It

and

p=IV

Given, v=9V P= 7W

I=P/V

I =7/9

Also, time(t) from 9am to 12pm is 3hrs

Converting into sec =3×3600

t=10800

Q= 7/9 ×10800

Q =8400C

Which of the following describes the line spacing feature? Select all that apply. adds space between words adds space between lines of text adds space between paragraphs adds space at the top and bottom of a page adds bullet points or numerical lists

Answers

Answer:

adds space between lines of text

adds space between paragraphs

Explanation:

HELP ASAP DONT ANSWER WITH A LINK​

Answers

Answer:

Layout

title

title and content

section header

comparison

Orientation

landscape

portrait

Explain what an IM is,

Answers

Answer: Stands for "Instant Message." Instant messaging, or "IMing," as frequent users call it, has become a popular way to communicate over the Internet

Explanation:

Other Questions
When comparing the brightness of stars, it isnecessary to know the distance to each star.voleTrueFalse Bengal Co. provides the following unit sales forecast for the next three months: July August September Sales units 5,800 6,500 6,360 The company wants to end each month with ending finished goods inventory equal to 30% of the next month's sales. Finished goods inventory on June 30 is 1,740 units. The budgeted production units for July are: if y + 3 = 14, what is the value of 3(y + 5) yeah i ask a lot of questions my bad Chinese scholars relate that ancient Chinese communities suffered from low productivity and technology. These communities relied on the help of animals, and so they naturally revered animals and began to worship them. They created the twelve animal signs of the Chinese zodiac, called the sheng xiao. These animals are, in order, the rat, the ox, the tiger, the rabbit, the dragon, the snake, the horse, the ram, the monkey, the rooster, the dog, and the pig. The animals do not correspond to any astrological signs in the sky; however, they are used to divide and record time. The twelve selected animals had important parts in the lives of the ancient Chinese. The first category of animals included tamed and domesticated livestock, such as the ox, ram, horse, pig, dog, and rooster. To the ancient Chinese, these six animals symbolized a large family. They gave good luck and well-being. The second group included wild animals that the ancient Chinese respected and feared, such as the tiger, snake, rabbit, monkey, and rat. Of these animals, the tiger was most respected for its cunning and power. The snake was viewed as wise. The rabbit was likable, and the monkey was playful. The rat was considered to be the trickster. Finally, the dragon was in a category entirely by itself as a mythical beast. The ancient Chinese accounted the dragon as the wealthiest and wisest of all. Because of this, the dragon was the most revered of all other animals.Which of the following is the best summary of this article? A. Some Chinese scholars say ancient communities had low productivity. B. The Chinese calendar uses a cycle of twelve animal signs. C. The ancient Chinese had a close relationship with animals. D. Chinese animals can be classified in three categories A cylindrical tank holds 352 cu. ft. of water. The height of the tank is 7 ft. Find theradius of the tank.pls help me thx and show your work match the answer to the equation how do i find a unit rate Compare and 1.6. Use , or =.A. 5/3 = 1.6B. 5/3 < 1.6c. 5/3 > 1.5 1. What is 48 in simplified radical form? Which of the following methods of fossil formation is formed in dry areas due to a lack of moisture? aMummification bCasts and molds cAmber fossil dCarbonization HELPPP WILL MARK BRAINLIEST!!!!!! What does the following diagram show? Write your views on this matter. (5 marks) Which of the following is NOT a characteristic associated with a profession?Advanced educationMastery of knowledge and skillsThe need to be licensedShort workdays (No links)Which is NOT a characteristic of unsaturated fats? A. liquid at room temperatureB. animal fats C. kinks in the carbon chainD. not fully saturated with hydrogens According to the wade davis bill which of these would need to happen before a former confederate state could be readmitted to the u.S Harry manages a sales force which sells several products in different sales territories. A random sample of 25 territories were selected and the data is provided in an Excel worksheet labelled Harrys. The variables include total sales credited to the sales representative (Sales), the length of time employed in months (time), the market potential (Poten), the advertising expense for the territory (AdvExp), the market share (Share), the change in market share over the previous three years (Change), the number accounts assigned to the sales representative (accounts), an index representing the workload (work), the rating on the last performance review (rating) and whether it is a star territory (star territories have performed well in the past).Using the methods discussed in this class, determine the best regression model to predict Sales. Write a brief report (less than two pages) summarizing your analysis, including key statistical results, conclusions, and recommendations. Include any appropriate technical material in an appendix. WILL GIVE BRAINLIEST to whoever solves this entire problem (completes all the steps). I WILL REPORT if you just steal the points without giving an answer. I know this is really long but I really need help on this and am low on time. To whoever answers this, thank you so much, you are a life saver. We created this inequality to represent how Amy can meet her revenue goals:-100x2 + 15,750x + 212,500 243,600In this activity, youll solve this inequality to find the minimum ticket price Amy should charge to meet her minimum revenue goal.Step 1: set the inequality greater than or equal to zeroStep 2: simplify the inequality by dividing by the GCP so the leading coefficient is positive Step 3: factor the left side of the inequality by groupingStep 4: solve the quadratic inequality. Remember to check any possible solutions for viability.Step 5: what is the minimum number of $2 increases that Amy needs to apply to the ticket price to reach her desired revenue?Step 6: Whats the minimum ticket price that Amy can charge and reach her goal? Recall that the ticket price is represented by 25 + 2x, where x represents the number of $2 increases.Seriously thank you to anyone who does this. I am low on time and this helps a bunch. PLEASE HELP!!!!!!!!!!!!! ILL GIVE YOU BRAINLEST AND EXTRA POINTS!!!!!!!!!!!!!!!!!!!!!!!! 7. When your arm does the blocking move, why is there a slant in your arm? (3 pts)