Forwarded from Donishmand Dasturchi
box.com dan ish uchun rad (reject) oldim.
Maqola: https://telegra.ph/Boxcom-dan-rad-javob-oldim-03-07
Maqola: https://telegra.ph/Boxcom-dan-rad-javob-oldim-03-07
👍1
Forwarded from Khamidulla Inoyatov
Biz qanday esdan chiqaramiz yohud eng muxim ko’nikma.
TLDR: Bu maqolada Amsterdamdagi kitob do’koni, eslab qolishish ko’nikmasi va uning muximligi haqida so’z yuritiladi. Barchaga ham tavsiya qilmayman. Juda uzun va qiziqarsiz bo’lishi mumkin siz uchun.
Agar yo’q men baribir o’qiyman desangiz unda xavola orqali maqolani o’qing.
@khamidulla_inoyatov
TLDR: Bu maqolada Amsterdamdagi kitob do’koni, eslab qolishish ko’nikmasi va uning muximligi haqida so’z yuritiladi. Barchaga ham tavsiya qilmayman. Juda uzun va qiziqarsiz bo’lishi mumkin siz uchun.
Agar yo’q men baribir o’qiyman desangiz unda xavola orqali maqolani o’qing.
@khamidulla_inoyatov
👍2
Recently had a post-lab interview at Epam Systems, here is the questions that i was asked:
https://telegra.ph/Java-Technical-Interview-Questions--Epam-Systems-06-02
https://telegra.ph/Java-Technical-Interview-Questions--Epam-Systems-06-02
Telegraph
Java Technical Interview Questions | Epam Systems
Java Core OOP HashMap internals like how put() method works - good explanation Arraylist vs LinkedList how they differ abstract class vs interfaces access modifiers, default vs protected How to create Thread in java what is DeadLock, LifeLock? Do you know…
🔥2
Engineering Blog
https://research.google/blog/extra-extra-read-all-about-it-nearly-all-binary-searches-and-mergesorts-are-broken/
This is about bug in binary search implementation in java which is detected 9 years later
😁1
Recently had an interview for Junior Java Engineer role at Vention Teams. Below you can find sample questions that i was asked during interview:
https://telegra.ph/Vention--Interview--Junior-Java-Engineer-07-31
https://telegra.ph/Vention--Interview--Junior-Java-Engineer-07-31
Telegraph
Vention | Interview | Junior Java Engineer
Recently had an interview for Junior Java Engineer role at Vention Teams. The interview consisted of three parts: recruiter call, tech call, final interview. You can find more details from articles below: Call with Recruiter Tech Call Final Interview
⚡1
Engineering Blog pinned «Recently had an interview for Junior Java Engineer role at Vention Teams. Below you can find sample questions that i was asked during interview: https://telegra.ph/Vention--Interview--Junior-Java-Engineer-07-31»
Hi, recently had a Project Interview at Epam Systems, below you can find the questions:
https://telegra.ph/Java--Project-Interview--Epam-Systems-09-11
https://telegra.ph/Java--Project-Interview--Epam-Systems-09-11
Telegraph
Java | Project Interview | Epam Systems
Hi, recently had a project interview at Epam Systems, so here i am going to list all the questions i was asked during the interview. Core Composition vs Inheritance? Exceptions in Java, try-catch, try-with resources Describe Java Memory Model, different parts…
Engineering Blog pinned «Hi, recently had a Project Interview at Epam Systems, below you can find the questions: https://telegra.ph/Java--Project-Interview--Epam-Systems-09-11»
Spent more then an hour to solve this problem and finally solved it 🎯:)
#leetcode
java
/*
// Definition for a Node.
class Node {
public int val;
public List<Node> neighbors;
public Node() {
val = 0;
neighbors = new ArrayList<Node>();
}
public Node(int _val) {
val = _val;
neighbors = new ArrayList<Node>();
}
public Node(int _val, ArrayList<Node> _neighbors) {
val = _val;
neighbors = _neighbors;
}
}
*/
class Solution {
public Node cloneGraph(Node node) {
if (node == null) {
return node;
}
Set<Integer> visited = new HashSet<>();
Map<Integer, Node> clones = new HashMap<>();
Queue<Node> q = new LinkedList<>();
q.add(node);
while (!q.isEmpty()) {
Node currNode = q.poll();
int currVal = currNode.val;
if (!visited.contains(currVal)) {
Node nodeClone = clones.getOrDefault(currVal, new Node(currVal));
clones.put(currVal, nodeClone);
for (Node child : currNode.neighbors) {
if (child == null) continue;
Node childClone = clones.getOrDefault(child.val, new Node(child.val));
clones.put(child.val, childClone);
nodeClone.neighbors.add(childClone);
q.add(child);
}
visited.add(currVal);
}
}
return clones.isEmpty() ? node : clones.get(1);
}
}
#leetcode
LeetCode
Clone Graph - LeetCode
Can you solve this real interview question? Clone Graph - Given a reference of a node in a connected [https://en.wikipedia.org/wiki/Connectivity_(graph_theory)#Connected_graph] undirected graph.
Return a deep copy [https://en.wikipedia.org/wiki/Object_c…
Return a deep copy [https://en.wikipedia.org/wiki/Object_c…
Excited to share that I passed AWS Certified Solutions Architect – Associate exam
Link: https://www.credly.com/badges/2f8bb511-341a-4414-bc09-8b7a79d5e07b/public_url
Link: https://www.credly.com/badges/2f8bb511-341a-4414-bc09-8b7a79d5e07b/public_url
Credly
AWS Certified Solutions Architect – Associate was issued by Amazon Web Services Training and Certification to Asliddin Eshonkulov.
Earners of this certification have a comprehensive understanding of AWS services and technologies. They demonstrated the ability to build secure and robust solutions using architectural design principles based on customer requirements. Badge owners are able…
Solved an interesting leetcode problem today after so many try:
class Solution {
Map<Character, Integer> freq = new HashMap<>();
Map<Character, Integer> count = new HashMap<>();
public int leastInterval(char[] tasks, int n) {
for (char task : tasks) {
freq.put(task, 0);
count.put(task, count.getOrDefault(task, 0) + 1);
}
PriorityQueue<Character> q = new PriorityQueue<>(new CustomOrder());
Set<Character> seen = new HashSet<>();
for (char task : tasks) {
if (seen.contains(task)) {
continue;
}
q.add(task);
seen.add(task);
}
int intervals = 0;
while (!q.isEmpty()) {
boolean hasTask = false;
Queue<Character> tmpQ = new LinkedList<>();
int size = q.size();
for (int i = 0; i < size; i++) {
char task = q.poll();
if (freq.get(task) == 0) {
intervals += 1;
count.put(task, count.get(task) - 1);
if (count.get(task) > 0) {
tmpQ.add(task);
}
decreaseFreq();
freq.put(task, n);
hasTask = true;
break;
}else {
tmpQ.add(task);
}
}
if (!hasTask) {
// cpu idle
decreaseFreq();
intervals += 1;
}
q.addAll(tmpQ);
}
return intervals;
}
private void decreaseFreq() {
for (Map.Entry<Character, Integer> entry : freq.entrySet()) {
char key = entry.getKey();
int occur = entry.getValue();
if (occur > 0) {
freq.put(key, occur - 1);
}
}
}
class CustomOrder implements Comparator<Character> {
@Override
public int compare(Character t1, Character t2) {
if (count.get(t1) > count.get(t2)) {
return -1;
}else if (count.get(t2) > count.get(t1)) {
return 1;
}else {
return 0;
}
}
}
}
Deleted Account
Solved an interesting leetcode problem today after so many try: class Solution { Map<Character, Integer> freq = new HashMap<>(); Map<Character, Integer> count = new HashMap<>(); public int leastInterval(char[] tasks, int n) { for (char…
Problem Link: https://leetcode.com/problems/task-scheduler/
Forwarded from MJC School | Uzbekistan
What will be the output of this program:
class Person {
Person() {
System.out.print("CP ");
}
static {
System.out.print("SP ");
}
}
class Manager extends Person {
Manager() {
System.out.print("CT ");
}
{
System.out.print("IT ");
}
}
class Program {
public static void main(String[] args) {
Person p1 = new Manager();
}
}Forwarded from MJC School | Uzbekistan
Answer options
Anonymous Quiz
27%
A. SP IT CP CT
14%
B. CP CP IT SP
55%
C. SP CP IT CT
5%
D. SP CP IT CT SP
Forwarded from MJC School | Uzbekistan
Explanation:
Option C is the correct answer.
The static contents are executed when the class is loaded so before the constructors are executed, so the SP will be printed first. Then the constructor of Person will print CP. Then the Manager class instance code block will print IT before Constructor prints CT. So, the output is SP CP IT CT. Therefore, option C is correct.
Static content will print only once. So, option D is incorrect.
Other outputs are incorrect as explained above.
The Code compiles fine so, option E is incorrect.
REFERENCE:http://docs.oracle.com/javase/tutorial/java/IandI/super.html http://docs.oracle.com/javase/tutorial/java/IandI/super.html
Oracle
Using the Keyword super (The Java™ Tutorials >
Learning the Java Language > Interfaces and Inheritance)
Learning the Java Language > Interfaces and Inheritance)
This beginner Java tutorial describes fundamentals of programming in the Java programming language
Forwarded from MJC School | Uzbekistan
What will be the output of this program:
import java.util.List;
public class MJC {
public static void main(String args[]) {
int factor = 2;
List<Integer> nums = List.of(1, 2, 3, 4, 5);
nums.stream()
.map(num -> num * factor)
.forEach(System.out::print);
factor += 1;
}
}
Forwarded from MJC School | Uzbekistan
Answer options:
Anonymous Quiz
44%
A. 246810
6%
B. 3691215
6%
C. 26122030
38%
D. Compilation fails
6%
E. Runtime error
Forwarded from MJC School | Uzbekistan
Explanation:
Option D is correct.
Lambda expression can only access local variables and parameters of the enclosing block that are final or effectively final. In above code factor does not meet this requirement and compilation fails.
References:https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html#syntax
Oracle
Lambda Expressions (The Java™ Tutorials >
Learning the Java Language > Classes and Objects)
Learning the Java Language > Classes and Objects)
This beginner Java tutorial describes fundamentals of programming in the Java programming language