Upload Button Icon Add office photos

Filter interviews by

Goolean Technologies Interview Questions, Process, and Tips

Updated 18 Feb 2021

Goolean Technologies Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Types of table joins
  • Ans. 

    Table joins are used to combine data from two or more tables based on a related column.

    • Inner join: returns only the matching rows from both tables

    • Left join: returns all rows from the left table and matching rows from the right table

    • Right join: returns all rows from the right table and matching rows from the left table

    • Full outer join: returns all rows from both tables, with NULL values in the columns where there is no m...

  • Answered by AI
  • Q2. MySQL backup command from command prompt
  • Ans. 

    MySQL backup command from command prompt

    • Use mysqldump command to backup MySQL database from command prompt

    • Syntax: mysqldump -u [username] -p [password] [database_name] > [backup_file_name.sql]

    • Example: mysqldump -u root -p mypassword mydatabase > mybackup.sql

  • Answered by AI
  • Q3. How to load csv file into a database from command prompt
  • Ans. 

    To load a CSV file into a database from the command prompt, you can use the database's command-line interface or a scripting language.

    • Ensure the database is installed and accessible from the command prompt

    • Use the appropriate command or script to connect to the database

    • Create a table in the database with the same structure as the CSV file

    • Use the appropriate command or script to import the CSV file into the table

    • Verify t

  • Answered by AI
  • Q4. How to source a SQL file into database from command prompt
  • Ans. 

    To source a SQL file into database from command prompt, use the 'mysql' command followed by the database name and file path.

    • Open command prompt

    • Navigate to the directory where the SQL file is located

    • Use the 'mysql' command followed by the database name and file path

    • Example: mysql -u username -p database_name < file_path.sql

  • Answered by AI
  • Q5. How to create table
  • Ans. 

    To create a table, use the CREATE TABLE statement followed by the table name and column definitions.

    • Use CREATE TABLE statement

    • Specify table name

    • Define columns with data types and constraints

    • Example: CREATE TABLE customers (id INT PRIMARY KEY, name VARCHAR(50), email VARCHAR(100));

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They will concentrate on only technical part .

Skills evaluated in this interview

Database Administrator DBA Interview Questions asked at other Companies

Q1. How to load csv file into a database from command prompt
View answer (2)

Interview questions from similar companies

I applied via Referral and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic concept question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics should be clear. Some scenario based questions based on business rules and FDMEE data load

I applied via Naukri.com and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude and English test

Round 2 - Technical 

(1 Question)

  • Q1. Technical round to test technical skills
Round 3 - HR 

(1 Question)

  • Q1. This was fun. It'll take few minutes.

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to prepare hard.company will be taking people on basis of their technology requirements and needs

Analyst Interview Questions & Answers

Wipro user image Anonymous

posted on 23 Feb 2021

Interview Questionnaire 

1 Question

  • Q1. Previous Project Experience

I applied via Company Website and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is recursion ? what is inheritance? what is heap? write a code to find the largest element in an array?
  • Ans. 

    Recursion is a process in which a function calls itself. Inheritance is a mechanism in OOP where a class inherits properties of another class. Heap is a region of memory used for dynamic memory allocation.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems.

    • Inheritance allows for code reuse and helps in creating a hierarchy of classes.

    • Heap is used for dynamic memory allocation in la...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence till the end of the interview and be clear with your voice .

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions only ... regarding job and experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident ... always say the truth ... never try to fake your details

I applied via Naukri.com and was interviewed before Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for job change
  • Q2. Question about job profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for interview as selection process can be time consuming

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Cocubes Test Task 1 is of Aptitude questions needs to be completed in Specific time interval and Task 2 is Essay Writing to be finished in Given interval

Round 2 - HR 

(1 Question)

  • Q1. Are you ready to Relocate
  • Ans. Yes I am relocate and flexible with any location
  • Answered Anonymously
Round 3 - Coding Test 

L1 Exam should be cleared L 1 exam is of multiple choice questions and completely related to Java J2Ee Spring

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for co cubes Aptitude and All the best

I applied via Recruitment Consultant and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Favorite dish and explain about its preaparation
  • Q3. Process related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skills

I applied via Campus Placement and was interviewed before Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1.  I was asked to introduce about myself
  • Q2. I was asked about my final year project work and all its pinpoint details
  • Q3. I was asked about how the company would be benefitted from the project that I have done .
  • Q4. Where do you see yourself after five years, working at this company
  • Q5. What are Ur extra curricular activities
  • Q6. Do you read books ,articles or watch documentaries
  • Q7. Did you participate in any college events

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice is to my junior batches is that first of all never get stressed before going in, one thing I can say from my experience is that it is very easy to get into Infosys if you pass the aptitude test that they give.
Interview will be very easy to attend

Goolean Technologies Interview FAQs

How to prepare for Goolean Technologies 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 Goolean Technologies. The most common topics and skills that interviewers at Goolean Technologies expect are HTML, MySQL, Presentation Skills, CSS and Communication Skills.
What are the top questions asked in Goolean Technologies interview?

Some of the top questions asked at the Goolean Technologies interview -

  1. How to load csv file into a database from command pro...read more
  2. How to source a SQL file into database from command pro...read more
  3. MySQL backup command from command pro...read more

Tell us how to improve this page.

Goolean Technologies Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k 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
Amazon Interview Questions
4.0
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k 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
View all

Goolean Technologies Reviews and Ratings

based on 15 reviews

4.4/5

Rating in categories

4.2

Skill development

4.5

Work-life balance

4.3

Salary

4.4

Job security

4.3

Company culture

4.4

Promotions

4.2

Work satisfaction

Explore 15 Reviews and Ratings
Software Engineer
8 salaries
unlock blur

₹3.6 L/yr - ₹6.5 L/yr

Senior PHP Developer
8 salaries
unlock blur

₹4 L/yr - ₹7.7 L/yr

PHP Developer
7 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Android Developer
5 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Software Developer
4 salaries
unlock blur

₹3.4 L/yr - ₹6 L/yr

Explore more salaries
Compare Goolean Technologies 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