Error in Task Execution

I am using FreeRTOS with TI CC3200 Launchpad in Code Composer Studio v8. I have created two tasks. Both the tasks are executing with their respective delays but the 2nd task is executing the first time. Rest of the time, both are working.
Can you tell where can be the issue?

I assume both tasks have the same priority? If it is generated after your first, it may be added to the head of the ready queue list of that priority.

I would not worry about it too much. Both tasks run concurrently, so you can not and should not make assumptions about their relative scheculing behavior, in particular since the ordering list of the queues at creation time is an implementation detail subject to change.

If you must ensure that your task 1 runs before 2, Use priorities or IPC mechanisms to sync them up.