Wednesday, April 26, 2017

Current Job openings in Infosys Bangalore

Current Job openings in Infosys Bangalore. Please comment/reply for this post if interested.



Technology /Skills
Experience
App Security
2 to 6 yrs
Crypto
5 to 8 yrs
CyberArk
8 to 12 yrs
IDAM
3 to 12 yrs
OIM/OAM
3 to 12 yrs
RSA Archer
5 to 8 yrs
SSIS
5 to 8 yrs
Sailpoint
3 to 6 yrs
Vertica DBA
5 to 8 yrs
DB2 ZOS
5 to 8 yrs
DB2/IMS/UDB
8 to 12 yrs
Sybase DBA
8 to 12 yrs
Postgress DBA
3 to 8 yrs
ETL Support
3 to 6 yrs
SAP Basis
3 to 8 yrs


Technology /Skills
Experience
VDI admin
3 to 6 yrs
MQ Admin
2 to 8 yrs
Abinitio Admin
3 to 6 yrs
ALM admin
3 to 12 yrs
Exadata DB
3 to 6 yrs
RLM admin
5 to 8 yrs
Java developer /admin
3 to 8 yrs
App Support- Unix/PLSQL/Oracle
3 to 12 yrs
EMC/Hitachi Storage
5 to 12 yrs
Service Now Developer
2 to 12 yrs
Azure
8 to 12 yrs
Infra Architect
8 to 12 yrs
Infra PM
8 to 12 yrs
AWS
3 to 12 yrs




Tuesday, July 30, 2013

Building an RF remote control

Thought Works placement Experience


Hi guys,

      Today, I attended the Company named "Thought Works".

      First round is simple but we have to concentrate to crack it. Its nothing but solving the "Flowchart" given by them. There are only 11 questions and the time limit is 1hr and 15 mins.I tried all the 11 questions.

      So, I got shortlisted for the next round called "Short coding round". In this round, we have to do programming in any platform like C or C++ or JAVA... I used the Turbo C compiler.
The question asked by them is
      We have to get two strings and remove the characters from first string that is entered in second string. For example, If the first string as "Programming world" and second string as "aeiou", then the output will be "Prgrmmng wrld".

      Due to some technical problem I can't able to solve within the 30 minutes given by them. But I done with the program after the time goes off.

C program to do the above is given as follows:
#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
    char *s1,*s2,*s3,*temp;
    int len1,len2,i=0,j=0,k,c=0;
    gets(s1);
    gets(s2);
    len1=strlen(s1);
    len2=strlen(s2);
    s3=s1;
    temp=s1;
    for(i=0;i<len1;((c==1)?i:i++))
    {
       c=0;
       for(j=0;j<len2;j++)
       {
          if(temp[i]==s2[j])
          {
            k=i;
            c=1;
            while(s1[k])
            {
               temp[k]=temp[k+1];
               k++;
            }
         }
       }
    }
    printf("%s",s3);
    getch();
}

      This program is very simple. This is Case sensitive. If you done with this, they asking you to do the same as Case Insensitive.

      To do that, replace the condition in line 18 by given line:

         if((temp[i]==s2[j])||(temp[i]==((s2[j]<=90 && s2[j]>=65)? (s2[j]+32) : (s2[j]-32) )))

       After that Long Coding round and then HR Interview...
    
      A little advice: 
  •     Before you get started, write the steps or algorithms of what you are going to program... It is very useful while programming...
  •     How you Applying your mind on that time matters guys... 
                                     Prepare well... All the best guys...

Tuesday, January 29, 2013

Projects for ECE: 16 X 2 LCD

Projects for ECE: 16 X 2 LCD: LCD (Liquid Crystal Display) screen is an electronic display module and find a wide range of applications. A 16x2 LCD display is very...

My company Logo