plz solve this , i hv only half an hout to solve 7 questions asked in an i interview | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

plz solve this , i hv only half an hout to solve 7 questions asked in an i interview

public class  MyClass { public static void main(String[] args) { for (int a = 1; a <= 5; a++) { for (int b = 1; b <= a; b++) { System.out.print(a); // this statement prints to the screen } System.out.println(); // this statement prints to the screen } } }

11th Nov 2016, 5:52 PM
saurabh
saurabh - avatar
6 Answers
+ 6
If you need to ask Internet strangers to solve your interview questions, you're in the wrong interview...
11th Nov 2016, 7:14 PM
Riku Pepponen
Riku Pepponen - avatar
+ 2
Are you really in a PROGRAMMING INTERVIEW while you're asking some simple questions in a forum?
13th Nov 2016, 2:30 PM
AmirHosein Mansoori
AmirHosein Mansoori - avatar
+ 1
javascript var a = 1; var b = 2; var c = 3; if (a > b){ if (b > c){ document.write(a); } elseif (b > a){ if (b > c){ document.write (b); } else { document.write(c); }
11th Nov 2016, 6:41 PM
Maurizio Urso
Maurizio Urso - avatar
+ 1
or var a = 1; var b = 2; var c = 3; var max = a; if (b > max){ b = max;} if (c > max){ c = max;} document.write(max);
11th Nov 2016, 6:44 PM
Maurizio Urso
Maurizio Urso - avatar
0
1 22 333 4444 55555
11th Nov 2016, 6:01 PM
Maurizio Urso
Maurizio Urso - avatar
- 4
Question 2: Write some code, using a programming language or scripting language with which you are familiar, that will compare 3 numbers and print the largest number to the screen. For this question, please write the code to the best of your ability and do not write pseudo-code. Please fill in the line below stating what programming/scripting language you are using to answer this question. Programming/Scripting Language Used:_____________________ Your Code:
11th Nov 2016, 6:04 PM
saurabh
saurabh - avatar