answersLogoWhite

0


Best Answer

Attachement Q-sort is an alternative method to the Strange Situation, suitable for children between 1 and 4 years, that permits attachment to be assessed through observation in the home. Includes a set of 9 descriptors of child behavior that yield a score ranging from high to low in security.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is Q-Sort in Psychology?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you implement a quick sort in Haskell?

-- empty list is already sorted qsort [] = [] -- choose first element as pivot, -- put all elements less than x on the left, -- put all elements greater than x on the right, -- recurse on both sides qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++ qsort (filter (>= x) xs)


What is sort in C programming pls ans. this... thanks?

There is a built-in qsort function, see stdlib.h


When a function is used as an argument in another function?

It is called callback function. For an example see the qsort function.


Write c program to find median?

If you are using an array : sort using qsort() then take middle element.


Why it is not possible to pass a function as an argument to another function in c?

It is quite possible. A well-known example is the fourth parameter of qsort.


Simple c program for quicksort?

#include<stdio.h> void print(int a[]) { int i; for( i=0;i<=8;i++) { printf("%d ",a[i]); } } int Qsort(int data[], int left, int right) { int mid,tmp,i,j; i = left; j = right; mid = data[(left+right)/2]; do { while (data[i] < mid) i++; while (mid < data[j]) j--; if (i <= j) { tmp = data[i]; data[i] = data[j]; data[j] = tmp; i++; j--; } } while (i <= j); { if (left < j) Qsort(data,left,j); if (i < right) Qsort(data,i,right); } } main() { int array[]={12,99,4,99,12,12,13,10,13}; printf("Before sort:\n\n"); print(array); Qsort(array,0,8); printf("\n\nAfter sort:\n\n"); print(array); printf(""); }


How do you use qsort function to sort an array of structures?

It depends what language you are using and how the function is implemented. However, generally, you need to pass 4 arguments to the function: 1. A reference to the array. 2. The lower bound of the sub-array to be sorted (usually 0). 3. The upper bound of the sub-array to be sorted (usually n-1 for an array of n elements). 4. A binary predicate to perform comparisons between the elements (usually a less-than predicate).


What are all the branches and fields of psychology?

There are ten branches of Psychology not two. Abnormal Psychology; Behavioral Psychology; Clinical Psychology; Cognitive Psychology; Community Psychology; Developmental Psychology; Educational Psychology; Evolutionary Psychology; Legal Psychology; and Personality Psychology.


What are the different classification in Psychology?

classes of psychology are; educational psychology, industrial psychology, counselling psychology, clinical psychology, social psychology,experimental psychology, industrial psychology, physiology psychology, development psychology and engineering psychology.


What are the two branches of psychology?

There are ten branches of Psychology not two. Abnormal Psychology; Behavioral Psychology; Clinical Psychology; Cognitive Psychology; Community Psychology; Developmental Psychology; Educational Psychology; Evolutionary Psychology; Legal Psychology; and Personality Psychology.


What are the Branches of Pure and Applied Psychology?

Pure psychology have 6 branches. 1.Experimental Psychology 2.Abnormal Psychology 3.Social Psychology 4.Developmental Psychology 5.Comparative Psychology 6.Physiological Psychology


What is the relationship of psychology to psychology?

Psychology is psychology.