Please help me this goes with computer science so yeah

Please Help Me This Goes With Computer Science So Yeah

Answers

Answer 1

In today's world, the electronic version of the above can be sent as an ecard via any standard email service provider instantly over the internet.

How can the sender and receiver achieve the above?

In order for the above to be possible today, the sender must have have an electronic mail address which is referenced to a domain name. The same goes to the receiver.

It is to be noted that the data (in this case the text and pictures contained int he postcard) are delivered to user accounts across several computer servers.

The computer servers transport the messages to their final destination and store them so that users may retrieve and send them whenever they connect to the email infrastructure. An email client or a web interface can be used to access email.

What are the comparisons?

While there is a feeling that comes with handling physical mail such as the advantage of having the card retrieved without electricity, the ability to create handcrafted art, and even perfumed cards, they took relatively too long to prepare and to be sent to receiver.

Unlike traditional mail, electronic postcards are can be created, customized and sent withing a minute. E-post cards, unlike traditional ones, can be automated and sent to million of people at the same time in an instant.

Learn more about postcards:
https://brainly.com/question/15435088
#SPJ1


Related Questions

Suppose that you have created a program with only the following variables
Int age=34
Int weight =180
Double height =5.9
Suppose that you also have a method with the following header:
Public static void calculate (Int age, double size)

Which of the following methods calls are legal and why
Calculate (age, height)
Calculate (weight, weight)

Answers

Explanation:

Calculate (age, height) is legal because method's second argument (double size), needs double value.

what coder does assembly language use for programming?

Answers

Answer:

These short codes are converted into machine learning language (binary, i.e., 1s and 0s) through the use of programs called assemblers. In a nutshell, machine language uses binary code, which is almost impossible for humans to decipher, whereas assembly language uses mnemonic codes to write a program.

vvcccccccccccccccccccccccvcvcvcvcvcvcvvcvc

Answers

Answer:

Ok then..lol What does that even mean?

An/a ___________ is the security role responsible for providing oversight within an organization to ensure policy compliance.

Answers:
Custodian

Auditor

User

Manager

Answers

I think it’s either manager or custodian

I need a Java program that handles the order list for if I were an online retailer. The program should contain a minimum of three classes:
Order Class
Display Class
Main Class
The Order Class that uses a queue to hold the orders in the order they were taken, and the queue should contain the customer's last name, order number, and order total cost. The Display Class needs to store a copy of the order queue in two arrays. Each array will contain the order list, but one will be sorted by name and the other sorted by order number. When an order is taken and stored in the Order Class the program will update the Display Class arrays automatically and sort them in descending order using quick sort and outputs the contents to the console upon each entry of new data.


There should be a Main Class that will handle operator data input and when an order is added or removed, the program will update the Order Class and Display Class. The end-user should be presented with a menu to add an order, remove an order and display the order list from the queue.

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that  handles the order list for if I were an online retailer.

Writting the code:

import java.lang.*;

import java.util.*;

class Fruit{

private String fruit_name;

private double tot_weights;

private double price;

public const static String fruit_nvalue="?";

public const static double def_value=0.0;

public Fruit(){

 fruit_name=fruit_nvalue;

 tot_weights=price=def_value;

}

public Fruit(String fruit_name,double tot_weights,double price){

 this.fruit_name=fruit_name;

 this.tot_weights=tot_weights;

 this.price=price;

}

public double order(double order_weights){

 if(order_weights>tot_weights){

  return double(-1);

 }

 else{

  tot_weights=tot_weights - order_weights;

  return order_weights*price;

 }

}

public Boolean equals(String fruit1,double wei1,double price1,String fruit2,double wei2,double price2){

 if(((fruit1.equals(fruit2)) &&(wei1==wei2) && (price1==price2))== true ){

  return true

 }

}

public String toString(){

 return fruit_name+" "+tot_weights+" "+price;

}

}

class OnlineSuperMarket{

private Fruit[] fruit_objects;

private String store_name;

private String web_address;

public const static float tax_rate = 0.095;

public const static int size=10;

public const static sn="TBD";

public const static wa="www.unknown.com";

Scanner scan=new Scanner(System.in);

public OnlineSuperMarket(){

 fruit_objects=new Fruit[size];

 store_name = sn;

 web_address = wa;

}

public OnlineSuperMarket(String store_name,String web_address){

 this.store_name=store_name;

 this.web_address=web_address;

 fruit_objects=new Fruit[size];

}

public void init(){

 String fruit_names[];

 double weights[];

 double prices[];

 

 for(int i=0;i<fruit_objects.length;i++){

  fruit_objects[i]=new Fruit(scan.next(),scan.nextDouble(),scan.nextDouble());

 }

}

public void sort(){

 Arrays.sort(fruit_objects);

}

public void run(){

 while(true){

  System.out.println(" Enter a fruit name or Q (or q) to end:");

  String choice= scan.next();

  if(choice = "Q" || choice = "q"){

   quit();

  }

  else{

   if(find(choice)){

    System.out.println("Enter weight in lbs:");

    double weight=new nextDouble();

    double price = order(weight);

    if(price == double(-1)){

     System.out.println("quantity not available");

    }

    else{

     total_cost = price+tax_rate;

     System.out.println("You ordered");

     System.out.println("Fruit: "+choice);

     System.out.println("Weight: "+weight+" lbs");

     System.out.println("Price: "+price+"/lbs");

     System.out.println("Total cost (plus tax): $"+total_cost);

    }

   }

   else{

    System.out.println(choice+" not available");

   }

  }

 }

}

public void showFruits(){

 for(Fruit obj:fruit_objects){

  System.out.println(obj.toString());

 }

}

public void quit(){

 showFruits();

 System.out.println("Thanks for your visit. Please come again!");

 System.exit();

}

public Boolean find(Strign fruit_name){

 sort();

 int first=0;

 int last = fruit_objects.length;

 int mid = (first + last)/2;  

    while( first <= last ){  

       if (fruit_objects[mid] < fruit_name ){  

         first = mid + 1;    

       }else if ( fruit_objects[mid].equals(fruit_name) ){  

         return true;  

         break;  

       }else{  

          last = mid - 1;  

       }  

       mid = (first + last)/2;  

    }  

    if ( first > last ){  

       return false;

    }  

}

}

public class Design{

public static void main(String[] args) {

 OnlineSuperMarket osm=null;

 osm = new OnlineSuperMarket(store_name, web_address);

 init();

 showFruits();

 sort();

 showFruits();

}

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Other Questions
the continuously compounded annual rate of return that would increase the value of an investment by 20% in three years is closest to: data includes information collected from national tv ratings, mystery shopper experiences, and neuromarketing techniques collected for the project at hand. Max weber coined the term ________ to denote the tendency on the part of protestants to work hard and accumulate wealth. PLS HELPPPPPPPPPPPPPPPPPPPPPPPPPPPP Multiply (4x^2 +8)^2 Modals Verb and NounsSomebody ________ my boss every morning.are calledare callingcallcallsA: I thought you cared for me, you know? I really thought you loved me.B: Now, everything ____________.were changedare changedhas changedhave changedNothing ________ forever.are lastedlastshave lastedlastSome of my friends ______ very friendly.iswasaream 2 Shape 1 and Shape 2 are congruent pentagons.Shape 1Shape 2Shape 2 is congruent to Shape 1 because -A.Shape 2 is a translation of Shape 1.B. Shape 2 is a reflection of Shape 1.C. Shape 2 is a rotation of Shape 1.D. Shape 2 and Shape 1 are both pentagons. Does the state of the US economy have an effect on local businesses started by entrepreneurs? Please explain your answer. inactivation of microcystis aeruginosa by peracetic acid combined with ultraviolet: performance and characteristics the distance a falling object travels towards the earth is directly proportional to the square of the time that it falls. if an orange falls 16 feet in 4 seconds, how far will it fall in 8 seconds ? in lady or the tiger What conflict does the young man have? Are his conflicts external or internal? as the spanish began colonizing california in the 1760s, were established along the pacific coast from san diego to san francisco. Again its me, PLEASE PLEASE PLEASE I am so tired its 10 pm and I literally do not know what to do for this question if any of you know what to do please solve it Consideri the expression 5/6(1/2x+6) - 3x Alisa drove from her house to the beach at a speed of 55 miles per hour. If it took her 1.8 hours to get to the beach, about how many miles away from the beach is Alisa's house? i n this chapter, henry a. (hank) rosso offers his philosophy of fund raising, a philosophy developed over a lifetime of work as a fund raiser, consultant, and teacher. the principles on which he founded the fund raising school in 1974 have stood the test of time and culture. so has his philosophy for fund raising. that is why his original chapter in achieving excellence in fund raising is included in this second edition unaltered and in its entirety. a central theme in hanks philosophy and in the way he approached his work was that "fund raising is the servant of philanthropy." he opened and closed the first chapter of his book with that theme. fund raising is not an end in itself. when it becomes that, b HELP ME THIS IS MY FINAL QUESTIONAll of the following are procedures used to reduce the amount of acid rain in the environment except...Select one:a. requiring that catalytic converters be installed on new automobiles.b. installing scrubbers in smokestacks.c. separating sulfur from coal before it is burned.d. using leaded gasoline in automobiles. Write a character sketch for your protagonist in your Module One short story. Include literal, interpretive, and evaluative information. Your character sketch should be 35 complete sentences and include at least three specific details from the text to support your character analysis. Module story: Rules of the game PLEASE HELPPScienceData Line Segment AD=11x+10.6. Find the length of AB and CD. Show all work