Java Development
Open in Telegram
Learn something new in quality Instagram Link Java_Quizs https://instagram.com/java_quizs?utm_medium=copy_link
Show moreThe country is not specifiedTechnologies & Applications34 716
2 283
Subscribers
No data24 hours
No data7 days
No data30 days
Posts Archive
2 283
I request all members to join in
" Java_quizs discussion " group
Search for --> Java_quizs discussion
Note :- If U Are Not Able To Join In The Group. Please Watch The Video In comment's Section
π« Thank You π«
2 283
------------ π« Java_quizs π« ------------
β‘β‘For More Updates Followβ‘β‘
#java_quizs_java_materials
π« Complete Notes π«
https://drive.google.com/folderview?id=0B826HWiL9i8dMUtjYlFTd2dDQ2M&resourcekey=0-8IrtWVR1-PZ5FLGPK6YTbg
π¨
π« Head First Java Book π«
File Available In
" Comment Section "
π¨
π Hope U Loved It π
2 283
https://www.instagram.com/java_quizs/guide/oops-concepts/17914054250003519/?utm_medium=copy_link
Oop's Concepts Real World Examples
2 283
/* Question - 06
C program to convert fahrenheit to celsius
*/
#include <stdio.h>
int main()
{
float celsius, fahrenheit;
printf("Enter temperature in Fahrenheit: ");
scanf("%f", &fahrenheit);
//fahrenheit to celsius conversion formula
celsius = (fahrenheit-32)/1.8;
printf("Fahrenheit of %.2f In celsius Is %.2f", fahrenheit, celsius);
return 0;
}
2 283
#Quiz_Python (Question -65)
What is the maximum possible length of an identifier in Python?
2 283
#Quiz_Java (Question - 64)
In standalone Java applications, which method is mandatory?
2 283
Infytq python and dbms Syllabus π€―
Click here ππ»
https://www.instagram.com/p/CZZPza7FSyx/?utm_medium=copy_link
2 283
/* Question - 05
C program to convert celsius to fahrenheit
*/
#include <stdio.h>
int main()
{
float celsius, fahrenheit;
printf("Enter temperature in Celsius: ");
scanf("%f", &celsius);
//celsius to fahrenheit conversion formula
fahrenheit = (celsius * 9 / 5) + 32;
printf("Celsius of %.2f In Fahrenheit Is %.2f", celsius, fahrenheit);
return 0;
}
2 283
#Quiz_Python (Question - 61)
What arithmetic operators cannot be used with strings in Python?
