Skip to main content

Posts

Showing posts with the label #tcs #tcsxplore #tcsion

TCS NQT 2024 : for Fresher 2024 batch ( On Campus & Off Campus )

  --------------------- TCS NQT 2024 SYLLABUS ---------------------- Part A  Foundation Section                  a.  Numerical Ability   (  25 min for 20 Question )                b. Verbal Ability           (  25 min for 25 Question )                c. Reasoning Ability    (  25 min for 20 Question ) Part B   Advanced Section                 a. Advanced Numerical Ability   (  20 min for 10 Q )                b. Advanced Reasoning Ability   (  15 min for 10 Q )                c. Advanced Coding                     (  55 min for 2 Q )

TCS Xplore 2023 Ion Proctored Exam ( IPA) 26 june - JAVA coding solution ( 35 marks )

                Problem Statement :  ---------------------->>>>    Click Here : Subscribe to click   <<<<< -------------------------- Create a class Team  and make attributes : int TeamID; String TeamName; String Location; int TotalRunsByTeam; int numberOfWicketsInTeam; Write  constructor and their getter and setter of all the attributes and make the attributes private . Write a Solution class and a main method inside it. Inside main method , create a method teamWithHighestRuns . In this method you have to pass array object and one String input and one integer value that will return integer value . we needs to check every object and if objects which has the location matched to string value taken by user and  numberOfWicketsInTeam  should be more than integer value then find the team with highest runs for the above mentioned condition .  It returns the sum and if sum is gr...

TCS Xplore 2023 - SQL MCQ question for best practice ( iON Proctored Assessment )

                     Multiple Choice Questions on SQL  ---------------------->>>>    Click Here : Subscribe to click   <<<<< --------------------------  SQL --  Structured Query Language Table Create -   create table CREATE   TABLE  STUDENTS (   ID  INT                             NOT   NULL ,   NAME   VARCHAR  (20)  NOT   NULL ,   AGE  INT                           NOT   NULL ,   ADDRESS  CHAR  (25),   PRIMARY   KEY  (ID)   );   Insert Values :   INSERT INTO Stu...

TCS Xplore 2023 - JAVA MCQ question for best practice ( iON Proctored Assessment )

           Multiple Choice Question ( JAVA )     ---------------------->>>>    Click Here : Subscribe to click   <<<<< -------------------------- PART - 01  Q1 . What is size of float and double ?         a.  32 and 64                      b. 32 and 32          c.  64 and 64                      d. 64 and 32  Ans : 32 and 64  Q2 .  What will be the output ?            short x=10;           x*=5;           System.out.println(x);         a.  50                                b. 10         c.  No output    ...

TCS Xplore 2023 ( iON proctored Assessment ) - MCQ on Unix with clear concept

                    Unix ( Multiple Choice Quistion )  1.  Which Symbol be used with grep command to match the the pattern pat at the beginning of a line ?          a. ^pat         b. $pat         c. pat$         d. pat^ Correct Answer : a Explantion :  Matching the lines that start with a string : The ^ regular expression pattern specifies the start of a line. This can be used in grep to match the lines which start with the given string or pattern. $ grep "^unix" file.txt 2. Which command is used to sort the lines of a data in a file in reverse order ?            a.  sort             b. sh            c. sort-r            d. st            e. None of the above  Correct Answer : ...