GE Online Code Writing Test
General Electric which is also known as GE conducts its placement drive for IT sectors every year in Mumbai & Bengaluru. The Campus placement is starts with the aptitude test and followed by very important Code writing test. Then students have to face 3 rounds of technical & HR interview to get into the company. The company offers package of 5 LPA andOnline Code Writing Test
Aptitude test is conducted at Andheri, Mumbai & selected candidates receive an email within 1-2 weeks after the aptitude test. Email contains 3 problems which candidates need to solve in any language (C,C++,Java.C# etc) and send back to the GE coordinators. After that they get a call for 2nd round which is Online Code writing Test.GE: Company Profile
General Electric also known as GE is one of the world's biggest and famous companies. It operates a wide range of sectors from energy , IT- techonolgy, aviation fields, finance etc. They are looking for people with who have Good logical skills, who are quick learner & having strong command of English.Online Code Writing Test Questions
1. Express any no as summation of prime Numbers. User will enter any no. for example 28 then program must give output as addition of 4 prime numbers [ 7 3 11 7 ]. as 7+3+11+7=28. Use an array to store the numbers & if given can not be expressed in such format return NULL or print message that this no can't be expressed.2. Write a function to which will take 2 integers as parameters & which will return its addition
for ex in C#.
public int Func(int a,int b)
{
return(a+b);
}