Tech Mahindra Coding Questions , Pseudo Code, Technical, Psychometric Test| Previous Year Que & Ans

Поділитися
Вставка
  • Опубліковано 4 січ 2025

КОМЕНТАРІ • 28

  • @sohamnaik7788
    @sohamnaik7788 3 місяці тому +6

    Solving starts 8:32

  • @wellitsabhi
    @wellitsabhi 5 місяців тому +6

    at 48:40 , 2 AND 1 is 0 not 1 . ALso 1 OR 6 is 7 not 1 , and if they are logical AND , OR operator , not bitwise. then how do we differentiate what is asked??

    • @sandeepmukherjee8927
      @sandeepmukherjee8927 5 місяців тому +2

      The logical AND operator ( && ) returns true if both operands are true and returns false otherwise. The operands are implicitly converted to type bool before evaluation, and the result is of type bool . Logical AND has left-to-right associativity

  • @Fandrii
    @Fandrii 5 місяців тому +3

    Sir, registration are closed 😢😢😢

  • @abhijeetdas1826
    @abhijeetdas1826 5 місяців тому +1

    import java.util.*;
    import java.util.Arrays;
    public class DataServer {
    public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String data = sc.next();
    char server[] = data.toCharArray();
    Arrays.sort(server);
    int n = server.length;
    int count = 0;
    for (int i = 1; i < n; i++) {
    if (server[i] == server[i - 1]) {
    count++;
    }
    }
    System.out.println(count);
    sc.close();
    }
    } I have written this code for coding question 1, is this correct??

  • @adarshmaurya9614
    @adarshmaurya9614 5 місяців тому

    sir both round hapenning same date?

  • @krshivashankarshivu8105
    @krshivashankarshivu8105 Місяць тому

    Hello sir,
    can you send the 2024(year) aptitude, english(essay), technical and psyschometric question paper. (tech mahindra)

  • @sharukhmohammed3078
    @sharukhmohammed3078 5 місяців тому

    sir what is mode conducting test
    online(home)
    offline(office)

  • @NoobBanda12
    @NoobBanda12 5 місяців тому +1

    please provide code in c++

  • @suraj_11-n3v
    @suraj_11-n3v 5 місяців тому

    Sir how to crack essay writing?

  • @SanjanaPatil-h6l
    @SanjanaPatil-h6l 5 місяців тому

    Can we get this codes in java?

  • @FamithaMohammedIsmail
    @FamithaMohammedIsmail 5 місяців тому

    can i solve it using python?

  • @Nandini05702
    @Nandini05702 5 місяців тому +1

    Please provide coding notes in Java @Lokesh sir

    • @bhuvanapriyaadapala4522
      @bhuvanapriyaadapala4522 5 місяців тому +1

      import java.util.HashMap;
      import java.util.Scanner;
      class HelloWorld {
      public static void main(String[] args) {
      Scanner sc=new Scanner(System.in);
      int n=sc.nextInt();
      int arr[]=new int[n];
      for(int i=0;i

  • @apoorvmondal1126
    @apoorvmondal1126 5 місяців тому +2

    i think pseudocode question 3 is solved wrong!! 2 and 1 is 0 and 0 or 6 will be 6 . can anyone confirm??

    • @avantikasingh5481
      @avantikasingh5481 5 місяців тому

      2 and 1 =0

    • @apoorvmondal1126
      @apoorvmondal1126 5 місяців тому

      @@avantikasingh5481 yup

    • @apoorvmondal1126
      @apoorvmondal1126 5 місяців тому

      @@avantikasingh5481 smjh nhi aara inne kaise solve kiya hai , aur jo answer aara hai mera 6 voto option mehi nhi hai...

    • @avantikasingh5481
      @avantikasingh5481 5 місяців тому

      @@apoorvmondal1126 exactly. options mein answer nahi hai.shayad galat hain

    • @RahulKumar-uc4ts
      @RahulKumar-uc4ts 5 місяців тому +1

      @apoorvmondal1126 and @avantikasingh5481
      Actually here AND and OR operators are Logical operators not bitwise and any number apart from zero is considered as True so the final ans is also True i.e. 1