Filter interviews by
I was interviewed in Oct 2023.
IMAP stands for Internet Message Access Protocol, used for retrieving emails from a mail server.
IMAP allows users to access their emails from multiple devices
It keeps emails stored on the server, allowing for easy access and synchronization
IMAP is commonly used by email clients like Outlook, Thunderbird, and Apple Mail
POP3 (Post Office Protocol version 3) is a protocol used to retrieve emails from a mail server.
POP3 is used to download emails from a mail server to a local email client.
It works by connecting to the server and downloading any new messages to the client's inbox.
POP3 typically uses port 110 for unencrypted connections and port 995 for encrypted connections.
Once emails are downloaded via POP3, they are usually removed fr...
SMTP (Simple Mail Transfer Protocol) is a communication protocol used for sending and receiving email.
SMTP is used to send emails between servers.
It works in conjunction with POP3 or IMAP protocols for email retrieval.
SMTP uses port 25 for communication.
Example: When you send an email from your email client, SMTP is used to send the email to the recipient's email server.
Golden Rules of Accounting are basic principles that guide the process of recording financial transactions.
There are three Golden Rules of Accounting: Debit what comes in, Credit what goes out; Debit the receiver, Credit the giver; Debit expenses and losses, Credit income and gains.
These rules help maintain the balance in the accounting equation: Assets = Liabilities + Equity.
For example, when a company receives cash f...
I applied via Naukri.com and was interviewed before Sep 2023. There was 1 interview round.
Experienced customer support engineer with a passion for problem-solving and helping customers.
Over 5 years of experience in customer support roles
Strong technical background in troubleshooting software and hardware issues
Excellent communication skills and ability to work well under pressure
Proven track record of resolving complex customer issues efficiently
Passionate about providing top-notch customer service and buil
I have 8 years of experience in customer support roles, with 4 years specifically in senior customer support engineer positions.
8 years of overall customer support experience
4 years in senior customer support engineer roles
Experience in handling complex technical issues
Strong communication and problem-solving skills
I am choosing this job because of my passion for helping customers and solving technical issues.
Passion for helping customers
Enjoy solving technical issues
Opportunity for growth and learning in a senior role
Puthur Infotech interview questions for popular designations
I applied via Referral and was interviewed in Nov 2020. There were 4 interview rounds.
RJ45 and RJ11 connectors are types of connectors used in networking and telecommunications.
RJ45 connectors are used for Ethernet connections and have 8 pins.
RJ11 connectors are used for telephone connections and have 6 pins.
RJ45 connectors are larger in size compared to RJ11 connectors.
RJ45 connectors are commonly used in home and office networks.
RJ11 connectors are commonly used for landline telephones and DSL connect
DHCP stands for Dynamic Host Configuration Protocol. It is a network protocol that automatically assigns IP addresses to devices.
DHCP is used to simplify network administration by automatically assigning IP addresses to devices.
It allows devices to join a network without manual configuration.
DHCP servers can also assign other network information such as subnet mask, default gateway, and DNS server addresses.
DHCP leases...
Tools for identifying and solving problems as a System Administrator
Monitoring tools like Nagios, Zabbix, and PRTG
Log analysis tools like Splunk, ELK Stack, and Graylog
Network analysis tools like Wireshark and tcpdump
Remote access tools like SSH and RDP
Scripting languages like Python and Bash
Virtualization tools like VMware and VirtualBox
Backup and recovery tools like Veeam and Backup Exec
Stack is a data structure used to store and retrieve data in a last-in-first-out (LIFO) manner. ROM cannot be used as stack.
Stack is a collection of elements with two main operations: push (add element) and pop (remove element).
Stack follows the LIFO principle, meaning the last element added is the first one to be removed.
Stack can be implemented using arrays or linked lists.
ROM (Read-Only Memory) cannot be used as sta...
Some of the latest computer processors include Intel Core i9, AMD Ryzen 9, and Apple M1.
Intel Core i9
AMD Ryzen 9
Apple M1
Top trending discussions
I applied via Referral and was interviewed in Dec 2024. There were 4 interview rounds.
I am a software engineer with a Bachelor's degree in Computer Science and experience in developing web applications.
Bachelor's degree in Computer Science
Experience in developing web applications
posted on 2 Jan 2025
I applied via Referral
Print a specific pattern using any programming language.
A class in OOP is a blueprint for creating objects, defining their properties and behaviors.
Classes are templates for creating objects in OOP
They define the properties (attributes) and behaviors (methods) of objects
Objects are instances of classes, each with its own unique data
Inheritance allows classes to inherit properties and behaviors from other classes
Encapsulation ensures that the data is hidden and can only be a...
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.
A class can only extend one abstract class, but can implement multiple interfaces.
Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...
Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.
Joining is used to combine data from multiple tables in a database.
Inner join query retrieves only the records that have matching values in both tables.
Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;
Example: SELECT orders.order_i...
posted on 10 Dec 2024
I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.
I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.
5 years of experience in software development
Proficient in Java, Spring Boot, and Angular
Strong problem-solving skills
Experience working in Agile development environment
Bachelor's degree in Computer Science from XYZ University
I come from a close-knit family of five, including my parents, older sister, and younger brother.
Close-knit family of five
Parents, older sister, and younger brother
We enjoy spending time together traveling and trying new restaurants
Seeking new challenges and opportunities for growth in a different environment.
Desire for new challenges and learning opportunities
Seeking a better work-life balance
Interested in working with new technologies or industries
Looking for a more collaborative team environment
I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.
Runtime polymorphism allows a subclass to provide a specific implementation of a method that is already provided by its parent class.
Runtime polymorphism is achieved through method overriding, where a subclass provides its own implementation of a method that is already defined in its superclass.
The method to be overridden must have the same name, return type, and parameters in both the superclass and subclass.
When an o...
Streams in Java provide a way to process collections of objects in a functional style.
Streams are sequences of elements that support various operations like filter, map, reduce, etc.
They can be created from collections, arrays, or generate elements dynamically.
Streams can be sequential or parallel, allowing for efficient processing of large datasets.
Example: List<String> names = Arrays.asList("Alice", "Bob", "Cha...
Threads in Java are created by extending the Thread class or implementing the Runnable interface, and invoked using the start() method.
Threads can be created by extending the Thread class and overriding the run() method.
Threads can also be created by implementing the Runnable interface and passing an instance of the class to a Thread object.
Threads are invoked by calling the start() method on the Thread object.
Rest Template is a class in Spring that simplifies making HTTP requests and handling responses.
Rest Template is part of the Spring framework in Java.
It can be used to make HTTP requests to RESTful web services.
It simplifies the process of making HTTP calls and handling responses.
Rest Template can handle GET, POST, PUT, DELETE, etc. requests.
Example: RestTemplate restTemplate = new RestTemplate();
based on 5 interviews
Interview experience
based on 159 reviews
Rating in categories
Engineer- Customer Support
157
salaries
| ₹0.9 L/yr - ₹4.2 L/yr |
Desktop Support Engineer
51
salaries
| ₹1.1 L/yr - ₹3.8 L/yr |
Technical Support Engineer
34
salaries
| ₹1.8 L/yr - ₹3.1 L/yr |
Team Lead
17
salaries
| ₹1.2 L/yr - ₹5 L/yr |
Information Technology Support Engineer
16
salaries
| ₹1.9 L/yr - ₹3.5 L/yr |
Infosys
TCS
Wipro
HCLTech