• Home
  • OFF CAMPUS
  • Banglore
  • Govt. Job
  • Internship
  • 2022 BATCH
  • 2023 BATCH
  • Career Advice
Search
Logo
Monday, October 2, 2023
Logo
  • Home
  • OFF CAMPUS
  • Banglore
  • Govt. Job
  • Internship
  • 2022 BATCH
  • 2023 BATCH
  • Career Advice
Home OFF CAMPUS TCS Digital Coding Questions | TCS Digital Coding Questions With Answers |...
  • 2018 BATCH
  • 2019 BATCH
  • 2020 BATCH
  • 2021 BATCH
  • B.E/B.Tech
  • Banglore
  • Chennai
  • CS/IT Engg.
  • Electrical Engg
  • Electronics & Tele Engg
  • Electronics Engg.
  • FRESHERS
  • Gurgaon
  • Hyderabad
  • M.E/M.Tech
  • MCA
  • MSC
  • Mumbai
  • Noida
  • OFF CAMPUS
  • Pune

TCS Digital Coding Questions | TCS Digital Coding Questions With Answers | TCS Digital Advanced Coding Questions | Coding Questions For TCS Digital

By
Cyber Tecz
-
June 15, 2021
20214
Facebook
Twitter
Pinterest
WhatsApp
    TCS Walk in Drive 2024
    TCS Walk in Drive 2024

    TCS Digital Coding Questions | TCS Digital Coding Questions With Answers | TCS Digital Advanced Coding Questions | Coding Questions For TCS Digital

    TCS Digital Coding Questions: TCS is an Indian multinational information technology (IT) services, business solutions and consulting company headquartered in Mumbai, Maharashtra. TCS operates in 44 countries and has 199 branches across the world. It is a subsidiary of the Tata Group and is listed on the Bombay Stock Exchange and the National Stock Exchange of India. Its main function is to provide IT services.The detailed about TCS Career Recruitment eligibility and application process are mentioned below

    Company Name: Tata Consultancy Services

    Company Website: TCS

    Wikipedia: TCS Wiki

    Position: Multiple Position

    Degree Needed: B.E/B.Tech/M.E/M.Tech/M.Sc/MCA.

    Passout Batch: 2018/2019/2020/2021

    Experience: 0 – 3 Years

    Job Location: Across India

    Salary: Best In Industry

    Jobs By Location And Passout Year:

    PuneHyderabad Delhi
    MumbaiCoimbatore Noida
    BangaloreChennai Off Campus
    NagpurGurgaon Walk In
    2015 Batch 2018 Batch 2021 Batch
    2016 Batch2019 Batch 2022 Batch
    2017 Batch 2020 Batch 2023 Batch

    About TCS Digital 2021:

    • The TCS Digital 2021 Hiring for Pass-Outs is expected to happen this year. The on-campus hiring process is expected to be in or after September 2020. This article will help you understand how the recruitment process panned out last year.
    • As all Engineering Graduates (B.Tech & M.Tech), MCA Graduates, MS Graduates, etc are eligible for TCS Digital 2021 Exam. It is considered the most tuff exam held by TCS.

    TCS Digital Hiring 2021 Dates:

    • All the 2021 Passed Out candidates should make a note that the TCS Digital Hiring 2021 Process may begin in the 3rd & 4th Week Of October 2020 (Tentative).

    Qualification Criteria for TCS Digital 2021 Hiring:

    • B.Tech(CSE,IT,CSE with Bioinformatics,ECE,EEE,EIE,Mechanical)
    • MCA,MS/M.Tech(SE)
    • Note: MS/M.Tech.(SE) students should register in “others” in the TCS portal if the branch doesn’t show in the scroll list.

    Percentage and CGPA Criteria for TCS Digital 2021 Hiring:

    • 60% in 10th,12th, and UG for PG
    • 7 CGPA in pursuing a degree and no current arrears.
    • No standing arrears as per the last published result. (students with N&F are not eligible).
    • Backlog Allowance: There should be no pending backlogs at the time of joining.
    • Gap Criteria: Overall Gap in Academic Career not to exceed 2 years

    TCS Digital Exam Pattern for Freshers:

    TCS Digital Exam comprises of 4 rounds generally.

    1. Round 1- Online Test
    2. Round 2- Technical Interview
    3. Round 4- HR Interview

    Round 1: TCS Digital Online Test Pattern

    Round 1 of the TCS Digital recruitment process is online which happens for a duration of 2 hours (120 minutes) The TCS Digital exam pattern for its online test is as given below.

    Section Number of questions Duration (minutes)
    English 15 10
    Quantitative Aptitude 15 30
    Programming Logic 12 25
    Coding 1 55

    Round 2: TCS Digital Technical Interview

    If you perform well in the online test, then you will be called for an immediate round of technical interview. Questions in this technical interview will be based on your engineering background, but they would majorly focus on testing your passion and ability to code/build logic.

    We have created a complete section for Technical Interview Questions.

    Round 3: TCS Digital HR Interview

    As compared to other the HR interview round is the easiest of all. You just need to be confident and clear while expressing your thoughts in this interview. By the experience of selected/  applying Candidates, we have created 2 Blogs named

    TCS Digital Coding Questions With Answers

    1. Write a program to swap two numbers without using a temporary variable.


    void swap(int &i, int &j)
    {
    i=i+j;
    j=i-j;
    i=i-j;
    }

    2. Tell how to check whether a linked list is circular.


    Create two pointers, each set to the start of the list. Update each as follows:
    while (pointer1) {
    pointer1 = pointer1->next;
    pointer2 = pointer2->next; if (pointer2) pointer2=pointer2->next;
    if (pointer1 == pointer2) {
    print (“circular\n”);
    }
    }

    3. What are the 4 basics of OOP? 


    Abstraction, Inheritance, Encapsulation, and Polymorphism.

    4. What is a command line argument?


    Getting the arguments from command prompt in c is known as command line arguments. In c main function has three arguments. They are:

    Argument counter
    Argument vector
    Environment vector

    5. Advantages of a macro over a function?


    Macro gets to see the Compilation environment, so it can expand #defines. It is expanded by the pre-processor.

    6. What are the advantages of inheritance?


    It permits code reusability. Reusability saves time in program development. It encourages the reuse of proven and debugged high-quality software, thus reducing problem after a system becomes functional.

    7. Can you list out the areas in which data structures are applied extensively?


    Compiler Design,
    Operating System,
    Database Management System,
    Statistical analysis package,
    Numerical Analysis,
    Graphics

    8. What is data structure?


    A data structure is a way of organizing data that considers not only the items stored, but also their relationship to each other. Advance knowledge about the relationship between data items allows designing of efficient algorithms for the manipulation of data.

    9. What are the differences between structures and arrays?


    Arrays are a group of similar data types but Structures can be group of different data types.

    10. What is function overloading?


    Function overloading is a feature of C++ that allows us to create multiple functions with the same name, so long as they have different parameters.Consider the following function:
       int Add(int nX, int nY)
        {
          return nX + nY;
        }

    11. What is wrong with this statement? 
    scanf(%d,whatnumber);

    An ampersand ‘&’ symbol must be placed before the variable name whatnumber. Placing & means whatever integer value is entered by the user is stored at the address of the variable name. This is a common mistake for programmers, often leading to logical errors.

    12. What will be the output of the program?

    #include<stdio.h>
    int X=40;
    int main()
    {
        int X=20;
        printf(“%d\n”, X);
        return 0;
    }


    A.20
    B.40
    C.Error
    D.No Output

    13. What will be the output of the program ?
    #include<stdio.h>
    int main()
    {
        int a[5] = {5, 1, 15, 20, 25};
        int i, j, m;
        i = ++a[1];
        j = a[1]++;
        m = a[i++];
        printf(“%d, %d, %d”, i, j, m);
        return 0;
    }


    A.2, 1, 15             
    B.1, 2, 5
    C.3, 2, 15             
    D.2, 3, 20

    14. What should the program below print?

    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    void myfunc(char** param){
    ++param;
    }
    int main(){
    char* string = (char*)malloc(64);
    strcpy(string, “hello_World”);
    myfunc(&string);
    myfunc(&string);
    printf(“%s\n”, string);
    // ignore memory leak for sake of quiz
    return 0;
    }


    1. hello_World
    2. ello_World
    3. lo_World
    4. llo_World

    15. What is the output of this C code?

    #include <stdio.h>
    void main()
    {
    int k = 5;
    int *p = &k;
    int **m = &p;
    printf(“%d%d%d\n”, k, *p, **p);
    }


    a) 5 5 5
    b) 5 5 junk
    c) 5 junk junk
    d) Compile time error

    Note: Once TCS will release the TCS Digital 2021 Exam Date For TCS Digital Registration for 2021 batch, then TCS Digital 2021 Registration link will be Available on Jobs.cybertecz.in Till then Join our Telegram Channel for Various Jobs Updates for 2021 Batch Candidates.

    CyberTecz Jobs is Available on Play Store, Download Now & Get an Inside Look into Jobs: Click here

    TCS Digital Interview Questions for Technical Round: Click here

    HR Interview Questions of TCS Digital: Click here

    How To Write Resume For Getting Shortlisted In TCS Digital: Click here

    TCS Digital Mock Test with Aptitude and Coding Assessment: Click here

    Join Telegram Group of Daily Jobs Updates for 2010-2023 Batch: Click Here

    Looking for USA Jobs Updates, Check it out at our New Website: Click here

    CyberTecz has Launched a Truly Secure Social Networking Platform: Click here

    If You Want To Get More Daily Such Jobs Updates, Career Advice Then Join the Telegram Group From Above Link Also Press Red Bell Icon At The Left Side of Page To Subscribe our Updates.

    Atos Syntel Off Campus Drive 2021 Hiring Freshers of Package 4 LPA: Click here

    Infosys Recruitment 2021 For Freshers has been Started Across India: Click here

    Accenture Hiring Freshers of Package 4.5 LPA Across India: Click here

    Why You’re Not Getting Response From Recruiter?: Click here

    Top 5 High Salary Jobs in India IT Sector 2021: Click here

    Whats is the Difference Between CV and Resume?: Click here

    How To Get a Job Easily: Professional Advice For Job Seekers: Click here

    A Leadership Guide For How To Win Hearts and Minds: Click here

    How To Improve Communication Skills with 12 Strategy: Click here

    Career Tips for Freshers: Top 7 Hacks To Land Your Target Job: Click here

    Which Graphics Processor is Best for Gaming 2021?: Click here

    Feel Like Demotivated? Check Out our Motivation For You: Click here

    Top 5 Best Mobile Tracking App in 2021 For Mobile & PC: Click here

    5 Proven Tips For How To Look Beautiful and Attractive: Click here

    Home Workouts During The Lockdown For Fitness Freaks: Click here

    What is Big Data Analytics? Does it Require Coding?: Click here

    • TAGS
    • 2021 Batch Jobs
    • 2021 recruitment
    • Coding Questions For TCS Digital
    • jobs for 2021 graduates
    • off campus drive for 2020 batch for cse
    • Off Campus Drive For 2021
    • off campus drive for 2021 batch
    • off campus placement for 2021 batch
    • recruitment for 2021 batch
    • TCS Campus Commune
    • tcs campus commune india
    • tcs campus commune login
    • tcs campus commune next step
    • TCS Career
    • tcs careers
    • TCS Careers For Freshers 2019
    • TCS Careers For Freshers 2021
    • tcs digital 2020 syllabus
    • TCS Digital 2021
    • tcs digital 2021 exam date
    • TCS Digital 2021 Hiring Process
    • TCS Digital Advanced Coding Questions
    • tcs digital careers
    • tcs digital coding questions
    • TCS Digital Coding Questions With Answers
    • tcs digital exam date 2020 for tcs employees
    • tcs digital exam date 2021 for tcs employees
    • tcs digital for experienced
    • tcs digital questions
    • tcs digital salary
    • tcs digital syllabus
    • Upcoming Off Campus Drive 2020
    • upcoming off campus drive for 2020 batch
    • Upcoming Off Campus Drive for 2021 Batch
    • upcoming off campus for 2020 batch
    Facebook
    Twitter
    Pinterest
    WhatsApp
      Previous articleCapgemini Tech Challenge 2021 | Capgemini Tech Challenge 2020 Questions And Answers | Capgemini Tech Challenge 2020 Answers Pdf
      Next articlePIT Solutions Careers 2021 Hiring Freshers as Trainee of Any Degree Graduate
      Avatar photo
      Cyber Tecz
      Our Vision is To Provide Latest Off Campus Jobs Updates To Freshers & Experienced Job Seekers. This is An Effort To Reach Millions Of Job Seekers Every Day With Latest Jobs Information.

      RELATED ARTICLESMORE FROM AUTHOR

      Salesforce Off Campus Drive 2024

      Salesforce Off Campus Drive 2024 Hiring Freshers for Software Engineer

      Schneider Electric Recruitment 2024

      Schneider Electric Recruitment 2024 Hiring Freshers for Software Engineer

      ABB Hiring Freshers 2024

      ABB Hiring Freshers 2024 for R&D Software Engineer of Any Degree Graduate

      Top 10 Strategies for Tacking Apple’s Multi Round Interviews
      Top 10 Strategies for Tacking Apple’s Multi Round Interviews
      Google Hiring Freshers Graduate for Summer Intern 2023
      Google Hiring Freshers Graduate for Summer Intern 2023
      Top 10 Companies for Computer Engineering Graduates
      Top 10 Companies for Computer Engineering Graduates
      Top Career Opportunities After MCA Education
      Top Career Opportunities After MCA Education
      Top 10 High Salary Courses in Mumbai
      Top 10 High Salary Courses in Mumbai
      View all stories

      MOST POPULAR

      Salesforce Off Campus Drive 2024

      Salesforce Off Campus Drive 2024 Hiring Freshers for Software Engineer

      October 1, 2023
      Schneider Electric Recruitment 2024

      Schneider Electric Recruitment 2024 Hiring Freshers for Software Engineer

      October 1, 2023
      ABB Hiring Freshers 2024

      ABB Hiring Freshers 2024 for R&D Software Engineer of Any Degree...

      October 1, 2023
      Reliance Jio Off Campus Drive 2024

      Reliance Jio Off Campus Drive 2024 Hiring Freshers Graduate Engineer Trainee

      September 30, 2023
      Google Summer Internship 2024

      Google Summer Internship 2024 Hiring Freshers for Application Engineers

      September 30, 2023
      Download our app on Google Playstore

      EDITOR PICKS

      PTC Jobs for Freshers 2023

      PTC India Careers 2023 for Freshers Hiring as Cloud Engineer of...

      May 23, 2023

      POPULAR POSTS

      Accenture 2022 Recruitment

      Accenture Jobs 2023 Hiring Freshers As Associate Software Engineer of Package...

      December 1, 2020
      Infosys Recruitment 2023

      Infosys Off Campus Freshers Recruitment 2023 Hiring as System Engineer of...

      February 7, 2022
      TCS NextStep Registration 2023

      TCS NQT 2023 | TCS Recruitment Drive For Freshers | TCS...

      January 17, 2021

      POPULAR CATEGORY

      • FRESHERS7161
      • OFF CAMPUS6982
      • B.E/B.Tech6839
      • CS/IT Engg.6659
      • Electronics & Tele Engg6593
      • Electronics Engg.6474
      • Electrical Engg6467
      • 2020 BATCH4983
      • 2019 BATCH4117
      ABOUT US
      If you are a fresher or experienced looking for jobs, CyberTecz Jobs is the right place to choose. Here you can find thousands of small and top private, public Jobs
      Contact us: [email protected]
      FOLLOW US
      • Terms & Conditions
      • Privacy Policy
      • Abous us
      © CyberTecz 2023
      Top 10 Strategies for Tacking Apple’s Multi Round Interviews Google Hiring Freshers Graduate for Summer Intern 2023 Top 10 Companies for Computer Engineering Graduates Top Career Opportunities After MCA Education Top 10 High Salary Courses in Mumbai