O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
Answers were Sorted based on User's Feedback
Answer / nishanth
o-1
t-2
t-3
f-4
f-5
s-6
s-7
e-8
n-9
T-10
E-11
T-12
t-13
f-14
.
.
.
.
n-19
it is simply the 1,2,3... order
Is This Answer Correct ? | 26 Yes | 1 No |
Answer / jacob
1 = One = O
2 = Two = T
3 = Three = T
4 = Four = F
5 = Five = F
6 = Six = S
7 = Seven = S
8 = Eight = E
9 = Nine = N
10 = Ten = T
Just look at the first letter of the number and then that
will be you letter
Is This Answer Correct ? | 22 Yes | 3 No |
Answer / tom the frog
Just stating the obvious:
T, E, T
Given that they are the first letters of the positive integers.
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / ranjitha
one - 1
Two - 2
and so on
Nine - 9
Ten - 10
Eleven - 11
twelev - 12
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / raghavendra reddy
N
O
T
it is reapetedly
like:
O,T,T,F,F,S,S,E,N,n,o,t,T,F,F,S,S,E,N,.....
Is This Answer Correct ? | 5 Yes | 6 No |
by seeing we can understand that .....N O T fit as the
correct possible
Is This Answer Correct ? | 1 Yes | 3 No |
Answer / pritam
n-- 1st
o-- 2nd
t-- 3 rd
Series is repeated again.
Is This Answer Correct ? | 6 Yes | 12 No |
1. Duplicate the even numbers. -1 Sample I/O Array1:- 4,2,24,3,22 Updated Array:- 4,4,2,2,24,24,3,22,22 2. Reverse the array in a region - 1 Sample I/O Array1:- 4,2,24,3,22,41,21 Enter Region:- 2,5 Update Array:-4,41,22,3,24,2,21 3. Store first the even digits in an array and then odd digits in same array -2 Sample I/O Array1:- 4,2,24,3,22,41,21 Array 2:- 4,2,2,4,2,2,4,2,3,1,1 4. Store the count of the digits in all numbers in an array and print the count. -2 Sample I/O Array1:- 4,2,9,3,7,41,28 Array 2:- 0,1,1,1,2,0,0,1,1,1 1-1;2-1;3-1;4-2;7-1;8-1;9-1 5. Store all palindrome numbers in to another array -2 Sample I/O Array1:- 4,22,9,313,7,141,28 Array 2:- 4,22,9,313,141 6. Arrange the array in such a way that odd numbers come first and then even numbers -1 Sample I/O Array1:- 4,22,9,313,7,141,28 Update Array1:- 9,313,7,141,4,22,28 7. Store into another array by inserting it in the right place - 2 Sample I/O Array1:- 4,22,9,313,7,141,28 Array2:- 4 /4,22 /4,9,22 /4,9,22 ,313 /4,7,9,22 ,313 /4,7,9,22 ,141,313 / 4,7,9,22,28 ,141,313 8. Merge two sorted arrays in a sorted fashion - 3 Sample I/O Array 1:- 3,6,7,9,11,16 Array 2:- 1,2,5,7,20 Array 3:- 1,2,3,5,6,7,9,11,16,20 9. Upadte the array so that an array element is followed by its revere - 1 Sample I/O Array 1:- 13,63,74,9,11,16 Updated Array 1:- 13,31,63,36,74,47,9,9,11,11,16,16 10.Spread the digits of the array in the same array. -1 Sample I/O Array 1:- 13,63,74,9,11,16 Updated Array 1:-1,3,6,3,74,9,1,1,1,6 11.Shift the boundary of array to have only 2 digit numbers. Sample I/O Array 1:- 139,643,74,9,101,126 Updated Array 1:- 13,96,43,74,91,11,26 12.Print the largest occuring digit in an array of N numbers. Sample I/O Array 1:- 13,63,74,9,11,16 1 occurs most.
What do you mean by command line argument?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
why programming language C is still used in operating system's kernel??
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What is a pointer?
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
What is the Lvalue and Rvalue?
Which is better between malloc and calloc?
what is the difference between getch() and getchar()?