Filter interviews by
Separate positive and negative numbers in an array without sorting them.
Use two pointers: one for positive and one for negative numbers.
Iterate through the array and place negative numbers at the beginning.
Example: For array [-1, 2, -3, 4], result should be [-1, -3, 2, 4].
Maintain the order of appearance for both positive and negative numbers.
An octa-core processor is a CPU that has eight cores, allowing it to handle multiple tasks simultaneously for improved performance.
An octa-core processor has eight processing cores, which can work together to execute tasks faster and more efficiently.
It is commonly found in high-end smartphones, tablets, and computers to provide better multitasking capabilities.
Each core can handle its own tasks independently, lea...
Algorithm to reverse a string
Create an empty string to store the reversed string
Loop through the original string from the end to the beginning
Add each character to the new string
Return the new string
Find the minimum number whose product of digits modulo 1000000007 is equal to itself.
Iterate through numbers from 1 to 1000000006
Calculate the product of digits modulo 1000000007 for each number
If the product is equal to the number, return the number as the minimum
If no such number is found, return -1
No, incrementing a void pointer is not allowed.
Void pointers do not have a data type, so incrementing them is not possible.
Attempting to increment a void pointer will result in a compilation error.
To increment a pointer, it must be of a specific data type.
Implementing memcopy in C
Use a loop to copy each byte from the source to the destination
Handle overlapping memory regions correctly
Return a pointer to the destination
Ensure proper null termination for string copies
Program to invert all bits from the leftmost set bit in an integer
Find the leftmost set bit using bitwise operations
Create a mask with all bits set to 1 from the leftmost set bit
XOR the mask with the integer to invert all bits from the leftmost set bit
Repeat the above steps until all bits are inverted
Program to invert the case of the last letter in each word of a sentence
Split the sentence into an array of words
Loop through each word and get the last letter
Invert the case of the last letter using toUpperCase() and toLowerCase()
Replace the last letter in the word with the inverted case letter
Join the array of words back into a sentence
Program to find the number of trailing zeros in a factorial
Count the number of 5s in the factorial
Divide the number by 5 and add the quotient to the answer
Repeat until quotient is less than 5
Design a data structure for dictionary
Use hash table or trie data structure
Each key maps to a value
Keys should be unique
Support operations like insert, delete, search
Questions on array manipulation and logic gates.
To reverse an array inplace, swap the first and last elements and continue swapping towards the middle.
To implement a -4 input AND gate using 2 input AND gates, use two 2-input AND gates and connect their outputs to a third 2-input AND gate.
To compare two black box implementations of an AND gate, test their output for all possible input combinations and compare the result...
AND gate can be implemented using a 2:1 multiplexer.
Connect both inputs of the AND gate to the select line of the multiplexer.
Connect one input of the multiplexer to 0 and the other input to the second input of the AND gate.
The output of the multiplexer is the output of the AND gate.
To calculate stack space used by functions and data types, we need to consider their sizes and memory allocation.
Calculate the size of each data type used in the functions
Determine the number of variables declared in each function
Multiply the size of each variable by the number of times it is declared
Add up the total size of all variables in each function
Add the sizes of all functions together to get the total stack sp...
Implement a function to copy a specified number of characters from a source string to a destination string.
Use a loop to copy each character from source to destination.
Ensure to handle cases where length exceeds the source string length.
Null-terminate the destination string after copying.
Example: copyfunc('Hello', dest, 5) results in dest = 'Hello'.
Example: copyfunc('Hello', dest, 10) results in dest = 'Hello' with nul...
To AND n inputs, n-1 AND gates are required.
Each input needs to be connected to an AND gate except for the last input which is connected to the output.
The output of each AND gate is connected to the input of the next AND gate.
This results in n-1 AND gates being required for n inputs.
The function resets a specific bit in a character and returns the modified character.
Use bitwise AND with a mask to reset the bit.
Create a mask by shifting 1 left by bit_position and then negating it.
Example: To reset bit 2 in 'a' (binary 01100001), use ~(1 << 2).
Return the modified character after resetting the bit.
Stack is a data structure used to store and manage function calls.
Stack is a LIFO (Last In First Out) data structure.
It is used to store function calls, local variables, and return addresses.
Pushing onto the stack adds a new element to the top, popping removes the top element.
Stack overflow occurs when the stack size exceeds its limit.
Example: recursive function calls use the stack to store return addresses and local v...
Local variables go on the stack. Stack is used for function calls due to its LIFO nature. Arithmetic operations can be performed on stack data.
Local variables are stored on the stack frame of the function they are declared in.
Stack is used for function calls because it allows for easy management of function call frames in a LIFO manner.
Arithmetic operations can be performed on data stored in the stack by first popping ...
Extract a pattern between two given bit positions in a 32-bit number.
Convert the number to binary string.
Extract the substring between the given positions.
Convert the substring back to decimal if needed.
Handle edge cases like invalid positions or overlapping positions.
Transpose a 2*2 square matrix in place
Swap the elements at (0,1) and (1,0) indices
No need to swap elements at (0,0) and (1,1) indices
Example: [[1,2],[3,4]] -> [[1,3],[2,4]]
Ittiam is a 10-11 year old software company.
Ittiam specializes in video and audio codecs.
It has a strong presence in the semiconductor industry.
It has partnerships with major players like Intel, Qualcomm, and Sony.
I want to join Ittiam because of its innovative work and growth potential.
I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.
Generally quant based
An octa-core processor is a CPU that has eight cores, allowing it to handle multiple tasks simultaneously for improved performance.
An octa-core processor has eight processing cores, which can work together to execute tasks faster and more efficiently.
It is commonly found in high-end smartphones, tablets, and computers to provide better multitasking capabilities.
Each core can handle its own tasks independently, leading ...
I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.
C questions were asked
I applied via Referral
I applied via Referral
I applied via Approached by Company and was interviewed in Aug 2023. There were 3 interview rounds.
I appeared for an interview before Jun 2024, where I was asked the following questions.
Separate positive and negative numbers in an array without sorting them.
Use two pointers: one for positive and one for negative numbers.
Iterate through the array and place negative numbers at the beginning.
Example: For array [-1, 2, -3, 4], result should be [-1, -3, 2, 4].
Maintain the order of appearance for both positive and negative numbers.
I applied via LinkedIn and was interviewed in Sep 2022. There were 3 interview rounds.
Basic questions verbal os apti
Algorithm to reverse a string
Create an empty string to store the reversed string
Loop through the original string from the end to the beginning
Add each character to the new string
Return the new string
I applied via Campus Placement and was interviewed in Mar 2018. There were 3 interview rounds.
The candidate explains their low pointer by highlighting their active involvement in co-curricular activities and their focus on overall development.
Active involvement in college co-curricular activities
Emphasis on overall development
Belief that knowledge is more important than grades
Top trending discussions
Some of the top questions asked at the Ittiam Systems interview -
based on 8 interview experiences
Difficulty level
Duration
based on 21 reviews
Rating in categories
Senior Engineer
30
salaries
| ₹15.8 L/yr - ₹28 L/yr |
Software Engineer
25
salaries
| ₹9.3 L/yr - ₹23 L/yr |
Senior Software Engineer
16
salaries
| ₹22 L/yr - ₹30 L/yr |
Software Development Engineer
14
salaries
| ₹12 L/yr - ₹20.5 L/yr |
Engineer
12
salaries
| ₹12.6 L/yr - ₹19.9 L/yr |
Accel Frontline
Apmosys Technologies
Pitney Bowes
DynPro