Skip to main content

Software Engineer - C++, Linux, Java


About Symantec

Work that matters. It's what we do at Symantec. Symantec is a global leader in providing security, storage and systems management solutions to help our customers from consumers and small businesses to the largest global organizations secure and manage their information-driven world against more risks at more points, more completely and efficiently. Our software and services protect completely, in ways that can be easily managed and with controls that can be enforced automatically enabling confidence wherever information is used or stored. Headquartered in Cupertino, Calif., Symantec has operations in more than 40 countries.

Symantec employs over 15,500 employees worldwide, with research and development facilities located in over 12 countries including India. Visit us at www.symantec.com to know more.


Development Overview 

In Endpoint & Mobility Group, you will have the opportunity to work on global products that secure and manage millions of endpoints for organizations of all sizes. Here, you can find yourself being a part of Symantecs Endpoint Protection, Protection Suites, Mail and Web Security, IT Management, Endpoint Virtualization, Critical System Protection, and Mobility solutions. Having a global impact within technologys top mega trends is what drives this groups continual success.

Salary:Not Disclosed by Recruiter
Industry:IT-Software / Software Services
Functional Area:IT Software - Application Programming, Maintenance
Role Category:Programming & Design
Role:Software Developer
Keyskills:C++ Programming, linux, solaris, aix, Web Services, Design & Development
Desired Candidate Profile
Education:(UG - B.Tech/B.E. - Any Specialization, B.Sc - Any Specialization) OR (PG - M.Tech - Any Specialization, MCA - Computers, M.Sc - Any Specialization) OR ( Doctorate - Any Doctorate - Any Specialization)
Responsibilities
As a Software Engineer, you'll be working with a highly motivated global team of engineers.
Youll learn new and exciting technologies and have the opportunity to develop your career.
You must be action-oriented, have the ability to learn new technologies and quickly put them in action.
Take direction from technical leads and take complete ownership of delivered code
Able to work in a fast pace and dynamic environment and able to switch between projects quickly
The candidate should have 3 to 5 years experience in a software engineering environment with knowledge in an Object Oriented Language like C++ (preferred) and Java

Qualifications:
Understanding of standard development tools IDE's, MSi, xUnit and source control
Excellent coding, debugging and profiling skills in C++
Excellent programming practices with object-oriented development experience
Advanced knowledge of Object Oriented Analysis and Design, including UML
Open, direct communicator with collaborative working style
Experience working in/implementing agile methodologies
Attention to detail and quality
Ability to meet deadlines on time and with quality
Accountability, honesty, responsibility, flexibility
A sense of fun and enjoying what you do
Bachelors or Masters degree in Computer Science
Experience in PowerShell and writing Cmdlets a plus
Company Profile
Symantec Software India Pvt Ltd
https://www.symantec.com
Symantec is a global leader in providing security, storage and systems management solutions to help our customers secure and manage their information against more risks at more points, more completely and efficiently than any other company in the world.
Our customers range from consumers and small businesses to the world's largest organizations. We take pride in serving 100% of the fortune 500 companies today.

Our unique focus is to eliminate risks to information, technology and processes independent of the device, platform, interaction or location.

We are a winning team of over 20,000 professionals globally of which more than 3,500 work at out India centers of Innovation.

Our India teams work across several key functions such as
- Research & Development
- Software Engineering
- Quality Assurance and testing
- Security threat analysis
- Technical support and many more.

Symantec in India has established a Strong brand as Employer of Choice offering:
- Challenging Work
- An open Work environment
- Career development opportunities and
- Competitive Compensation and benefits

To join our winning team in India visit us as www.symantec.com

For More Detail visit :-Original Post

Popular posts from this blog

C++ Program to find the sum, difference, product and quotient of two integers

#include <iostream.h> #include <conio.h> void main() {   clrscr();   int x = 10;   int y = 2;   int sum, difference, product, quotient;   sum = x + y;   difference = x - y;   product = x * y;   quotient = x / y;   cout << "The sum of " << x << " & " << y << " is " << sum << "." << endl;   cout << "The difference of " << x << " & " << "y <<  is " << difference << "." << endl;   cout << "The product of " << x << " & " << y << " is " << product << "." << endl;   cout << "The quotient of " << x << " & " << y << " is " << quotient << "." << endl;   getch(); }

Program of virtual piano

//////////////Tested And Created By C++/////////////////////////////// #include<stdio.h> #include<dos.h> #include<conio.h> #include<stdlib.h> #define SHOW 1 #define HIDE 2 union REGS input,output; class piano {  public:int BIGKEY,MIDKEY,back,border;     piano()//init constructor     {         BIGKEY=15;         MIDKEY=1;         back=7;         border=15;     } }color; void drawpiano(int x,int y); int check_xy(int x,int y); void BOX(int c,int r,int c1,int r1,int col); int initmouse(); void setupscreen(); void pointer(int on); void restrictmouse(int x1,int y1,int x2,int y2); void check_keys(int x,int y); void getmouse(int *button,int *x,int *y); float freq[7] = {130.81, 146.83, 164.81, 174.61,196, 220, 246.94 } ; int n=0,a=4,backcolor=2,exitcode=1; void showbar(int t) {  if(t>65) t=65;  if(t<1) t=1;  textcolor(15);  for(int q=0;q<=t;t++)  {     gotoxy(3+q,4);     cprintf("Û");  } } void main() {  int

Putimage function in c

putimage function outputs a bit image onto the screen. Declaration:- void putimage(int left, int top, void *ptr, int op); putimage puts the bit image previously saved with getimage back onto the screen, with the upper left corner of the image placed at (left, top). ptr points to the area in memory where the source image is stored. The op argument specifies a operator that controls how the color for each destination pixel on screen is computed, based on pixel already on screen and the corresponding source pixel in memory. c smiling face animation This animation using c draws a smiling face which appears at random position on screen. See output below the code, it will help you in understanding the code easily. C programming code #include<graphics.h> #include<conio.h> #include<stdlib.h>   main() { int gd = DETECT, gm, area, temp1, temp2, left = 25, top = 75; void *p;   initgraph(&gd,&gm,"C:\\TC\\BGI");   setcolor(YELLOW);