What is a promotional activity for a film ?

Answers

Answer 1

Answer: Sometimes called the press junket or film junket, film promotion generally includes press releases, advertising campaigns, merchandising, franchising, media and interviews with the key people involved with the making of the film, like actors and directors.

Explanation:


Related Questions

What is the output of the following program?
if<- 1
repeat
j+1
repeat
display i *j
j<- j+2
until j = 5
if <- i +1
until i = 5

Answers

What subject is this for I’m kind of lost here

answer all for brainliest
Which online note-taking tool allows students to store information on an extensive back-up system?What is one benefit of using a web clipping tool?The editing and formatting features of eNotes allow students to
their notes to help them process the information.What would eNotes be most helpful for?Tonya wants to keep her class schedule, assignments, and notes all in one place. Which online note-taking tool would be the best one to use?How can students use eNotes to edit their notes? Check all that apply.

They can undo text and redo it.
They can cut, copy, and paste text.
They can insert bullets and tables.
They can search using keywords.
They can evaluate their work.One advantage of using online note-taking tools is that they help students?

Answers

Answer:

d

Explanation:

Answer:

yea its D

Explanation:

got it right on edgy baby

If oldSeq is "1100000111" and segment is "11", then "00000111" should be stored in newSeq. If oldSeq is "0000011" and segment is "11", then "00000" should be stored in newSeq. If oldSeq is "1100000111" and segment is "00", then "11000111" should be stored in newSeq. Write the code segment below. Your code segment should meet all specifications and conform to the examples.

Answers

Answer:

Written in Java

The complete program is as follows:

import java.util.Scanner;

public class RemoveString{

public static void main(String [] args){

String oldSeq, newSeq, segment;

Scanner input = new Scanner(System.in);

System.out.print("oldSeq: ");

oldSeq = input.next();

System.out.print("Segment: ");

segment = input.next();

newSeq=oldSeq.replaceFirst(segment, "");

System.out.print("newSeq: "+newSeq);

}

}

Explanation:

This line declares necessary variables

String oldSeq, newSeq, segment;

Scanner input = new Scanner(System.in);

This line prompts user for oldSeq

System.out.print("oldSeq: ");

This line gets oldSeq

oldSeq = input.next();

This line prompts user for Segment

System.out.print("Segment: ");

This line gets segment

segment = input.next();

This line computes newSeq and it works perfectly for the given instances in the question

newSeq=oldSeq.replaceFirst(segment, "");

This line prints newSeq

System.out.print("newSeq: "+newSeq);

4.3 Code Practice: Question 1
Grandma Ester normally gives you hugs for your birthday - one for every year old you are. When you turned 15, she squished you with 15 hugs! This year, she, unfortunately, cannot see you on your birthday, so instead, she wants to send you virtual hugs!

Create a program that prompts the user for how old they are turning and then using a loop, output a virtual hug for every year old they are.

The following prints a single “virtual hug.”

print("**HUG**")

Answers

In python:

age = int(input("How old are you? "))

i = 0

while i < age:

   print("**HUG**")

   i += 1

I hope this helps!

17. Describe bandwidth and give an example. (5pts)​

Answers

Answer:

a range of frequencies within a given band, in particular that used for transmitting a signal.

Explanation:

you only have a serton amount of bandwidth on your phone

They use trasminaron

2. Explain the importance of observing proper behavior in using social
networking sites.​

Answers

Answer:

Explanation:

Instructions
Test if a number grade is an A (greater than or equal to 90). If so, print "Great!"
Hint: Grades may be decimals.
Sample Run
Enter a Number: 98.5
Sample Output
Great!

Answers

In python 3:

grade = float(input("Enter a Number: "))

if grade >= 90:

   print("Great!")

Following are the Program to check the input value:

Program Explanation:

Defining the header file.Defining a main method.Inside the method a float variable "num" is declared that inputs the value.After input the value a conditional statement is defined num value greater than equal to 90, if its true it will print the message "Great! ".

Program:

#include <iostream>//header file

using namespace std;

int main()//main method

{

   float num;//defining a variable

   cout<<"Enter a Number:";//print message

   cin>>num;//input value

   if(num>= 90)//defining if block that checks num value greater than equal to 90

   {

       cout<<"Great!";//print message

   }

   return 0;

}

Output:

Please find the attached file.

Learn more:

brainly.com/question/14267584

What are some ways you deal with stress at school or at home? How could you use those techniques in the workplace?

Answers

Some techniques for managing stress at home and at school that could help in the workplace include active breaks, proper rest, breathing exercises, and yoga.

What is stress?

Stress is a term that refers to the way in which an individual's brain interprets a situation or event that represents difficulty for her life.

One of the main causes of stress is the uncontrolled production and release of hormones that put the individual in an alert attitude that can trigger other symptoms such as:

High blood pressure.Increase in heart rate.Decreased blood sugar levels.

How to combat work stress?

To combat work stress and avoid these symptoms and health conditions, it is advisable to take work situations calmly and relaxed. Additionally, there are activities that can relieve pressure such as:

Practice yoga.Do breathing exercises.Do not take work home.Take active breaks.Rest properly at night.

Learn more about stress in: https://brainly.com/question/1178663

Answer:

take breaks,

Explanation:

Windows can't find the driver for your digital camera. Where is the best place to find the driver?
Call the local camera store.
The manufacturer's website.
The Window's store.
Search the Internet.

Answers

B. The manufacturing website will be the easiest way to find the driver.

Answer:

The manufactured website

Explanation:

An accompaniment to raw vegetables and sometime potato chips and crackers.

Answers

Dips – accompaniment to raw vegetables, and sometime potato chips and crackers. Any mixture of spreads can be used as dips. Appetizers are finger foods usually served prior to a meal, or in between mealtimes, and are also called hors d’oeuvres, antipasti, or starters, and may range from the very simple to the very complex, depending on the occasion and the time devoted to making them. They’re a common accompaniment to aperitifs, cocktails served prior to a meal.

At dinners, banquets and the like, appetizers may be served prior to a meal. This is especially common at weddings when it takes time for the wedding party and guests to get to a reception after the marriage has taken place. Appetizers may be served at long parties that occur after a regular mealtime. A mid-afternoon party where there is no intent to serve dinner, or an evening party that occurs after dinner may feature appetizers so that guests can have the opportunity to snack. . Many restaurants feature a range of appetizers that are ordered just prior to a meal as a first course.

Answer:

give me more points

Explanation:

salanghye ✌️✌️

4.9 code practice question 3 edhesive. Anyone know how to do this??

Answers

Answer:

In Python:

x = 0

for i in range (99, 0, -1):

   x += i

   print(x)

Explanation:

It just works.

The required program written in python 3 which prints the running total of integers from 99 backwards is as follows :

sum = 0

#initialize the sum of the integers to 0

for num in range (99, 0, -1):

#loop through integers starting from 99 and take 1 step backward

sum+=num

#add the iterated value to the number in the sum variable and assign the value to the same variable.

print(sum)

#display the value of sum after each iteration.

Therefore, the output of the program is attached below.

Learn more :https://brainly.com/question/19136274

Whats Your Fav Anime ( I Need Recommendations) :c

Answers

Answer:

aot, h x h, seven deadly sins, the promised neveland, haikyuu :)

Explanation:

The Disastrous Life of Saiki Kusou, Erased, Mob Psycho 100, Demon Slayer

what do points do on brainly

Answers

Being marked brainliest and points make you rank up

Answer:

They rank you and allow you to answer and ask questions

Explanation:

describe how each command is used by matching the command to its purpose

Answers

Answer:

undo-cancels a previously completed action

cut-removes data from its original location and places it on the clipboard

redo- restores a previously canceled location

paste- places data in its final location

copy-duplicated data and places it on the clipboard

Explanation:

Getting started with Excel edg

Sara is developing a website for her friends to share their art projects. She designed a sign-up process so a user can first create an account with a unique STUDENT ID as a username and then enter a valid email address for further communication. Answer plz

Answers

Answer:

Explanation:

The two main things that I believe should be changed would be to require that the new user create a password alongside the Student ID and remove the email address from the sign-up process, instead add the e-mail to the students profile. Doing so would make sure that every student has their own personal account and no-body else can enter their account and take credit for their work. Also, by having the email address in the students profile, anyone that likes their work can easily click on their profile to see their email and send them a message if they need to.

Amun manages a database for a school library. If a library visitor wants to read the newest book that the library owns, what is the easiest way for Amun to find that book?

sort the data

go to the shelves and look for the newest book

filter the data

edit the data

if correct get brainliest

Answers

Answer:

letter a

Explanation:

Answer:

query the data

Explanation:

What is a benefit of the Name Manager feature?
A) add, edit, filter names you have created
B) add, edit, filter predetermined names for cells
C) create a name from a selection
D) rename a worksheet or a workbook

ANSWER: A

Answers

Answer:Its A

Explanation: edge2020

The benefit of the Name Manager feature is to add, edit, and filter names you have created. The correct option is A.

What is the Name Manager feature?

The name manager feature is present in the ribbon present in the window of the tab. To open this, open click the formula tab. For instance, we sometimes utilize names rather than cell references when working with formulas in Excel.

The Name Manager allows us to add new references, update existing references, and delete references as well.

To interact with all declared names and table names in a worksheet, use the Name Manager dialog box. You could want to check for names with mistakes, confirm the reference and value of a name, see or update the descriptive comments, or figure out the scope, for instance.

Therefore, the correct option is A) add, edit, and filter the names you have created.

To learn more about the Name Manager feature, refer to the link:

https://brainly.com/question/27817373

#SPJ2

emerging technology that is becoming popular among consumers

Answers

IoT. IoT is driving business changes by providing the data needed to improve marketing, increase sales, and decrease costs, the report found. ...
Artificial Intelligence (AI) ...
5G. ...
Serverless computing. ...
Blockchain. ...
Robotics. ...
Biometrics. ...
3D printing.

what is the passcode in rogue squadron for the car

Answers

Answer:

ccrof

Explanation:

David has created a lot of styles and now his Quick Style Gallery contains styles he no longer uses.

How can he remove the unwanted styles?

Answers

Do you mind giving me more details to this question

step by step solution

Answer:

C) Right-click the style in the Quick Styles Gallery, and select the Remove from Quick Style Gallery option.

Explanation:

FIRST ACCURATE ANSWER GET BRAINLIEST THX FOLOW AND 5 STAR RATING When you use the internet to help you find information for a research project, what are you using?

Group of answer choices:

a. An off-line database

b. An online database

c. Data investigation

d. Website inspection

Answers

Answer:

B a online data base

Explanation:

When you use the internet to help you find information for a research project, you are using an online database. The correct option is b.

What is an online database?

A database that can be accessed online is one that is accessible over the Internet. An organization can keep important data accessible to staff members, as well as customers and suppliers, by using an online database.

An eCommerce website or customer relationship management software may be powered by an online database. Data modeling, effective data representation and storage, query languages, sensitive data protection and privacy, and distributed computing concerns like concurrent access and fault tolerance are only a few examples of the practical and formal aspects of database design.

Therefore, the correct option is b. An online database.

To learn more about online databases, refer to the link:

https://brainly.com/question/28964112

#SPJ2

WILL MARK BRAILIEST 1111

Answers

Answer:

Flowcharts

Explanation:

Answer:

flow charts

Explanation:

pls add me as bainliest

What is the coordinate plane?

Answers

Answer:

The 3rd

Explanation:

The Coordinate plane consists of four quadrants and... its defined by the X and Y axis

C because you graph your coordinates with the x-axis and the y-axis

Why do programmers use the Turtle Graphics Module in Python?

To assign a value to a variable
To draw on the screen or create images
To evaluate mathematical statements
To print strings and string literals

Answers

The Turtle Graphics Module in Python is used to draw on the screen or create images.

Answer:

To draw on the screen or to create images

Explanation:

I took the test and it was right

What are two terms for bringing media into a project in Gmetrix

Answers

Answer:

Import and Media Browser

Explanation:Can be found in 2.03 Importing with Media Browser

Rest Easy ADDITIONSON, On Wednesday October the 28 We lost a Friend, a Family member, a Loved one.Who Died in his sleep all the fun times we had all the bad times rest easy my friend

Answers

We lost the AMIGOS Beloved Chat RIP

You are able to change the formatting of a table after it is inserted into a placeholder.

True
False

Answers

The correct answers is
True

Todds manager has asked him to write a report on ways to increase safety in the warehouse Todd use the Internet to research statistics in recommendations for improving safety in the workplace he feels like he put together a really strong document that is manager will be pleased however when he is called into the managers office his manager is concerned and tells him that he has been unethical in his work what did todd do

Answers

Answer:

Todd has likely committed plagiarism by not giving citations.

Explanation:

In This question Todd was asked to write a report. And he has used internet resources in his research but from the words of his manager it is very likely that He has committed plagiarism in his report since it is about ethics.

The act of plagiarism is committed when one uses the work(ideas, words, speech, writing) of others without any form of citations to acknowledge the original owner of the work. Plagiarism is unethical and it is considered as fraud. It is a punishable offence since it involves passing off someone else's work as your own idea.

Answer:

He likely did not cite his research, committed plagiarism

which type of operating system is permanently programmed into a hardware device.​

Answers

Answer:

Depends on what Operating System you are using.

do you feel me?
take a look inside my brain
the people always different but it always feels the same
thats the real me
pop the champagne
the haters wanna hurt me and im laughin at the pain

Answers

stayin still eyes close let the wound just pass me by, pain pills nice clothes if i fall i think i'll fly touch me midas, make me part of your design. None to guide us I feel fear for the very last time
Other Questions
Please Help ! Right answers Which of the following is likely to cause widespread damage to an island after an earthquake?1. hurricane2. flood3. tsunami4. tornadoThis is science BTW What state led the way in usini private companies in a practical and impressive way? can someone help me with this? Using five or more sentences, describe petroleum and what it is used for.(I might mark brainliest if it is a good response) :D Choose the fraction that has not been reduced to simplest form. Definition of political map How far is the Moon from Earth? Where will it be relative to its current location 100 years from now? How do you think Santa Anna felt when he surrendered at San Jacinto? Write a journal entry that Santa Anna would have written the day after the surrender. Which multiplication expression is equal to 2/3 divided 1/2 ?A: 2/3 times 1/2B: 2/3 times 2/1C: 3/2 times 1/2D: 3/2 times 2/1 Which statement about the Articles of Confederation is true?A.They created a national government that was much stronger than any individual state governments, which led many citizens to call for stronger state governments.B.They established the United States as a protectorate of Great Britain, capable of creating its own laws but relying on the British armed forces to defend it.C.They were the first constitution of the United States, and they united the newly independent states under a national government with limited power.D.They officially announced the independence of the United States and started the Revolutionary War. which expression is not equivalent to 24+12 Estimate the square root to the nearest hundredth.1. 138=2. 405=3. 800=4. 1150=5. 6500=6. 580=7. 300=8. 250=9. 284=10. 794=thank you Whats the distance of the points (2,-9) and (-1,4) -2m+13=2m-3i dunno the answer the us constitution creates a balance between the state and national governments. This is an example of ____ please give me soft lyric's that is not copyright 3. The most immediate influence of Roman culture on our daily lives can be found in oura. literatureb. architectureC. Scienced. legal system Who captured New Orleans for the Union in 1862?A. David FarragutB. Robert E. LeeC. Ulysses S. GrantD. William Sherman In a honeybee colony, their are drones, workers, and a queen.Each type of bee fulfills its own specialized role, but all worktogether for the benefit of the hole hive.