Upload Button Icon Add office photos

Filter interviews by

Triyam Information Technology Interview Questions and Answers

Updated 16 Oct 2024

Triyam Information Technology Interview Experiences

Popular Designations

5 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. SQL, Python, Joins, Difference between Char and Varchar
  • Q2. Retrieve employee details whose joining date should be less than one year .
  • Q3. Where And Having clause difference
  • Ans. 

    Where clause is used to filter rows before grouping, while Having clause is used to filter groups after grouping.

    • Where clause is used with SELECT, UPDATE, DELETE statements to filter rows based on a condition.

    • Having clause is used with GROUP BY clause to filter groups based on a condition.

    • Where clause is applied before grouping, Having clause is applied after grouping.

    • Example: SELECT * FROM table_name WHERE condition; ...

  • Answered by AI
  • Q4. Inner join SQLquery questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in SQL language, practice coding

Skills evaluated in this interview

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is mean by encapsulation?
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for data hiding, which prevents outside code from directly accessing an object's internal data.

    • Encapsulation also helps in achieving data abstraction, where the internal details of an object are hidden...

  • Answered by AI
  • Q2. Difference between java and c?
  • Ans. 

    Java is a high-level, object-oriented programming language, while C is a low-level, procedural programming language.

    • Java is platform-independent, while C is platform-dependent.

    • Java uses automatic memory management (garbage collection), while C requires manual memory management.

    • Java is more secure due to its strong type system and runtime environment, while C allows for more direct memory manipulation.

    • Java is typically ...

  • Answered by AI

Skills evaluated in this interview

Node JS Developer Interview Questions asked at other Companies

Q1. 2. What are the main modules of Node.js? Explain in detail.
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL - DDL, DML,Joins, left join, right join, Orderby keyword Excel - Hlookup, Vlookup

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basic programming concepts especially SQL, Excel , Python and JAVA

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

SQL Developer Interview Questions & Answers

user image Anonymous

posted on 21 Mar 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Ddl,dml,joins,subquery

Interview Preparation Tips

Interview preparation tips for other job seekers - Read on w3 schools on basics it might help

SQL Developer Interview Questions asked at other Companies

Q1. How is a change request in application serviced by development team (business analysis, code analysis, discussion with BA, requirment freeze, etc.)
View answer (4)

Triyam Information Technology interview questions for popular designations

 Software Developer Trainee

 (2)

 Node JS Developer

 (1)

 Python Software Developer

 (1)

 SQL Developer

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The test went for half hr and they asked simple python coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Normal technical question on how to build and design apps

Python Software Developer Interview Questions asked at other Companies

Q1. What is the purpose of using the super keyword, Inheritance in Python
View answer (1)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - It's really nice to talk about this, means it provides a nice talking environment.
Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude and technical mcq

Round 2 - Coding Test 

Technical round (Virtual)

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about coding and eager to learn and grow in the software development field.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and software development

    • Eager to learn and grow in the field

  • Answered by AI
  • Q2. Explain about project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented backend functionality using Node.js and MongoDB

    • Incorporated user authentication and authorization features

    • Utilized Agile methodology for project management

  • Answered by AI

I applied via AmbitionBox and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Coding Test 

HTML and CSS or javascript

Round 2 - Aptitude Test 

About professional aptitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Please take the interview online. And if di any mistake or wrong answer then please suggest me and give me a opportunities for improving

I applied via LinkedIn and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Question are-(1) write code for print hello world in c and c++
  • Q2. 2- what is prime number
  • Ans. 

    A prime number is a positive integer greater than 1 that has no positive integer divisors other than 1 and itself.

    • Prime numbers are only divisible by 1 and themselves.

    • Examples of prime numbers include 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, and 97.

    • The number 1 is not considered a prime number.

  • Answered by AI
  • Q3. Write the program of even odd
  • Ans. 

    Program to determine if a number is even or odd.

    • Use the modulo operator (%) to check if the number is divisible by 2.

    • If the remainder is 0, the number is even. Otherwise, it is odd.

    • Example: int num = 5; if(num % 2 == 0) { printf("Even"); } else { printf("Odd"); }

  • Answered by AI
  • Q4. Then he start asking questions from chemistry this is surprising for a IT student . First question what in periodic table and which type of elements in this
  • Q5. Then he asked difference between metal and meteloid
  • Q6. Then asked what is Pythagoras theorem then bodmas rule and then interview was end

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to succeed in this company then you have to read basics of your subject that you mentioned in your resume and learn to do coding

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. If you know what ever the technical lead ask the question give in a confident manner and if you don't know then don't force your self that you don't know the answers. Just mention that I'm not aware of the...
  • Q2. Practice from google - What is the interview questions for freshers? follow all the questions in all the available URL's.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Be Brave
Be straight forward
Be Strong
Give strong and honest statements
Don't panic
Don't neglect
Don't ignore them
Don't give false statements

Triyam Information Technology Interview FAQs

How many rounds are there in Triyam Information Technology interview?
Triyam Information Technology interview process usually has 1-2 rounds. The most common rounds in the Triyam Information Technology interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Triyam Information Technology interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Triyam Information Technology. The most common topics and skills that interviewers at Triyam Information Technology expect are SQL, Excel, Project Management, .Net and C#.
What are the top questions asked in Triyam Information Technology interview?

Some of the top questions asked at the Triyam Information Technology interview -

  1. Where And Having clause differe...read more
  2. What is mean by encapsulati...read more
  3. Difference between java and...read more

Tell us how to improve this page.

Triyam Information Technology Interview Process

based on 9 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.7k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
View all

Triyam Information Technology Reviews and Ratings

based on 29 reviews

4.1/5

Rating in categories

3.9

Skill development

3.6

Work-life balance

3.7

Salary

3.7

Job security

4.0

Company culture

3.6

Promotions

3.5

Work satisfaction

Explore 29 Reviews and Ratings
ETL Developer
55 salaries
unlock blur

₹1.8 L/yr - ₹6.5 L/yr

Team Lead
16 salaries
unlock blur

₹3 L/yr - ₹9.4 L/yr

SQL Developer
14 salaries
unlock blur

₹3.5 L/yr - ₹5.5 L/yr

Technical Lead
8 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

RPA Developer
7 salaries
unlock blur

₹2.1 L/yr - ₹3.8 L/yr

Explore more salaries
Compare Triyam Information Technology with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview