Skip to main content

DXC Technology Off Campus Drive 2018/2019/2020/2021

 DXC Technology (NYSE: DXC) helps global companies run their mission critical systems and operations while modernizing IT, optimizing data architectures, and ensuring security and scalability across public, private and hybrid clouds. With decades of driving innovation, the world's largest companies trust DXC to deploy the Enterprise Technology Stack to deliver new levels of performance, competitiveness, and customer experiences.

Functional Summary

Global Service Desk agents are the first point of contact for Clients to resolve various business systems and applications related problems; onsite engineering personnel; and Authorized Service Providers on standard, specialized or complex systems. They are required to interact with customers across geographies (through multiple support mediums) and provide issue resolution / right responses, positively and in a professional manner. 

Roles and Responsibilities

  • Required to interact with customers across geographies (through multiple support mediums:Calls/Chats/Emails/Portals) and provide issue resolution / right responses, positively and professionally.

  • Work within a standard protocol to respond to customer issues. Moderate judgment may be used to supplement the outlined process.

  • Provide the most appropriate solutions through remote contact, probe problems and communicate in such a way that non-technical users can comprehend instructions and advice.

  • Collaborate with other resolver groups to identify solutions that foster first call resolution

  • Be proactive & anticipate issues or situations which impact service availability and critical response time, and recommend necessary mitigation steps escalating to management's attention, where appropriate

Job Specifications

  • Excellent communication skills (English) in both written and verbal communication.

  • Familiarity & hands-on experience with computer technology 

  • Familiarity with application support (preferred)

  • Problem solving skills & accuracy in data entry.

  • Experience in a phone based remote role, e-support, e-chat or similar (preferred)

  • Flexible to work in rotational shifts 24x7

Educatuional Qualification:

  • Education: Pass grades in 10th, 12th, and Graduation

  • Branch Allowed: All the Non-Engineering branches are eligible

  • Year of Pass out: 2018, 2019, 2020 and 2021

  • Gaps in Education: Not more than 2 years of Gaps in Education

  • Backlogs / Arrears: No Active Backlogs and Arrears

  • Cost to Company: 2.6 LPA (Fixed)

  • Service Agreement: No service Agreement

  • Should be available to join us on immediate basis post the selection process

  • Should be an Indian Citizen or should hold a PIO or OCI card, in the event of holding a passport of any other country.

  • Bhutan and Nepal Nationals need to submit their citizenship certificate.


Apply Link:👇
Job Link 👈

Popular posts from this blog

Check whether a number is Seed of another number

 A number P is said to be the seed of another number Q if multiplying P with its digits equates to Q. Ex:-  123 is seed of 738 as    123 * 1 * 2 * 3 = 738  Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 public class Seed{ public static void main (String[] args){ int num1 = 123 , num2 = 738 ; num1 = Math. min (num1,num2); num2 = Math. max (num1,num2); System. out . println (checkSeed(num1, num2)); } public static boolean checkSeed ( int num1, int num2){ int seed = num1; while (num1> 0 ){ seed = seed * (num1% 10 ); num1 = num1 / 10 ; } if (seed==num2) return true ; else return false ; } } Python def checkSeed(num1,num2): seed = num1 while num1 > 0 : seed = seed * (num1 % 10 ) num1 = num1 // 10 if seed == n

Program to sort the first half of an array in ascending and second half in descending order

Ex:-  [2, 4, 3, 10, 5, 8] [2, 4, 3]  and [10, 5, 8] ====>  [2, 3, 4] ascending                                                              [10, 8, 5] descending [ 2, 3, 4, 10, 8, 5] is the required answer.  Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 public class ArraySort{ public static void main (String[] args){ int [] arr = { 2 , 4 , 3 , 10 , 5 , 8 }; //sorting first half in ascending order for ( int i= 0 ; i<(arr. length / 2 ); i++){ for ( int j=i+ 1 ; j<(arr. length / 2 ); j++){ if (arr[i]>arr[j]){ int temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } } } //sorting second half in descending order for ( int i=(arr. length / 2 ); i<arr. length ; i++){ for ( int j=i+ 1 ; j<arr. length ; j++)

Write a method to move hyphens to the left and characters to the right in a string

 Ex:-     code--heist--   ==>     ----codeheist Note:-  Return null or None if str is empty. Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public static String moveHyphens (String str) { if (str. length ()== 0 ) return null ; else { String result = "" ; for ( int i= 0 ; i<str. length (); i++){ char ch = str. charAt (i); if (ch== '-' ) result = ch + result; else result += ch; } return result; } } Python def moveHyphens (str): if len(str)== 0 : return None else : result = "" for char in str: if char== '-' : result = char + result; else : result += char return result