Forwarded from GebetaMaps
Get ready for an exciting opportunity to work with Gebeta Maps!
Are you a developer or have friends who code? Have you ever had an app idea that requires location API services but you needed that extra push? This hackathon is for you! ๐
Register now and take part on this week of virtual hackathon. Lock in and Win Prizes.
Any developer or team from Ethiopia, Rwanda and Djibouti can participate.
Sign Up Now at hackathon.gebeta.app
Are you a developer or have friends who code? Have you ever had an app idea that requires location API services but you needed that extra push? This hackathon is for you! ๐
Register now and take part on this week of virtual hackathon. Lock in and Win Prizes.
Any developer or team from Ethiopia, Rwanda and Djibouti can participate.
Sign Up Now at hackathon.gebeta.app
import java.util.Scanner;
public class QuizExample {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter Your Name: ");
String name = scan.nextLine();
System.out.println("Enter Your Age: ");
int age = scan.nextInt();
// Fixing the Scanner issue with nextInt
_____ // Fill in this line
System.out.println("What's Your Favorite Color: ");
String color = scan.nextLine();
System.out.println("Hello " + name + ". You are " + age + " years old and you like " + color + ".");
}
}
Answer to the above Code
Anonymous Quiz
16%
scan.next();
48%
scan.nextLine();
23%
scan.close();
13%
scan.reset();
What's the output for the above code
Anonymous Quiz
42%
4
36%
5
12%
ReferenceError: X is not defined
5%
Syntax error
5%
Undefined
Forwarded from Telegram Contests
Prize fund: $50,000
Deadline: 23:59 on December 21st (Dubai time)
Who can participate: Everyone, even if you didn't join Round 1
Results: December 2024
Telegram is hosting a contest for Android developers to enhance and upgrade the in-chat camera.
THE TASK
Adapt the existing in-chat camera with the camera for Stories, including all its features:
โ Collages;
โ Dual Camera Mode;
โ Front Camera Flash;
โ Widgets (for interactive widgets, i.e., reactions or links, your app may just apply a non-interactive entity over the canvas)...
Your implementation must remove any story-related restrictions or controls. Specifically, your app must not impose a limit on video length and should exclude interface controls that are only relevant for stories. Your app must retain the existing in-chat camera interface and flow before user opens the camera (i.e., the preview within the attachment menu).
Contest Requirements:
General
โ Your app must provide a consistent and smooth recording experience that aligns with the device's native camera app.
โ No third-party UI frameworks are allowed.
โ The submission must be consistent with the existing Telegram for Android codebase.
โ The app's stability and performance must not be affected with the changes you made.
โ The app must be free of significant flaws (including crashes, visual glitches, noticeable element blinking, layout errors, and more).
Note:
Submissions that introduce improvements to video recording are likely to receive higher scores in this contest.
Evaluation:
During the evaluation stage, we will review your code and test the submission on a wide range of Android devices.
Winners may be offered a chance to join the
Submissions:
Contestants will be able to submit their entries to @ContestBot at a later date. We will further clarify the submission instructions closer to the deadline.
Please open Telegram to view this post
VIEW IN TELEGRAM
What's the output for the above code ?
Anonymous Quiz
8%
false false
32%
false true
24%
true false
22%
true true
14%
compilation error