When Twitter is used to gather a large group for a face-to-face meeting it is called a

Answers

Answer 1
Answer: When Twitter is used to gather a large group for a face-to-face meeting it is called a Flash mob.

Related Questions

The limit for characters in modern file systems is too small to accommodate keywords in titles
What knowledge must a coding and reimbursement specialist have?
three analog signals, having bandwidths 1200 hz, 600 hz, and 600 hz are sampled at their respective nyquist rates, encoded with 12 bit words, and time division multiplexed. the bit rate for the multiplexed signal is
I want the honest opinions. I'm doing a report for school and I decided to compare five phones. The Iphone 6 PlusThe Samsung Galazy S5LG G3Nokia Lumia 1520Nexus 6If I could get a couple of opinions which one you would choose and why that would be awesome!
Maria is an experienced programmer who has worked on different projects. she was recently promoted to be a software development team leader. what skills must programmers like maria exemplify in order to do well as a team leader?

A(n) __________ describes a set of well-defined logical steps that must be taken to perform a task1. logarithm
2. plan of action
3. logic schedule
4. algorithm

Answers

4. Algorithm, this is correct as the use of an algorithm shows the way in which a problem is solved

You just read a movie review on the internet of the latest blockbuster movie to hit theaters. The writer of the article said the movie was slow and lacked a story line. Select the correct statement. Question 1 options: (1) The movie review contains data but is not data itself (2) The movie review is facts (3) Movie reviews are not data (4) The movie review is data

Answers

Based on the given statement above, the answer would be option 1. The correct statement based on the given passage above about a movie is that, the movie review contains data but is not data itself. Hope this is the answer that you are looking for. Have a great day!

Answer:

1

Explanation:

____________ provides the architect opportunity to electronically plan and place elements of a building.a. CATIA
c. CAD
b. Drafting
d. Landscape software

Answers

CAD provides the architect opportunity to electronically plan and place elements of a building. The correct option among all the options that are given in the question is option "c". The full form of CAD is Computer Aided Design. It gives the designers the opportunity to create three dimensional pictures.

CAD provides the architect opportunity to electronically plan and place elements of a building. Correct answer: C CAD stands for Computer-Aided Design. CAD is a computer technology used by architects, engineers, drafters, artists, and others to designs a product and documents the design's process.

Being able to express your thoughts in an email is a primary technology skill. True or False

Answers

true!
why?
because you need to use a lot of your brain just to right a letter to someone.
Bye!=)

Answer:

I thinks its False, because it kinda doesn't make since for that to be a technology skill. Hope this helps!

Explanation:

Pick a number You will write a program that will simulate the game where two players try to guess a number and the one who's closest wins.
1. Random secret number from 1 to 10 or any larger range if you want.
2. Two players will guess
3. Determine who was closest.
4. Display the results of the round in a neat and organized fashion.
5. Add some kind of style to your print outs so that your display is nice

Answers

In python 3+:

import random

secret_number = random.randint(1,10)

guess_one = int(input("Enter player one's guess: "))

guess_two = int(input("Enter player two's guess: "))

if abs(guess_one - secret_number) < abs(guess_two - secret_number):

   print(f"The secret number is {secret_number} and player 1 was closest")

elif abs(guess_one - secret_number) > abs(guess_two - secret_number):

   print(f"The secret number is {secret_number} and player 2 was closest")

else:

   print(f"The secret number is {secret_number} and it was a tie")

I hope this helps!

A class named Clock has two instance variables: hours (type int) and isTicking (type boolean). Write a constructor that takes a reference to an existing Clock object as a parameter and copies that object's instance variables to the object being created. Your task: Write a Clock constructor that makes this possible. Just write this constructor -- don't write the whole class or any code outside of the class!

Answers

Answer:

The following are the code for the constructor.

public Clock (Clock c) //define constructor

{

hours = c.hours; // holding the value in the hour variable

isTicking = c.isTicking;// holding the value in the hour variable

}

Explanation:

The following are the description of the code.

  • Firstly, we define the constructor 'Clock()' because the constructor name is the same as the class name and declares the object of the class that is 'c' in the parameter of the constructor.
  • Finally, copies the instance variables (which are already declared) of the object to that object that is formed.