Upload Button Icon Add office photos

TRY LOGIC Soft Solutions

Compare button icon Compare button icon Compare

Filter interviews by

TRY LOGIC Soft Solutions Web Developer Interview Questions and Answers

Updated 20 Feb 2022

TRY LOGIC Soft Solutions Web Developer Interview Experiences

2 interviews found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 20 Feb 2022

I applied via Campus Placement and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Ok

Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Gudmng sir
I am parvathi I have 6months intership on web devoper

Interview Questionnaire 

5 Questions

  • Q1. Are you crete full responsive web site?
  • Ans. 

    Yes, I can create fully responsive websites.

    • I have experience in using responsive design techniques to ensure websites adapt to different screen sizes.

    • I use media queries, flexible grids, and fluid images to create responsive layouts.

    • I test websites on various devices and browsers to ensure they function properly and look good on all screens.

  • Answered by AI
  • Q2. What is php ?
  • Q3. What is css3 ?
  • Ans. 

    CSS3 is the latest version of Cascading Style Sheets used for styling web pages.

    • CSS3 introduces new features like animations, transitions, and gradients.

    • It also includes new selectors like :nth-child() and :not().

    • CSS3 supports media queries for responsive design.

    • It has improved support for typography with features like @font-face and text-shadow.

    • CSS3 also includes new layout modules like flexbox and grid.

  • Answered by AI
  • Q4. What is javascript ?
  • Q5. What is bootstrap ?

Skills evaluated in this interview

Web Developer Interview Questions Asked at Other Companies

Q1. Last Index of Element The task is to determine the index of the l ... read more
Q2. Check Indices With Given Difference Problem Statement You are pro ... read more
asked in Evalueserve
Q3. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Internshala
Q4. Clone a Linked List with Random Pointers Given a linked list wher ... read more
asked in Internshala
Q5. Loot Houses Problem Statement A thief is planning to steal from s ... read more

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about TRY LOGIC Soft Solutions?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2+2 coding formula in java script

Round 2 - HR 

(2 Questions)

  • Q1. Regarding salary expectation
  • Q2. Regarding bank account
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via LinkedIn

Round 1 - Coding Test 

Python coding tests and technical interviews.

Round 2 - HR 

(1 Question)

  • Q1. What cybersecurity skills do you possess?
  • Ans. 

    I possess strong cybersecurity skills including knowledge of network security, encryption, penetration testing, and incident response.

    • Knowledge of network security protocols and best practices

    • Experience with encryption techniques and tools

    • Proficiency in conducting penetration testing to identify vulnerabilities

    • Ability to respond to and mitigate security incidents

    • Familiarity with security compliance standards such as GD...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be knowledgeable about networking and security, including CompTIA certifications.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Frontend development with react

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Describe your professional background
  • Ans. 

    I have over 5 years of experience in software development, specializing in web applications and agile methodologies.

    • Developed a full-stack web application using React and Node.js for an e-commerce platform, improving user engagement by 30%.

    • Led a team of 4 developers in an agile environment, successfully delivering projects on time and within budget.

    • Implemented RESTful APIs that enhanced data retrieval speed by 25%, opt...

  • Answered by AI
  • Q2. What is your ideal job
  • Ans. 

    My ideal job is one that fosters creativity, collaboration, and continuous learning while making a positive impact through technology.

    • A collaborative environment where team members share ideas and support each other, like in Agile development teams.

    • Opportunities for continuous learning, such as attending workshops or conferences to stay updated on the latest technologies.

    • Projects that have a meaningful impact, like dev...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This is very easy interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. Can you describe a time when you led a team?
  • Q2. How do you motivate and inspire team members
  • Ans. 

    I motivate team members by fostering collaboration, recognizing achievements, and encouraging personal growth.

    • Encourage open communication: Create an environment where team members feel comfortable sharing ideas and feedback.

    • Recognize achievements: Celebrate both small wins and major milestones to boost morale and motivation.

    • Set clear goals: Help team members understand their roles and how they contribute to the larger...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Create a master resume.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Write a mongoDB query to filter top 5 students
  • Ans. 

    Use MongoDB's aggregation framework to filter and sort students by their scores, returning the top 5 results.

    • Use the `find()` method to query the students collection.

    • Sort the results by the score field in descending order.

    • Limit the results to 5 using the `limit()` method.

    • Example: `db.students.find().sort({ score: -1 }).limit(5)`

    • Ensure the score field exists and is indexed for better performance.

  • Answered by AI
  • Q2. What is redux and difference between redux and context api
  • Ans. 

    Redux is a state management library for JavaScript apps, while Context API is a built-in React feature for managing state.

    • Redux provides a centralized store for application state, while Context API allows for state sharing across components without prop drilling.

    • Redux uses actions and reducers to manage state changes, whereas Context API uses the Provider and Consumer pattern.

    • Redux is more suitable for large applicatio...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Coding test duration is 30 to 40 min
on paper pen and topic is simple like related to string,pattern and number's

Round 2 - HR 

(2 Questions)

  • Q1. Introduction about yourself
  • Ans. 

    I'm a passionate software developer with a strong background in full-stack development and a love for problem-solving.

    • Experience in JavaScript frameworks like React and Angular.

    • Developed a full-stack application for a local business, improving their online presence.

    • Strong understanding of algorithms and data structures, demonstrated through competitive programming.

    • Collaborated in Agile teams, participating in daily sta...

  • Answered by AI
  • Q2. Salary expectation
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for similar roles.

    • Consider my experience: With 5 years in software development, I would expect a salary in the range of $80,000 to $100,000.

    • Location matters: Salaries can vary significantly based on the cost of living in different...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Related to the basic of html css and js
  • Q2. Ask run time short code and explanation
  • Ans. 

    Runtime refers to the period when a program is executing, affecting performance and resource usage.

    • Runtime is when code is executed, as opposed to compile time.

    • Performance can vary based on algorithms used; e.g., O(n) vs O(n^2).

    • Memory usage is crucial; e.g., using arrays vs linked lists can impact runtime.

    • Dynamic typing in languages like Python can lead to slower runtime compared to statically typed languages like C++.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. About yourself and other
  • Q2. All about company your expectation and salary disscuced

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in every round the proccess is so simple and easy
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Introduced Yourself
  • Q2. About knowledge in Software Development

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

TRY LOGIC Soft Solutions Interview FAQs

How many rounds are there in TRY LOGIC Soft Solutions Web Developer interview?
TRY LOGIC Soft Solutions interview process usually has 2 rounds. The most common rounds in the TRY LOGIC Soft Solutions interview process are Aptitude Test and HR.
What are the top questions asked in TRY LOGIC Soft Solutions Web Developer interview?

Some of the top questions asked at the TRY LOGIC Soft Solutions Web Developer interview -

  1. are you crete full responsive web si...read more
  2. what is javascrip...read more
  3. what is bootstra...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Interview Questions from Similar Companies

Apptunix Interview Questions
4.2
 • 49 Interviews
Odoo Interview Questions
3.3
 • 28 Interviews
Anywhere Interview Questions
4.6
 • 16 Interviews
SaaS Labs Interview Questions
3.2
 • 14 Interviews
Seceon Inc. Interview Questions
4.8
 • 13 Interviews
View all
TRY LOGIC Soft Solutions Web Developer Salary
based on 9 salaries
₹1 L/yr - ₹3.4 L/yr
57% less than the average Web Developer Salary in India
View more details

TRY LOGIC Soft Solutions Web Developer Reviews and Ratings

based on 2 reviews

4.2/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

4.2

Salary

2.4

Job security

3.0

Company culture

4.2

Promotions

3.6

Work satisfaction

Explore 2 Reviews and Ratings
Associate Software Engineer
14 salaries
unlock blur

₹1 L/yr - ₹3.1 L/yr

Web Developer
9 salaries
unlock blur

₹1 L/yr - ₹3.3 L/yr

Web Designer
7 salaries
unlock blur

₹1 L/yr - ₹2.8 L/yr

Intern
6 salaries
unlock blur

₹1.1 L/yr - ₹3.5 L/yr

Software Engineer
5 salaries
unlock blur

₹0.8 L/yr - ₹2.6 L/yr

Explore more salaries
Compare TRY LOGIC Soft Solutions with

Bhash Software Labs

4.3
Compare

Apptunix

4.2
Compare

QR Crypher

4.2
Compare

HirePro Consulting

3.7
Compare
write
Share an Interview