answersLogoWhite

0


Best Answer

you really like him dont be afraid just talk to him seriously guys like it when youut alk to them

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

1d ago

This is an example of feeling nervous or anxious around someone you are attracted to. It's a common reaction when you have a crush on someone and want to make a good impression. Take a deep breath, relax, and remember that the other person is likely feeling nervous too.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What if your heart races and you cannot think of anything to say to the cute guy behind you in class This is an example of?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Psychology
Related questions

How do you call an abstract class from main method?

An abstract class cannot have a constructor and hence you cannot invoke the constructor of the class - i.e., you can instantiate an abstract class and hence you cannot call the constructor of an abstract class.


History behind battle of Atlantic?

idont no anything about this subject but my class has to do a project on it its gay...


What is non-instantiable class?

A non-instantiable class is the class whose object can be created but cannot be initialized. for example the interfaces and the abstract classes in java.


Which classes are mutable and nonmutable?

An immutable class is any data storage class in which the data cannot be changed. The most common example of this in Java is the String class.


What is classes instantiating?

A non-instantiable class is the class whose object can be created but cannot be initialized. for example the interfaces and the abstract classes in java.


A girl sits behind me in class and will put her feet on my chair and start rapidly vibrating. Why?

It doesn't mean anything... I do that too....It feels comfortable


Why cannot initialize data member within class?

A class is a type. Classes don't do anything except define the type. You have to instantiate an object of the type in order to actually do anything, including initialising data members. However, the class can define how a data member is initialised. The most efficient method of initialising class members if via the class constructor initialisation list.


A method that is automatically called when an instance of a class is created?

The constructor of a class is automatically called when an instance of the class is created (using new in C++). The constructor method has the same name as the class that it is a part of. Constructors have no type and do not return anything. Similarly, the destructor is automatically called when the instance of the class is destroyed. The destructor is the same name as the class and is preceded by a tilde (~) For example: class Example { public: Example() // Constructor { printf("Object created\n"); } ~Example() // Destructor { printf("Object destroyed\n") } }; int main() { Example* x = new Example(); // Creates object, calls constructor delete x; // Calls destructor, deletes object return 0; }


What is class of 2014?

The class of anything refers to the year of a graduating class. For example, if i were to graduate high school this year, I would be part of the class of 2010. In four years when I will be graduating college, so I will be the class of 2014. If you are a junior in high school, you are a part of the class of 2011 because you will be graduating next year.


Difference between abstract and final class?

Abstract class is built to promote inheritance whereas a final class is built to avoid inheritanceAn Abstract class can be extended by another class whereas a final class cannot be extended


Is a nutcracker an example of a third-class lever?

No. It's an example of a Second Class lever.


What is a specifier?

a specifier tells the JVM how to treat a particular class,method and variable while executing the program. For example, final classes cannot be extended and final methods cannot be overriden and final variables cannot be changed once declared. Likewise,static methods and variables can be accessed without having to instantiate an object for their class