TCS NQT 2024 Preparation | Coding Question Discussion | TCS NQT Coding Preparation | Ques - 1

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

КОМЕНТАРІ • 47

  • @sankalpnaik877
    @sankalpnaik877 9 місяців тому +17

    Your "smartwork" will take more time than writing logic

  • @flash_ae
    @flash_ae 9 місяців тому +11

    package TCS;
    public class Question1 {

    private static boolean isPrime(int i) {
    if(i

  • @heymister7510
    @heymister7510 9 місяців тому +10

    import math
    def isprime(n):
    c=0
    for i in range(2,n):
    if n%i==0:
    c+=1
    if c==0:
    return True
    else:
    return False
    def isperfect(n):
    if n**0.5==int(n**0.5):
    return True
    else:
    return False
    def out(n):
    if n==0:
    print(1)
    l=[]
    m=[]
    for i in range(2,n+1):
    if isprime(i):
    l.append(i)
    for i in range(1,n+1):
    if isperfect(i):
    m.append(i)
    if isprime(n):
    r=l.index(n)
    res=int(math.pow(2,r))
    return res
    elif isperfect(n):
    r=m.index(n)
    res=int(math.pow(3,r))
    return res
    else:
    c=out(n-1)+out(n-2)
    return int(c)
    n=int(input())
    print(out(n))

  • @maheenfatma4694
    @maheenfatma4694 4 місяці тому +5

    Are these actual TCS questions??

  • @yashdarole7792
    @yashdarole7792 9 місяців тому +3

    in java
    import java.util.*;
    public class equiindex{
    private static HashSet primes = new HashSet(Arrays.asList(2,3,5,7,11,13,17,19,23,29,31,37));
    public static Boolean isPrime(int n){
    return primes.contains(n);
    }
    private static HashSet square = new HashSet(Arrays.asList(1,4,9,16,25,36));
    public static Boolean isSquare(int n){
    return square.contains(n);
    }
    public static void Series(int n ){
    int pop=1;
    int pos=1;
    int arr[] = new int [n];
    for(int i=0;i

  • @ranadheerpenki9919
    @ranadheerpenki9919 6 місяців тому

    🎯 Key points for quick navigation:
    01:14 *🧩 Understanding the series pattern with prime and square positions.*
    02:51 *📊 Explaining how to derive the series based on prime, square, and other positions.*
    07:22 *💡 Approach to solving the coding question by iterating through the series positions.*
    11:49 *🖥️ Code walkthrough for implementing the logic of identifying prime numbers, perfect squares, and sum of previous two values.*
    17:51 *🔄 Ensuring correct output by adjusting array indexing based on positions in the series.*
    Made with HARPA AI

  • @giveawayfinder_Roni
    @giveawayfinder_Roni 10 місяців тому

    thanks sir
    previous yr qst solve kariye plz.

  • @abhishekkumarsingh611
    @abhishekkumarsingh611 Рік тому +4

    39 is not prime you have put true

  • @vishurathore1676
    @vishurathore1676 9 місяців тому +2

    public static boolean isPrime(int n){
    for(int i =2 ; i

    • @shadowfrank1731
      @shadowfrank1731 6 місяців тому

      U didn't input the nth term? How will u get the answer

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

    Jo 2 Coding Questions ke liye 90 Min milte hai ,usme humlog kabhi bhi unn 2 Questions ke beech switch kar sakte hai ki ?? Har 1 Coding Question ka time slot fixed hota hai aur agar fixed hota hai to 1st quesn ko kitna time milta hai ??

    • @mechscitech6227
      @mechscitech6227 4 місяці тому +1

      fixed hota hai dono question ka time slot

    • @abhishekanand3462
      @abhishekanand3462 4 місяці тому

      @@mechscitech6227 Aur , kya 10 hi Compilations milte hai ek Question ke liye ?

    • @abhishekanand3462
      @abhishekanand3462 4 місяці тому

      @@mechscitech6227 kya humlog #include ka use kar sakte hai TCS ke exam me

    • @Tanmoy-d4h
      @Tanmoy-d4h 4 місяці тому

      @@abhishekanand3462 nhi

    • @trusfratedbunny2215
      @trusfratedbunny2215 3 місяці тому

      @@abhishekanand3462 Bro can u plz tell what this header do..?

  • @arun5536
    @arun5536 8 місяців тому +2

    Python programming

  • @sagarsinha668
    @sagarsinha668 4 місяці тому

    jise coding ka c nhi ata wo kese kre....kese kia or kese padhe ki yh chije samjh ay

  • @ArnabBhadra02
    @ArnabBhadra02 Рік тому +4

    This kind of question is foundation level qs or advance level
    And one more thing in the advance section the both coding will be tough or one will be easy

    • @CodeBashers
      @CodeBashers  Рік тому +7

      One will be easy and second will be difficult

  • @saiavinash663
    @saiavinash663 2 місяці тому

    how to write code in python

  • @amitkr3641
    @amitkr3641 9 місяців тому

    Can you tell me one thing that NQT exam will be MCQ based or not ?

    • @imvishal_kr
      @imvishal_kr 8 місяців тому

      All sections will be MCQ, except coding part

  • @AmberSparrow876
    @AmberSparrow876 Рік тому +1

    Is this an easy-level question?

  • @AJayasri-p3x
    @AJayasri-p3x Місяць тому +1

    How to contact you.

  • @servingcynical9822
    @servingcynical9822 Рік тому +6

    Provide me in Java

  • @preetamkumar8128
    @preetamkumar8128 6 місяців тому +1

    Can you give me this coding question as java i can't understand python

    • @CodeBashers
      @CodeBashers  6 місяців тому +1

      Hi contact me at t.me/cdb15

  • @Czjajava
    @Czjajava 9 місяців тому

    16 is a power of 3 ?????

    • @Standboard
      @Standboard 9 місяців тому +1

      16 is a perfect sqaure of 4 which you have to replace with a power of 3

  • @AlgorithmCodings
    @AlgorithmCodings 6 місяців тому

    package java_pratice;
    import java.util.*;
    public class hello {
    public static void main(String[] args){
    Scanner in = new Scanner(System.in);
    int term = in.nextInt();
    int power_of_2 =1;
    int power_of_3 =1;
    int[] arr =new int[term];
    for(int i=0;i

    • @trusfratedbunny2215
      @trusfratedbunny2215 3 місяці тому

      What to do, Values at remaining position is not coming When enter that element like values at position 6, 8, 10, 12, 14, 15

  • @terranceraj6834
    @terranceraj6834 9 місяців тому +2

    i had to write this particular piece of code for it to understand the last else condition cuz the array was going out of bounds
    if (n >= 1) {
    arr[0] = 1;
    }
    if (n >= 2) {
    arr[1] = 1;
    }
    can we do this in some alternate way

  • @Ravi_Raj_._09-v5w
    @Ravi_Raj_._09-v5w 9 місяців тому

    39 is not a prime number

    • @harshprajapat165
      @harshprajapat165 7 місяців тому

      It is prime bro

    • @prabhakarsinghbaghel3904
      @prabhakarsinghbaghel3904 6 місяців тому +1

      ​@@harshprajapat165 13x3=39 how is it prime dude, basic maths 3+9=12 which means its divisible by 3 as 12 is divisible by 3

  • @nagalavanyadoradla6076
    @nagalavanyadoradla6076 Рік тому +3

    Can You please check whether this code works properly for all test cases
    def powerOf(a,b):
    if(b==0):
    return 1
    else:
    return a*powerOf(a,b-1)
    def prime(n):
    c=0
    for i in range(2,n):
    if(n%i==0):
    c=c+1
    break
    if(c==1):
    return False
    else:
    return True
    def perfect(n):
    if(n**0.5==int(n**0.5)):
    return True
    else:
    return False
    def count(n):
    if(n==0 or n==1):
    print(1)
    l=[]
    l1=[]
    for i in range(2,n+1):
    if(prime(i)):
    l.append(i)
    for i in range(2,n+1):
    if(perfect(i)):
    l1.append(i)
    if(prime(n)):
    r=l.index(n)
    ans=powerOf(2,r)
    return ans
    elif(perfect(n)):
    r2=l1.index(n)+1
    ans2=powerOf(3,r2)
    return ans2
    else:
    return count(n-1)+count(n-2)
    n=int(input())
    print(count(n))

  • @03_utpallucky40
    @03_utpallucky40 7 місяців тому

    #include
    #include
    using namespace std;
    bool isPrime(int n){
    for(int m=2;m

  • @dharanirama4914
    @dharanirama4914 9 місяців тому

    import java.util.*;
    public class Main
    {
    public static void main(String[] args) {
    Scanner sc= new Scanner(System.in);
    int n=sc.nextInt();
    int pos=1;
    int pos1=1;
    int a[]=new int[41];
    for(int i=1;i

  • @shashwat4299
    @shashwat4299 6 місяців тому +2

    39 is not a prime no

    • @CodeBashers
      @CodeBashers  6 місяців тому +1

      Can u contact me at t.me/cdb15

  • @ankitabanerjee4958
    @ankitabanerjee4958 4 місяці тому +1

    39 is not a prime number

  • @piyush.creates
    @piyush.creates 3 місяці тому

    39 is not a prime number