Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What are your biggest weaknesses?

Answers were Sorted based on User's Feedback



What are your biggest weaknesses?..

Answer / bheemineni.prabhakarrao

Not Highligted ur weekness.Just u say like this.
i dont know sir really. sometimes im a little bit
emotional.But i never carried so far.

Is This Answer Correct ?    53 Yes 4 No

What are your biggest weaknesses?..

Answer / kc

I really think the best answer that covers so much area and
doesn't lead to other weeknesses would be...inexperience.

Is This Answer Correct ?    26 Yes 2 No

What are your biggest weaknesses?..

Answer / leena g

always say some positive points as u think they are
negative in ur case. like i get involved in a job at a
time ,thn i could not give time to my family n frndz,
or u can say my positive attitude.

Is This Answer Correct ?    25 Yes 4 No

What are your biggest weaknesses?..

Answer / manu

i think one should be positive while giving this answer...i
always replied that as i am very cooperative adjustable in
anykind of enviornment so sometimes people take advantage of
my this quality...as i am little emotional person BUT i
working on it..sir

Is This Answer Correct ?    14 Yes 3 No

What are your biggest weaknesses?..

Answer / vignesh

For now, I believe I don't have any weakness but If I come
to know about it, I will rectify it as soon as possible

Is This Answer Correct ?    12 Yes 1 No

What are your biggest weaknesses?..

Answer / aniket

Giv always diplomatic answer my answer shoud b when any job
or responsibilty given to me,until i carried on it
successfully i can not enjoy my life as per my expectation
of enjoyment

Is This Answer Correct ?    11 Yes 2 No

What are your biggest weaknesses?..

Answer / bharathi

There are so many creative activities I plan for my
students and class time is limited. It is difficult to
incorporate all of the activities that I would like my
students to learn from. Overtime, I have realized to
prioritize what lessons are the most important to enhance
my student learning. I now realize that I can't do
everything I would like to.

Is This Answer Correct ?    15 Yes 7 No

What are your biggest weaknesses?..

Answer / manu sood

i am very comfortable and adjustable to any kind of
enviornment....also very cooperative ...so becauz of my this
quality sometimes people take advantage of it.....as i m
emotional person ...but i m trying for that..

Is This Answer Correct ?    7 Yes 1 No

What are your biggest weaknesses?..

Answer / priyadharshini

i believe easily others.i am a bit impatient in getting
things done.i try to overcome it. my strength is +ve
thinking,sincerity,hardworking.

Is This Answer Correct ?    5 Yes 0 No

What are your biggest weaknesses?..

Answer / dr. pawan patni

My habit of perfectionism. Due to this, many urgent items
remain unattended.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More Teaching Interview Questions

What are the characteristics of mentally challenged children?

0 Answers   Mahatma Gandhi University,


What do you look for to evaluate that learning is taking place in your classroom?

0 Answers  


I want complete information about BCA at NSHM Knowledge Campus, Durgapur.

5 Answers  


What philosophy do you abide by?

0 Answers  


1. What are two methods of retrieving SQL? 2. What cursor type do you use to retrieve multiple recordsets? 3. What is the difference between a "where" clause and a "having" clause? - "Where" is a kind of restiriction statement. You use where clause to restrict all the data from DB.Where clause is using before result retrieving. But Having clause is using after retrieving the data.Having clause is a kind of filtering command. 4. What is the basic form of a SQL statement to read data out of a table? The basic form to read data out of table is ‘SELECT * FROM table_name; ‘ An answer: ‘SELECT * FROM table_name WHERE xyz= ‘whatever’;’ cannot be called basic form because of WHERE clause. 5. What structure can you implement for the database to speed up table reads? - Follow the rules of DB tuning we have to: 1] properly use indexes ( different types of indexes) 2] properly locate different DB objects across different tablespaces, files and so on.3] create a special space (tablespace) to locate some of the data with special datatype ( for example CLOB, LOB and …) 6. What are the tradeoffs with having indexes? - 1. Faster selects, slower updates. 2. Extra storage space to store indexes. Updates are slower because in addition to updating the table you have to update the index. 7. What is a "join"? - ‘join’ used to connect two or more tables logically with or without common field. 8. What is "normalization"? "Denormalization"? Why do you sometimes want to denormalize? - Normalizing data means eliminating redundant information from a table and organizing the data so that future changes to the table are easier. Denormalization means allowing redundancy in a table. The main benefit of denormalization is improved performance with simplified data retrieval and manipulation. This is done by reduction in the number of joins needed for data processing. 9. What is a "constraint"? - A constraint allows you to apply simple referential integrity checks to a table. There are four primary types of constraints that are currently supported by SQL Server: PRIMARY/UNIQUE - enforces uniqueness of a particular table column. DEFAULT - specifies a default value for a column in case an insert operation does not provide one. FOREIGN KEY - validates that every value in a column exists in a column of another table. CHECK - checks that every value stored in a column is in some specified list. Each type of constraint performs a specific type of action. Default is not a constraint. NOT NULL is one more constraint which does not allow values in the specific column to be null. And also it the only constraint which is not a table level constraint. 10. What types of index data structures can you have? - An index helps to faster search values in tables. The three most commonly used index-types are: - B-Tree: builds a tree of possible values with a list of row IDs that have the leaf value. Needs a lot of space and is the default index type for most databases. - Bitmap: string of bits for each possible value of the column. Each bit string has one bit for each row. Needs only few space and is very fast.(however, domain of value cannot be large, e.g. SEX(m,f); degree(BS,MS,PHD) - Hash: A hashing algorithm is used to assign a set of characters to represent a text string such as a composite of keys or partial keys, and compresses the underlying data. Takes longer to build and is supported by relatively few databases. 11. What is a "primary key"? - A PRIMARY INDEX or PRIMARY KEY is something which comes mainly from database theory. From its behavior is almost the same as an UNIQUE INDEX, i.e. there may only be one of each value in this column. If you call such an INDEX PRIMARY instead of UNIQUE, you say something about your table design, which I am not able to explain in few words. Primary Key is a type of a constraint enforcing uniqueness and data integrity for each row of a table. All columns participating in a primary key constraint must possess the NOT NULL property. 12. What is a "functional dependency"? How does it relate to database table design? - Functional dependency relates to how one object depends upon the other in the database. for example, procedure/function sp2 may be called by procedure sp1. Then we say that sp1 has functional dependency on sp2. 13. What is a "trigger"? - Triggers are stored procedures created in order to enforce integrity rules in a database. A trigger is executed every time a data-modification operation occurs (i.e., insert, update or delete). Triggers are executed automatically on occurance of one of the data-modification operations. A trigger is a database object directly associated with a particular table. It fires whenever a specific statement/type of statement is issued against that table. The types of statements are insert,update,delete and query statements. Basically, trigger is a set of SQL statements A trigger is a solution to the restrictions of a constraint. For instance: 1.A database column cannot carry PSEUDO columns as criteria where a trigger can. 2. A database constraint cannot refer old and new values for a row where a trigger can. 14. Why can a "group by" or "order by" clause be expensive to process? - Processing of "group by" or "order by" clause often requires creation of Temporary tables to process the results of the query. Which depending of the result set can be very expensive. 15. What is "index covering" of a query? - Index covering means that "Data can be found only using indexes, without touching the tables" 16. What types of join algorithms can you have? 17. What is a SQL view? - An output of a query can be stored as a view. View acts like small table which meets our criterion. View is a precomplied SQL query which is used to select data from one or more tables. A view is like a table but it doesn’t physically take any space. View is a good way to present data in a particular format if you use that query quite often. View can also be used to restrict users from accessing the tables directly.

1 Answers  


In which state does Patliputra exists in present?

1 Answers   Wipro,


program to count no. of occurances of each word in the entered sentence

0 Answers  


Is drill and practice important? How and when would you use it?

0 Answers  


Explain what is co-teaching?

0 Answers  


I am going to the interview for the post of lecturer .I want to know about the types of Question asked in such type of govt. interview.

0 Answers  


How would you go about relaying a pupil's progress to their parents?

0 Answers  


What activities would you like to become involved in within our school, district, or community?

0 Answers  


Categories