Java Development
Открыть в Telegram
Learn something new in quality Instagram Link Java_Quizs https://instagram.com/java_quizs?utm_medium=copy_link
БольшеСтрана не указанаТехнологии и приложения34 716
2 283
Подписчики
Нет данных24 часа
Нет данных7 дней
Нет данных30 день
Архив постов
2 283
#Quiz_Java (Question - 100)
Which of the following can be operands of arithmetic operators?
2 283
/* Question - 19
Java Program To Find Fibonacci Series
*/
package ABC;
import java.util.*;
public class Main {
public static void main(String[] args) {
int Num1=0,Num2=1,Num3,Total_Num;
Scanner S = new Scanner(System.in);
System.out.print("Fibonacci Series Upto :");
Total_Num = S.nextInt();
for(int i=1;i<=Total_Num;++i)
{
System.out.print(Num1+",");
// Printing The Next Terms
Num3 = Num1 + Num2;
Num1 = Num2;
Num2 = Num3;
}
}
}
2 283
#Quiz_Java (Question - 99)
Which method is used for concatenating two strings?
2 283
#Quiz_Java (Question - 98)
String type variable is created on ………….. Memory.
2 283
/* Question - 18
Java Program To Find The Factors of A Number
*/
package ABC;
import java.util.*;
public class Main {
public static void main(String[] args) {
int Num;
Scanner S = new Scanner(System.in);
System.out.println("Enter The Num :");
Num = S.nextInt();
System.out.println("Factors Of No Is :");
for(int i=1;i<=Num;++i)
{
if(Num%i==0)
{
System.out.println(i);
}
}
}
}
2 283
/* Question - 17
Java Program To Convert Decimal Number(Postive Number) To Binary Number
*/
package ABC;
import java.util.*;
public class Main {
public static void main(String[] args) {
int Num=8,Bin=0,Rem=0,Place=1,Var;
System.out.println("Decimal No: "+Num);
Var = Num;
while(Num!=0)
{
Rem = Num % 2;
Num = Num / 2;
Bin = Bin +(Rem*Place);
Place = Place * 10;
}
System.out.printf("Convertion Of Decimal %d To Binary Number Is : %d",Var,Bin);
}
}
2 283
#Quiz_Java (Question - 96)
Which of the following type is immutable?
2 283
👇👇👇
Recruitment Fresher And Experienced
Top MNC Jobs | Companies Registration Links For Freshers | Top MNC Career Pages
Telegram channel link: https://t.me/servingjobs
Below are the some top Companies
----------------------------------------------------------------
01. Google
02. Microsoft
03. IBM
04. TCS NextStep
05. Infosys
06. Wipro
07. HP
08. Oracle
09. Capgemini
10. DELL
11. MindTree
12. Cisco
13. Intel
14. Moser Baer
15. NIIT
16. Tech Mahindra
17. Cognizant
We'll post jobs for any qualification, apply it as per your eligibility criteria.
2 283
👇👇
🎉 😊 🎉 !!! Heyy Followers !!! 🎉 ☺️ 🎉
Note :- Doudt Of How To See Pinned Posts (Comment's)
As of Now Content Posted In Our Telegram Channel
Pinned Posts (Important Posts)
1. Complete Cse Department Hand Written Notes
2. Complete Cse Placement Material
3. Udemy C Programming Codes
4. Data Structures Using C Complete Hand Written Notes
5. Complete Python Notes And Cheat Sheets
6. Let Us C (Book)
7. Let Us Python (Book)
8. Java - The Complete Reference (Book)
9. C Language Important Questions (Posting)
10. Complete Java Materials Including Head First Java Book
11. Java Programming Important Questions (Posting)
Finally 😎😎
Posting Daily Quizzes 😌😌😌
🎉🎉🎉💗 Daily Quizzes 💗🎉🎉🎉
2 283
Hello Everyone !!!!!
Finally, we are a family of 1k subscriber's. It would not be possible without your immense support and encouragement. Thank you for the ideas, opinions, help, and for sharing my things with others. Keep Supporting! ☺️☺️
#Team Java_Quizs
