____must cooperate with each other to neutralize the global threat of information censorship. Select 3 options.
The media
The web brigade
Bot armies
Civil society
The private sector​

Answers

Answer 1

The media must cooperate with each other to neutralize the global threat of information censorship. The correct option is the A.

What is the media?

The media is the group that collect information about the world and then provide it to the public. It is the main medium to get information about what is going on in the world.

Thus, the correct option is A.

Learn more about the media

https://brainly.com/question/21333773

#SPJ1

Answer 2

Answer:

the private sector

civil society

the media

Explanation:

took the test


Related Questions

function of mini computer?

Answers

A mini computer, also known as a minicomputer or midrange computer, is a type of computer that falls between mainframe computers and microcomputers in terms of processing power, storage capacity, and overall size. The function of a mini computer is to provide computing capabilities for tasks that require more processing power and storage than microcomputers can offer, but are not as resource-intensive as those handled by mainframe computers. Here are some key functions of mini computers:

1. Data processing and analysis: Mini computers excel at handling complex calculations, data processing, and analysis tasks. They are capable of executing multiple tasks concurrently and can efficiently process and manipulate large datasets.

2. Server applications: Mini computers can serve as powerful servers, handling tasks such as network management, file sharing, and hosting websites or applications for small to medium-sized organizations.

3. Scientific and engineering applications: Mini computers are well-suited for scientific research, engineering simulations, and other technical applications that require substantial computational power and memory.

4. Database management: Mini computers can efficiently manage and process large databases, making them suitable for database-intensive applications such as inventory management, customer relationship management (CRM), and financial systems.

5. Control systems: Mini computers are often used in industrial settings to control and monitor processes, machinery, and equipment. They can handle real-time data acquisition, monitoring, and control, ensuring smooth operations in manufacturing, automation, and other industrial sectors.

6. Multi-user environments: Mini computers support multiple users simultaneously, allowing them to share system resources and access the same computing environment, making them suitable for collaborative work and multi-user applications.

Overall, the function of a mini computer is to provide a balance between processing power, storage capacity, and cost-effectiveness, making it a suitable choice for a wide range of applications that require moderate to high computing capabilities but do not warrant the use of mainframe computers or supercomputers.

For more such questions on microcomputers, click on:

https://brainly.com/question/5154911

#SPJ11

what would be a suggested way to share and sustain knowledge with members in a agile team

Answers

Answer:

Here are some suggestions for sharing and sustaining knowledge in an agile team:

Daily stand-up meetings: Use daily stand-up meetings to share updates, progress, and any knowledge or information relevant to the team.

Documentation: Encourage the creation of documentation, such as user stories, product backlogs, and technical specifications, to capture and maintain information about the project.

Collaborative tools: Use collaboration tools like wikis, instant messaging, or document management systems to promote knowledge sharing and accessibility.

Cross-training: Arrange for cross-training sessions where team members can learn about each other's work, tools, and processes.

Retrospectives: Use retrospectives to reflect on the team's work and identify areas for improvement, including opportunities to share knowledge and information more effectively.

Peer reviews: Encourage peer reviews to identify areas where team members can learn from each other, provide feedback, and transfer knowledge.

Explanation:

Refuting the
counterclaim wifi strengthen your argument most.
A. most popular
OB. weakest
C. oldest
D. most obscure
SUB

Answers

None of the given options convincingly support the counterclaim that Wi-Fi strengthens an argument the most.

A. "Most popular": Wi-Fi popularity does not strengthen an argument. Technology's popularity doesn't necessarily bolster an argument. Wi-Fi's ubiquitous use and convenience don't necessarily strengthen an argument.

B. "Weakest": Wi-Fi is the weakest argument-strengthening component, contradicting the counterclaim. Wi-Fi's weakness in this scenario is unclear without more information.

C. "Oldest": Wi-Fi may not be the strongest argument-strengthening component. Technology's age doesn't always improve arguments. Relevance, dependability, and context determine Wi-Fi's argument-strengthening power.

D. "Most obscure": Wi-Fi being the most obscure would enhance an argument the most. Wi-Fi's obscurity does not strengthen an argument. If the audience doesn't comprehend a technique or concept, it may weaken an argument.

Learn more about counterclaim, here:

https://brainly.com/question/1757292

#SPJ1

Jump to level 1
Given a string, an integer position, and a character, all on separate lines, find the character of the string in that position and
replace it with the character read. Then, output the result.

Ex: If the input is:

warn
0
e

the output is:

earn

Note: Using a pre-defined string function, the solution can be just one line of code.

I am looking for the code for C++ NOT Python. Thanks

Answers

Answer:

Assuming the input string variable is named `input`, the input int variable is named `index`, and the input char variable is named `ch`:

```

input[index] = ch;

cout << input;

```

Explanation:

In C++, you can change specific elements of a string without having to overwrite the entire string (i.e. in C++, strings are mutable).

Write a program with total change amount as an integer input that outputs the change using the fewest coins, one coin type per line. The coin types are dollars, quarters, dimes, nickels, and pennies. Use singular and plural coin names as appropriate, like 1 penny vs. 2 pennies. Ex: If the input is: 0 or less, the output is: no change Ex: If the input is: 45 the output is: 1 quarter 2 dimes

Answers

Answer:.

// Program is written in C++.

// Comments are used for explanatory purposes

// Program starts here..

#include<iostream>

using namespace std;

int main()

{

// Declare Variables

int amount, dollar, quarter, dime, nickel, penny;

// Prompt user for input

cout<<"Amount: ";

cin>>amount;

// Check if input is less than 1

if(amount<=0)

{

cout<<"No Change";

}

else

{

// Convert amount to various coins

dollar = amount/100;

amount = amount%100;

quarter = amount/25;

amount = amount%25;

dime = amount/10;

amount = amount%10;

nickel = amount/5;

penny = amount%5;

// Print results

if(dollar>=1)

{

if(dollar == 1)

{

cout<<dollar<<" dollar\n";

}

else

{

cout<<dollar<<" dollars\n";

}

}

if(quarter>=1)

{

if(quarter== 1)

{

cout<<quarter<<" quarter\n";

}

else

{

cout<<quarter<<" quarters\n";

}

}

if(dime>=1)

{

if(dime == 1)

{

cout<<dime<<" dime\n";

}

else

{

cout<<dime<<" dimes\n";

}

}

if(nickel>=1)

{

if(nickel == 1)

{

cout<<nickel<<" nickel\n";

}

else

{

cout<<nickel<<" nickels\n";

}

}

if(penny>=1)

{

if(penny == 1)

{

cout<<penny<<" penny\n";

}

else

{

cout<<penny<<" pennies\n";

}

}

}

return 0;

}

What is the output of this program? age=4 if age >5: print (“more”) else: print (“less”)

Answers

Answer:

less

Explanation:

The input is 4, a number that is not greater than 5. So as a result, it will print "less".

cs academy unit 8.3.2 Shirt Design

cs academy unit 8.3.2 Shirt Design

Answers

In order to fix the code and make it work, you can try the following corrections:

How to explain the program

# Import the necessary libraries here

# Set the background color

app.background = 'pink'

# Draw the shirt

Polygon(5, 175, 85, 60, 315, 60, 395, 175, 330, 235, 290, 190, 300, 355, 100, 355, 110, 190, 70, 237, fill='lavenderBlush')

Arc(200, 60, 95, 70, 90, 180, opacity=10)

# Use a loop to draw stars

for radius in range(10, 100, 5):

   # Draw a crimson star whenever the radius is a multiple of 10 and a white star otherwise

   if radius % 10 == 0:

       Star(200, 210, radius, 6, fill='red')

   else:

       Star(200, 210, radius, 6, fill='white')

# Display the graphic

# Add code here to show or update the graphic window

Learn more about program on

https://brainly.com/question/26642771

#SPJ1

Which phrase best describes a data scientist?
A. A person who develops advanced computing languages
B. A person who designs and develops hardware for computers
C. A person who builds and installs the memory chips for household
appliances
OD. A person who uses scientific and statistical methods to analyze
and interpret large, complex digital data sets
W
SUBMIT

Answers

Answer:

D. A person who uses scientific and statistical methods to analyze and interpret large, complex digital data sets.

Explanation:

The movie polar express was critically acclaimed due to the unbelievably lifelike movements of Tom Hanks character

Answers

I think it is greyhound

Answer:

False

Explanation:

Choose the words that make the statement true. You wrote a program called firstProgram.

Your program is _____.

O always running in the background

O stored until you open the file

Answers

Answer:

Stored until you open the file

Explanation:

Your program is stored until you open the file.

-edge 2022

You wrote a program called first Program. Your program is stored until you open the file. The second option is correct.

What is program?

A program is made from code of instructions. A program is saved for later use.

When a program is opened, it is in running condition until it is closed. But when it is not in use, it gets stored at a location for next use.

You wrote a program called first Program. Your program is stored until you open the file.

Thus, the second option is correct.

Learn more about program.

https://brainly.com/question/3224396

#SPJ2

Banks will pay you interest on your money based on the interest rate. True or false?​

Answers

Answer:

The bank will pay you for every dollar you keep in your savings account. The money the bank pays you is called interest. How much the bank pays can change from month to month. The amount the bank pays is talked about as a percentage.

Explanation:

it is where the home tab is located where you can view all the all the formatting purpose

it is where the home tab is located where you can view all the all the formatting purpose

Answers

Answer:

Its Ribbon

Explanation:

The Ribbon is located close to the top of the Word window. The Ribbon is organized into a set of task-oriented tabs, and each tab on the Ribbon contains groups of commands. The Home Tab contains the most frequently used commands in Word. To get to another tab on the Ribbon click that particular tab.

Btw Correct me if i am wrong

Which statement is true?

You can use the time module when you first open IDLE.

While the time module is part of the Python Standard Library, you must load the module into active memory in order to use its methods and functions.

After you install Python, you need to download the time module from the Python website before you can use it.

You can access the time module by using an "insert time" statement.

Answers

Answer:

B

Explanation:

The time module is part of the PSL, and with any library, you need to load the module into memory to use its features.

When using IDLE, you CANNOT run a Python program module without saving it.

Why does excel include so many different ways to execute the same commands ?.

Answers

Excel includes so many different ways to execute the same commands for sake of flexibility and speed.

What is excel?

Microsoft Excel is a spreadsheet program developed by Microsoft that is available for Windows, macOS, Android, and iOS. It includes calculating or computation skills, graphing tools, pivot tables, and Visual Basic for Applications, a macro programming language. Excel is part of the Microsoft Office software suite.

Excel is a spreadsheet program that is used to store, analyze, and report on enormous quantities of data. Accounting teams frequently use it for financial analysis, but it can be used by any professional to handle vast and cumbersome information. Balance sheets, budgets, and editorial calendars are examples of Excel applications.

Learn more about excel:
https://brainly.com/question/24202382
#SPJ1

The Payroll Department keeps a list of employee information for each pay period in a text file. The format of each line of the file is the following: Write a program that inputs a filename from the user and prints to the terminal a report of the wages paid to the employees for the given period. The report should be in tabular forma

Answers

Answer:

In Python:

fname = input("Filename: ")

a_file = open(fname)

lines = a_file.readlines()

print("Name\t\tHours\t\tTotal Pay")

for line in lines:

eachline = line.rstrip(" ")

for cont in eachline:

 print(cont,end="\t")

print()

Explanation:

This prompts the user for file name

fname = input("Filename: ")

This opens the file

a_file = open(fname)

This reads the lines of the file

lines = a_file.readlines()

This prints the header of the report

print("Name\t\tHours\t\tTotal Pay")

This iterates through the content of each line

for line in lines:

This splits each line into tokens

eachline = line.rstrip(" ")

This iterates through the token and print the content of the file

for cont in eachline:

 print(cont,end="\t")

print()

how can i create this matrix using only ones eye and zeros and eye in matlab

A =
-3 4 0
4 -3 4
0 4 -3
thanks!!

Answers

In Matlab, you can create the matrix A = -3 4 0 4 -3 4 0 4 -3 by using the following code:

A = [-3 4 0; 4 -3 4; 0 4 -3]

What is the matlab  about?

The above code creates the matrix A with the values -3, 4, 0, 4, -3, 4, 0, 4, -3 arranged in the specified order. The semicolons indicate the end of a row, and the values between them are separated by spaces.

Alternatively, you can create the matrix using the eye and zeros functions:

A = -3*eye(3) + 4*(eye(3) == 0)

Therefore, this code creates a 3x3 identity matrix using the eye(3) function, then it multiplies each element of the matrix by -3 using scalar multiplication and finally it replaces the zeroes with 4 using the logical operator ==0. Both methods will create the same matrix A = -3 4 0 4 -3 4 0 4 -3

Learn more about matlab from

https://brainly.com/question/13715760

#SPJ1

John's father specifically asked him to get a magnetic disk from the store in his neighborhood. What should John buy?
A. a floppy disk
B. a DVD
C. a CD-ROM
D. a Blu-ray disk

Answers

Answer:

A floppy disk

Explanation:

A floppy disk uses a thin sheet of magnetic material to store data. It would make the most sense as the other choices use an entirely different system.

Write a python program that takes two lists as input from the user, multiplies the index wise elements of the two lists and adds it to a new variable. While doing the program you should handle the following exceptions: Return an exception if an element in a list is not a number stating “The list has some non number values”. Return an exception if there is an index out of bound stating “Index out of bound”. ============================= Example 1: Input: list_one = [1, a, 2, 4] list_two =[5, 6, 7, 8] Output: The list has some non number values

Answers

Answer:

list_one=[]

list_two=[]

list_three=[]

str1=input("list_one:")

for i in str1:

   if i.isdigit():

       i=int(i)

       list_one.append(i)

   elif i.isalpha():

       list_one.append(i)

str2=input("list_two:")

for i in str2:

   if i.isdigit():

       i=int(i)

       list_two.append(i)

   elif i.isalpha():

       list_two.append(i)

print(list_one)

print(list_two)

if len(list_one)==len(list_two):

   for i in range(len(list_one)):

       multiply=list_one[i]*list_two[i]

       add=str(multiply)

       list_three.append(add)

else:

   print("Index out of bound")

n=0

for i in list_three:

   if i.isdigit():

           n+=1

   else:

       print("The list has some non number values")

print(list_three)

Which of these options is an example of a nested structure?A.
for loop
B.
while loop
C.
if-then-else loop
D.
if else inside a for loop

Answers

Answer:

D. if else inside a for loop

Explanation:

Infringement Less than 13km/h over the speed limit At least 13km/h but not more than 20km/h over the speed limit More than 20km/h but not more than 30km/h over the speed limit More than 30km/h but not more than 40km/h over the speed limit More than 40km/h over the speed limit Penalty amount $177 $266 $444 $622 $1.245 Demerit points 1 3 4 6 8 Note: the way the government website has written this (and we've copied it) is NOT efficient in terms of decision structures. This written for each condition to stand alone (if, if, if) but we can tell its mutually exclusive and so know a better tool for the job don Avoid a 6-month suspension by writing a program to ask for the user's: • speed and the • speed limit
program in python?​

Answers

The example of the program in Python to help one to calculate the penalty amount as well as the demerit points based on the speed and speed limit provided by the user is given in the code below

What is the program?

python

def calculate_penalty(speed, speed_limit):

   penalty_amount = 0

   demerit_points = 0

   if speed <= speed_limit:

       return penalty_amount, demerit_points

   overspeed = speed - speed_limit

   if overspeed <= 13:

       penalty_amount = 177

       demerit_points = 1

   elif overspeed <= 20:

       penalty_amount = 266

       demerit_points = 3

   elif overspeed <= 30:

       penalty_amount = 444

      demerit_points = 4

   elif overspeed <= 40:

       penalty_amount = 622

       demerit_points = 6

   else:

       penalty_amount = 1245

       demerit_points = 8

   return penalty_amount, demerit_points

# Get user input

speed = int(input("Enter the recorded speed (in km/h): "))

speed_limit = int(input("Enter the speed limit (in km/h): "))

# Calculate penalty and demerit points

penalty, points = calculate_penalty(speed, speed_limit)

# Display the results

print("Penalty amount: $", penalty)

print("Demerit points: ", points)

Read more about python here:

https://brainly.com/question/30113981

#SPJ1

Rank the order of venders keeping Amazon’s goals in mind

Rank the order of venders keeping Amazons goals in mind

Answers

Rankings are determined for several reasons. The vendors that best satisfy Amazon's objectives are listed in Rank order as follows:

Vendor E - FirstVendor R - SecondVendor  K -Third Vendor F - Fourth

What is the vendor ranking about?

When evaluating vendors, companies typically have a set of parameters or criteria that they use to determine which vendor is the best fit for their needs. These parameters can include things like cost, quantity, shipping time, and cost to the company.

In this scenario, Vendor E is ranking first because it is meeting the majority of the company's parameters. The low cost issues, low quantity, high shipped on time, and low cost to Amazon all indicate that Vendor E is providing a high level of service and is a cost-effective choice for the company.

On the other hand, Vendor K is ranking lower because it is not meeting some of the company's parameters as well as Vendor E. Vendor K has low cost issues, moderate quantity shipped, high quantity shipped and high cost to Amazon, indicating that it may not be as cost-effective or reliable as Vendor E.

In all, Vendor E is ranking first because it is meeting the majority of the company's parameters, indicating that it is a good fit for the company's needs and it is a cost-effective choice.

Learn more about Amazon from

https://brainly.com/question/26188227

#SPJ1

A _______ is one typed character.
-gigabyte
-byte
-megabyte
-kilobyte
-terabyte

Answers

A bite byte bight beight

: "I have a customer who is very taciturn."

: "I have a customer who is very taciturn."

Answers

The client typically communicates in a reserved or silent manner

B. He won't speak with you.

Why are some customers taciturn?

People who are taciturn communicate less and more concisely. These individuals do not value verbosity. Many of them may also be introverts, but I lack the scientific evidence to support that assertion, so I won't make any inferences or make conclusions of that nature.

The phrase itself alludes to the characteristic of reticence, of coming out as distant and uncommunicative. A taciturn individual may be bashful, naturally reserved, or snooty.

Learn more about taciturn people here:

https://brainly.com/question/30094511

#SPJ1

Explanation of how 3D printing gives SpaceX a competitive advantage
and
Discussion of how business intelligence is used or could be used to support SpaceX's 3D printing process

Answers

SpaceX gains a competitive advantage with the implementation of 3D printing technology, which provides an economical solution to producing lightweight and customizable parts that are intricate in design.

How is this so?

The use of this cutting-edge technology facilitates rapid iteration, reducing both developmental costs and time. It enables the company to manufacture these materials in-house, thereby averting external supply chain inefficiencies.

Moreover, by using Business Intelligence tools to analyze data related to some factors as part performance and supply chain logistics, it becomes easier for SpaceX not only to monitor the operational efficiency of its manufactured products but also spot possible optimization opportunities.

Learn more about 3D printing at:

https://brainly.com/question/30348821

#SPJ1

check image dont answer if you dont know please

check image dont answer if you dont know please

Answers

Answer:

Explanation:

1-2nd option

2-1st option

3-last option

hope this helps!! have a good rest of ur day!! <3

Challenge activity 1.3.6:output basics.for activities with output like below,your output's whitespace(newlines or spaces) must match exactly.see this note.write code that outputs the following.end with a newline.This weekend will be nice.​

Answers

In python:

print("This weekend will be nice.")

I hope this helps!

1) What is Database? List its Uses.

Answers

Answer:

a database stores a large sum of data

Explanation:

its used to keep track of things like student names bank accounts and other things

Lidia is assigning her first name as the value to a variable. Which is the correct format to use? firstName = "Lidia" First Name = "Lidia" firstName! = "Lidia" firstName = Lidia

Answers

Answer:

firstName = "Lidia"

Explanation:

firstName = "Lidia"

Answer:

firstName = "Lidia"

Explanation:

you declare a variable by

variableName = value

her name is of data type string, so it should be enclosed in " "

SQL provides all the necessary functionalities for managing and analyzing big data. Group of answer choices True

Answers

SQL provides all the necessary functionalities for managing and analyzing big data is a true statement.

What is the role of SQL?

SQL is known to be a term that connote Structured Query Language (SQL). It is regarded as  a standardized programming language that is often employed to handle relational databases and carry out various operations on the data in them.

It is often used by big firms to access, read, work on , and analyze the data stored in a database and they also help to get useful insights to push an informed decision-making process.

Learn more about SQL from

https://brainly.com/question/25694408

Assistive technology has gained currency in the 21st century since it facilitates the inclusion agenda in the country.Give four reasons to justify your point.​

Answers

Answer:

Assistive technology has gained currency in the 21st century because it provides various benefits that support inclusion. These include:

Increased accessibility: Assistive technology can make it easier for individuals with disabilities to access and interact with technology and digital content. This can increase their independence and enable them to participate more fully in society.Improved communication: Assistive technology can facilitate communication for individuals with speech or hearing impairments, enabling them to express themselves and connect with others.Enhanced learning opportunities: Assistive technology can provide students with disabilities with access to educational materials and resources, enabling them to learn and succeed in school.Greater employment opportunities: Assistive technology can provide individuals with disabilities with the tools they need to perform job tasks and participate in the workforce, increasing their opportunities for employment and economic independence.

Explanation:

Assistive technology refers to tools, devices, and software that are designed to support individuals with disabilities. In recent years, assistive technology has become increasingly important in promoting inclusion and accessibility for people with disabilities. The four reasons mentioned above provide a brief overview of the key benefits that assistive technology can offer, including increased accessibility, improved communication, enhanced learning opportunities, and greater employment opportunities. These benefits can help individuals with disabilities to participate more fully in society, achieve greater independence, and improve their quality of life.

Other Questions
Why do insects use sound please help with question!! find the solution -b2+2b=0 help asap!! worth 15 points Select the correct answer. A student is writing a personal narrative about his first trip to the ocean. Read this sentence from his narrative. The rough sea was kind of greenish blue by the shore but then it changed to a dark blue in the deeper parts where it looked like it might rain. How could the sentence best be rewritten using sensory language? A. The sea was turbulent and turquoise in color, contrasting with dark rain clouds that hung over the deep cerulean blue sea. B. Rain clouds formed over the deep blue part of the ocean, as compared to the rough sea that was a turquoise color by the shore. C. The sea was violent and turquoise along the shoreline, but it was darker blue and storm clouds were looming on the horizon. D. The turbulent sea, turquoise where the waves broke along the shore, transformed into a cerulean blue where rain clouds hovered over the deep. Will mark branilest!! layers of the earth separated based on density differences. true false how were lanterns spread across the world? These elements look like steps on the periodic table. They share properties of both metals and nonmetals. Computer chips contain elements from this family.A) these elements are nonmetalsB) These elements are radioactiveC) these elements are metalloidsD) these elements are metals 1. Assume:Yd = $194,000b = .90a = $ 8,000A)What is consumption (C) ?B)What are savings (S) ?C)What is APC ?D)What is APS ?2. Assume:Yd = $ 5000 billionb = .95a = $ 520 billionA)What is consumption (C) ?B)What are savings (S) ?C)What is APC ?D)What is APS ?3. For the following problem, assume that the MPC, b, takes into account how much consumers spend as total income (Y) in the economy is changes. (Also: Hint GDP = Total Y) So we can rewrite our consumption function as :C= a +bYAssume:a= $2900 billionb=.75GDP= $9,000 billion.A) What is C=B) What is S=C) If consumers were the only ones buying goods in the economy, would the economy have an excess supply of goods, excess demand of goods or would the economy be at equilibrium ? Consider the following Python function:def f(n): # assume n is a positive integerfor i in range(n):print(i)returnSelect what is the O-notation for the code segment above:Choice 1 of 7:O(1)Choice 2 of 7:O(log n)Choice 3 of 7:O(n)Choice 4 of 7:O(n log n)Choice 5 of 7:O(n^2)Choice 6 of 7:O(n^3)Choice 7 of 7:O(2^n) In 35 words or fewer, write an argument from the perspective of an avid water-skier who wants lake powell to remain accessible to motorboats. Leo places a plant in front of the center of curvature of a concave mirror. Which characteristics will the image of the plant have? Check all that apply. A gunshot wound would be classified under which category of surgery based on urgency? A man exerts 500 Newtons of force to move a piece of furniture 2 meters. If it takes him 4 seconds to move the furniture, how much power does it require? Find the measure of arc BC given m 215 pointsWhat is text evidence?Choose the 2 BEST answers.information or detail you find in the text that helps support your answer to a question prompta quotation or paraphrase that helps strengthen or support a claima sequence of events in chronological orderoriginal ideas you have about the textyour own reasoning about the the text you are writing about in a _______________, the supplier works with the customer to jointly design the product; whereas in a _______________, suppliers are provided with general requirements and are asked to fill in the technical specifications. Directions: Match the terms from the box with the correct phrases below.distanceamount of chargecharging by inductionconductorgroundinginsulatorelectric fieldelectric forcelightning9._____a factor that the force between charges depends on what will you do if you got chances to meet your favourite fictional characters