Friday 20 February 2015

TCS offcampus 2015 Email writing, Questions and Answers


Email Writing Topics 2015

1)Winning the Code Vita competition held by TCS, Write a mail to your professor for thanking him for his support?
    
        Happy - encouragement - grateful - motivation - guide - course - competition - milestone


Dear xxx,

I am happy to convey that i got the prestigious award from the TCS code vite competition.i am grateful to have you as a guide for competition because of your encouragement i had successfully overcome the milestones of Winning the code vita competition held by tcs. With your motivation i had completed my course.
                   
Regards,
Vignesh.

2)Write a mail to your niece Riya for winning gold medal in national level social olympiad.

          Happy - proud - achievement - hard work - focus - commendable - sustain - best - expectation - fulfill - aspire.



Question Paper 2015

1) B alone can do piece of work in 10 days. A alone can do it in 15 days. If the total wages for the work is Rs 5000, how much should B be paid if they work together for the entire duration of the work?
a) 2000
b) 4000
c) 5000
d) 3000

Ans: 3000

2) If a publication occurs every seven years and the sum of the years is 13524. Then find the first year
a) 1611
b) 1711
c) 1811
d) 1911

Ans: 1911

3) Value of a scooter depricates in such a way that its value at the end of each year is 20% of its value at the begining of the same year. If the initial value of scooter is 7,00,000. What is the value of the scooter at the end of 3 years.
a) 1,68,750
b) 3,58,400
c) 5,58,400
d) 2,58,400

Ans: 7,00,000x(80/100)x(80/100)x(80/100)=3,58,400

4) A number when successively divided by 5,3,2 gives remainder 0,2,1 respectively. What will be the remainder when the same number is divided successively by 2,3,5 in that order
a) 1,0,4
b) 0,2,1
c) 1,0,8
d) 1,1,1









Sunday 15 February 2015

Huawei Technologies Selection Process and Placement Papers 2015



Selection Process:

1) Written Test

2) Technical Interview-1

3) Technical Interview-2

4) Technical Interview-3

5) HR Interview-1

6) HR Interview-2


Written Test:

           It Consists of two sections
              1) Objective
              2) Subjective

Objective:
        
           It Consists of 3 sections:

               1) Aptitude
               2) Java
               3) C language

Students must select either Java or C Language.

*If the student select C language, then he will write Subjective in C language only or else If the student select Java, then he will write Subjective in Java only.

Subjective:

          Simply programming Test. It Consists of 6 programs. 

Answering ant two questions is a must and any additional done is a bonus. 

Programs asked in 2015 Selection Process:

1) Write a program to define a linked list functions to behave like a queue.

2) Write a program to count the number of occurrence of each character in a Given String. Assume only letters from a to z is input and should be case insensitive. Write the optimized program with O(n) complexity.

3) Write a function to find the x to the power of n. Consider the x and result to be float and n is an integer

4) Write a program to find the 2nd highest and 2nd lowest element inside an array of integers. The complexity of the program should be O(n).

5) Write a function to find the sum of the first N prime numbers int sum_prime(int n);

6) find out the error and explain in the given program?


Technical Interviews:

   Solving Different Programs and Puzzles.

HR Interviews:
   
   Once you complete your technical interviews you will be 80% in Huawei.

   It is just like confirmation round, like job position, location and shift timings.



Placement Paper 2015


1) Problems on logical puzzles

2) Problems on Pipes and Cisterns

3) Problems on Time and Work

4) Coding and Decoding

5) Problems on Series

6) Basic C programs on increment and decrement operators and recursion functions.






Related:


Huawei Technologies Selection Process 2015

Huawei Technologies Placement Papers

Huawei Technologies Online Test Process

Huawei Technologies Written Test Pattern 2015

Huawei Technologies interview process 2015

Huawei Technologies recruitment process 2015

Huawei Technologies Selection Process 

Huawei Technologies Placement Papers 2015

Huawei Technologies Placement Papers 2015 pdf

Huawei Technologies Placement Papers 2015 pdf free download





Thanks for visiting..............

Automatic Data Processing(ADP) interview process and placement papers 2015



Automatic Data Processing(ADP) founded in the year 1949. The Services of ADP are Human Resource, tax and benefits administration solutions from a single source and payroll services. The CEO of ADP is Carlos Rodriguez. 

Interview Process:

1) Online Test

2) HR Interview(test only communication skills)

3) Technical Interview-1

4) Technical Interview-2

5) Final HR Interview


Online Test Pattern 2015:

There are three sections in Online Test
  1) Aptitude
  2) Reasoning
  3) Computer Awareness

Aptitude:

               20 Questions
               20 Marks
               20 Minutes Time
   Topics:
  
      * Problems on Trains
      * Work & Time
      * Pipes and Cisterns

Reasoning:

               20 Questions
               20 Marks
               20 Minutes Times
  Topics:
  
     * Relations
     * Coding & Decoding
     * Odd Man Out
     * Directions

Computer Awareness:

               20 Questions
               20 Marks
               20 Minutes Time

   Topics:
  
     * C language
     * Java
     * HTML
     * Java Script
     * Operating Systems
     * Computer Networks      
     * DBMS

Overall: 60 Questions - 60 Marks - 60 Minutes Times



Placement Paper 2015:

                      Updated Soon......




Related:


ADP Interview process 2015

ADP Selection process

ADP selection process 2014

ADP selection process 2013

ADP screening and selection process

ADP placement papers

ADP placement papers 2014

ADP placement papers download

ADP placement papers 2010 with answers

ADP placement papers 2011 with answers

ADP placement papers 2013 with answers pdf

ADP placement papers with solutions



ADP placement papers with answers

ADP placement papers 2012 with answers pdf

ADP placement papers 2012

ADP placement papers pattern

ADP placement papers 2012 with solutions

ADP placement papers 2011

ADP placement papers  with answers download





Thanks for Visiting..........


What is the output of the following Java Program-1



Program:

import java.io.*;
public class test
{
           public static void main(String args[])
           {
                      System.out.println(7|8);
           }
}

Options:

a) 7
b) 8
c) 15
d) error

Explanation:

Option: c) is correct.

Here we can do the OR( | ) operation for 7 and 8.

The Binary value of 7 is  0111
The Binary value of 8 is 1000

      7 --->  0111
      8 --->  1000
----------------------
                 1111 
----------------------

The Decimal value of 1111 is 15.

So answer is 15.




Thanks for visiting.......