InfyTQ Final Round Previous Year (Java/Python) Questions with Solutions.




Hello Friends in the post I will attach a PDF of Final Round Previous Year  Questions (JAVA/Python) For the Explanation Check Channel.



 

πŸ“ŒπŸ“ŒFor InfyTQ & HackwithInfy Updates Join Telegram Group:- 






πŸ“ŒπŸ“ŒCheck InfyTQ Final Round Youtube Playlist:-






Question 1:- PDF


Question 2:- PDF


Question 3:- PDF


Question 4,5:- PDF


Advanced Questions Series:- PDF


Questions NO:- 6 PDF


Check Videos & Share. Thanks






Comments

  1. 3rd question
    m,n=input().split(':')
    x=sum(list(map(lambda x: x**2,list(map(int,list(n))))))
    if x%2==0:
    print(m[len(m)-1]+m[:len(m)-1])
    else:
    print(m[2:]+m[:2])

    ReplyDelete
  2. a=list(map(int,input().split(',')))
    k=[[j] for i in a for j in range(1,(i//2)+1) if i%j==0]
    j=[sum([j for j in range(1,(i//2)+2) if i%j==0]) for i in a]
    for i in range(len(a)):
    if j[i]==a[i]:
    print(j[i])
    else:
    j[i]=0
    if sum(j)==0:
    print('-1')

    ReplyDelete

Post a Comment