Open In App

Nowfloats Interview Experience for Software Engineer 2023

Last Updated : 28 Jul, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Nowfloats is a Hyderabad-based software company that conducted an on-campus recruitment drive in May 2023 for 2023 passing out B.Tech CSE/IT students.

Designation: Software Engineer

Selection Process:

  • Aptitude Round
  • Technical Interview 1
  • Technical Interview 2
  • Hr round

Aptitude Round:-Number of Questions 20

Only technical questions(from DSA/oops/Java)

Technical Round 1-(30-45 min)

  • Ask questions based on my resume
  • Logic-based question -how can we print the loader only using CSS what is the property of it
  • Ask output-based questions

Java




class P {
    int i;
}
  
class C {
    public static void main(String[] args) {
        P p = new P();
        p.i = 90;
        X(p);  // Pass the object p, not p.i
        System.out.println(p.i);
    }
  
    static void X(P obj) {
         obj=new P();
      obj.i=45;
    }
}
  
output-90


  • What is the output of this code if the output is 90 then what is the logic behind it
  • Ask questions from OOPs and ask some real-time example

(Focus on your Basics)

Technical round 2-(30-45 min)

  • Ask Questions from DSA-(N Queen Problem)
  • Ask Questions From DBMS-(How many primary keys and Unique keys can store in a table)

HR Round:

  • keys

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads