1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Svet_ta [14]
3 years ago
11

Consider a scenario in which you are trying to communicate to your parents that you should have a later curfew. Write a dialogue

between you and your parent(s) detailing this conversation. Keep in mind the principles of communication.
Computers and Technology
2 answers:
Gemiola [76]3 years ago
5 0

Explanation:

In this example, the scenario will be the fact that I have started high school. I believe that because of this, my curfew should be different. This is an example of a dialogue that would discuss this

Me: I need a later curfew I have so much things to do and don't have time to do what I want , i am 16 now.

Mom: no you need to go to bed early so you can do what you need not what you want.

Me:ok ,  make you happy for now but if you don't let me now I'm going to later this will cause experiences that I have never encountered later in life that I could know about sooner but couldn't because i was restricted and when I have less common sense then everyone when I'm older it's your fault

IrinaVladis [17]3 years ago
4 0

When trying to explain an idea, or belief to your parents, its important to do so in a polite, but assertive way. It is good to come in prepared, and to also listen to what they have to say. Using body language, and nonverbal cues, can help better your argument, as well as explaining things further. Parents often have rules in place to keep one safe, so it is important to take this into account. A good example showcase such a conversation would be one of discussing a later curfew. A good way to go about so can be such: (Parent is P and child is C)

C: I believe, since I'm older, that this should grant a later curfew.

P: Your age doesn't determine your curfew. You can already stay out late enough as it is.

C: I would respectfully like to disagree with you on that. I now have a car, and can take myself places, I am no longer reliant on you for a ride. Because f this I can now go more places, maybe even get a job, or hang out with my friends a little more.

P: Your curfew is not there for entertainment purpose, it's there to keep you safe, and prevent you from neglecting the tasks you need to do.

C: I understand your beliefs, but it is also important for a kid my age to grow a sense of independence, so that when the time comes, I am not a helpless fool. This also would help me become more self reliant, and despite you wanting to keep me safe and protected, it is important for me to learn on my own accord too, which involves making my own mistakes. Getting what I need done is important as well, but such responsibilites, will help me better my time managment as well. 

P: I still don't believe it is such a good idea.

C: I understand, though I ask that you please think about it, and maybe even discus it more with me at a later time.

I help that this is helpful, it gave me 100% on Ed 2021

You might be interested in
Implement the following logic in C++, Use appropriate data types. Data types are represented as either numeric (num) or string.
ICE Princess25 [194]

Answer:

Follows are the modified code in c++ language:

#include<iostream>//header file

#include<string>//header file

using namespace std;

int main()//main method

{

string name,address, MSG_YES, MSG_NO;//defining string variable

int item,quantity,size=6, i=0;//defining integer variable

double price;//defining double variable  

int VALID_ITEM[]={106,108,307,405,457,688};//defining integer array and assign value

double VALID_ITEM_PRICE[]={0.59,0.99,4.50,15.99,17.50,39.00};//defining double array and assign value

bool foundIt=false;//defining bool variable  

MSG_YES="Item available";//use string variable to assign value

MSG_NO = "Item not found"; //use string variable to assign value

cout<<"Input name: ";//print message

cin>>name;//input value in string variable

cout<<"Input Address: ";//print message

cin>>address;//input value in string variable

cout<<"Input Item: "<<endl;//print message

cin>>item;//input value in string variable

cout<<"Input Quantity: "<<endl;//print message

cin>>quantity;//input value in string variable

while(i <size)//defining while that checks i less then size  

{

if (item ==VALID_ITEM[i]) //use if block to match item in double array

{

foundIt = true;//change bool variable value

price = VALID_ITEM_PRICE[i];//hold item price value in price variable  

}

i++;//increment the value of i

}

if (foundIt == true)//use if to check bool variable value equal to true

{

cout<<MSG_YES<<endl;//print value

cout<<"Quantity "<<quantity<<" at "<<"Price "<<price<<"each"<<endl;//print value

cout<<"Total"<<quantity*price;//calculate the total value

}

else//else block

cout<<MSG_NO;//print message  

}

Output:

please find the attached file.

Explanation:

In the above given C++ language modified code, four-string variable " name, address, MSG_YES, and MSG_NO", four integer variable "item, quantity, size, and i", and "integer and double" array is defined, that holds values.

In the string and integer variable "name, address, and item, quantity", we input value from the user-end and use the while loop, which uses the if block to check the "item and quantity" value from the user end and print its respective value.

6 0
4 years ago
In 2-4 sentences, explain the difference between the “save” and the “save as” commands.
yuradex [85]
The "save" command means to save it again, or to save the changes you made to an already saved document. The "save as" command means to save it for the first time and you enter in what you want to name to document youre saving
4 0
4 years ago
Read 2 more answers
Write MVCTester.java. When the program starts, the initial screen displays a button labeled "add", a blank text area, and a text
Debora [2.8K]

Answer:

Kindly note that, you're to replace "at" with shift 2 as the brainly text editor can't take the symbol

Explanation:

import java.awt.event.*;  

import java.awt.geom.Area;

import javax.swing.*;

class MVCTester implements ActionListener{

JButton b; //button

JTextField t1; //textfiled

JTextArea area; //text area

MVCTester(){

JFrame f=new JFrame("Button Example");

//button

b=new JButton("add");  

b.setBounds(0,0,125,27);  

f.add(b);  

b.addActionListener(this);  

//textfiled

t1=new JTextField();  

t1.setBounds(0,161,125,24);  

f.add(t1);

//textarea

area=new JTextArea();  

area.setBounds(0,28,123,130);  

f.add(area);

area.setColumns (17);

area.setLineWrap (true);

area.setWrapStyleWord (false);

f.setSize(125,225);

f.setLayout(null);  

f.setVisible(true);

}

"at"Override

public void actionPerformed(ActionEvent arg0) {

Control c=new Control(area,t1,b);

}  

}  

class Control {

Control(JTextArea area,JTextField t1,JButton b){

//simple logic getting text of text area adding text of textfiled and setting the text to text area

area.setText(area.getText()+t1.getText()+"\n");

t1.setText("");

}

}

public class Modal{

public static void main(String[] args) {  

MVCTester be=new MVCTester();

}

}

8 0
3 years ago
Read 2 more answers
Define the term editing​
Harrizon [31]

Answer:

editing is a word file mean making changes in the text contain is a file. or a word file is one of the most basic ms office word operation.

8 0
3 years ago
Using symbols in a file name is a good idea.<br><br> True<br> False
zavuch27 [327]
False. File names should only contain letters, underscores, periods, and dashes.
4 0
3 years ago
Read 2 more answers
Other questions:
  • Hello... does anyone know why Brainly notifications aren’t working???
    11·2 answers
  • Allow the user to enter a series of temperatures in degrees Celsius (C) ter-
    11·1 answer
  • Allison, a very close friend of yours, is about to give a presentation to the class. You know that she has procrastinated and is
    14·2 answers
  • Which of the following is an open-source web browser?
    8·2 answers
  • What are like arms surrounding all the other code blocks?
    11·2 answers
  • Can you help me in this question
    13·1 answer
  • Central High School has a graphics design course that is developing a historical online archive of the school. The original phot
    15·2 answers
  • When people receive benefits just because they belong to a particular identity group, this is called
    14·1 answer
  • Please help with question
    14·1 answer
  • HURRYY!!!<br> In the movie "Spare Parts" why can't Oscar enlist in the armed forces????
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!