employer cover photo

Trutech Web Solutions

Is this your company?

Trutech Web Solutions Interview Question

4 16 64 256 solve using for loop.

Interview Answers

Anonymous

Jul 29, 2019

Public class Demo { public static void main(String args[]) { for(int i = 4; i <=32; i=i*4) System.out.print(i+", "); } }

1

Anonymous

Mar 8, 2018

What was the AI questions??

Anonymous

Jul 29, 2019

Public class Demo { public static void main(String args[]) { for(int i = 4; i <= 32; i=i*4) System.out.print(i+" , "); } }