answersLogoWhite

0

It means "I know" or "I understand"

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What does the Korean word sarang mean?

The Korean word "sarang" means love.


What does anya mean in Korean?

"Anya" does not have a specific meaning in Korean. It is not a Korean word.


What does sheba mean in Korean?

Shebal means the F word in Korean.


What mean of the word byul that Korean word?

It means star.


What does the word nae by itself mean in Korean?

i/ my


What does the Korean word urine mean?

enter in


What is charanda a Korean word?

Did you mean jalhanda (잘한다)? That word means well done/good job


What does ochoa mean in Korean?

"Ochoa" does not have a specific meaning in Korean as it is not a Korean word. It may be a surname or a name from a different language.


What does the Korean word obsseo mean?

It means "dont have"


What does the Korean word Kamsa Hamnida mean?

Thank you


Does Neh mean yes in Korean?

No. The Korean word for yes is 예, pronounced yeh


Write Algorithm to perform the insertion and deletion operation of a linear array?

//Algorithm to perform the insertion and deletion operation of a linear arrayINSERT (ArrA, n, i, item) where ArrA is a linear array with n elements and i is a positive integer where i <=n. The element 'item' will be inserted into the ith position in ArrA.1. j = n2. repeat steps 3 and 4 while j >= i3. ArrA[j+1] = ArrA[j]4. j = j - 15. ArrA[i] = item6. n = n+1DELETE (ArrA, n, i, item) where ArrA is a linear array with n elements and i is a positive integer where i <=n. The element 'item' will be deleted from the ith position in ArrA.1. item = ArrA[i]2. repeat for j = i to n -1 ArrA[j] = ArrA[j+1]4. n = n - 1NO HARD RETURNS ALLOWED