Jobs in India
Search Jobs
Search Jobs
Advertisements

Updated Paper 1 - ADOBE PAPER by Adobe

Details of Updated Paper 1 - ADOBE PAPER by Adobe conducted by Adobe for job interview.
Advertisements
 have given the test on 25 February for the Developer. This was for the experienced people <=1year. We had to give two tests of Engineering and C or Java.

 

Both of the paper has 10 questions and 10 marks for each test. And each test is for 45 minutes.

 

C Paper:

 

What is the difference between Char a[ ]=string and char *a=StringWhat is wrong with the code? The code was for conversion from Celsius to Fahrenheit

degF =5/9*(c+32)

 

 In code this line was wrong as we want 5/9 and that to be multiplied with bracket result. But here 9 will be first multiplied with bracket result.

   

What are Data breakpoints? Give two scenarios where we make the use of thisWhat do you mean by Bit fields? Give exampleWrite the function for changing a number from hexadecimal to integer htoi(sCompare two binary trees they are same or not.You have N computers and [Ca, Cb] means a is connected to b and this connectivity is symmetric and transitive. then write a program which checks that all computers are interconnected and talk two each otherWAP to find Depth of tree program. We were given the structure of the node using that we need to write the code.In binary search we have two comparisons one for greater than and other for less than the mid value. Optimize so that we need to check only onceQuestion was some what like we need to write the function so that we get the two dimensional array and memory is assigned to it using malloc function. Dont remember the question exactly. But this was the only question in proper language

Engineering Paper:

I remember only 5 questions in this. A s this was taken first

1. Binary search Tree was given. Find 4ths smallest element.
2. Some code in assembly was given and given five options. What is being calculated?
 Ans (XY) 2 + Y + Z

3. Represent (-5)10 in 2s complement representation in 8 bits 
4. Expression was given. Draw tree and then find the postfix

Some commands in the assembly language were given. Then need to convert this code in assembly

A=300;

For (i=0 ; i<=10 ;  i++)

A=A+200;