Пікірлер
@tanixxmusic
@tanixxmusic 3 ай бұрын
she's so stupid to explain the use of a heading tag in an app The simple answer can be: h1 can be used for bold parts of a web page that we want people to see and get attracted to and h6 can be used for terms and conditions, contact info, or any minor info.
@anjubiswas1264
@anjubiswas1264 3 ай бұрын
5
@KiranmaiBejjanki
@KiranmaiBejjanki 4 ай бұрын
False
@tharamangalam_
@tharamangalam_ 4 ай бұрын
False type difference error
@diwakarsingh786
@diwakarsingh786 4 ай бұрын
def caesar_cipher(text, key): if key < 0: return "INVALID INPUT" encrypted_text = "" for char in text: if char.isupper(): encrypted_text += chr((ord(char) - 65 + key) % 26 + 65) elif char.islower(): encrypted_text += chr((ord(char) - 97 + key) % 26 + 97) elif char.isdigit(): encrypted_text += str((int(char) + key) % 10) else: encrypted_text += char return encrypted_text # Example usage: plaintext = input("Enter the plaintext message: ") key = int(input("Enter the key value (0 to 25): ")) encrypted_message = caesar_cipher(plaintext, key) print("Encrypted message:", encrypted_message)
@diwakarsingh786
@diwakarsingh786 4 ай бұрын
def calculate_paint_cost(num_interior_walls, num_exterior_walls): total_cost = 0 for _ in range(num_interior_walls): interior_area = float(input("Enter surface area of interior wall in sq.ft: ")) total_cost += interior_area * 18 for _ in range(num_exterior_walls): exterior_area = float(input("Enter surface area of exterior wall in sq.ft: ")) total_cost += exterior_area * 12 return total_cost # Example usage: num_interior_walls = int(input("Enter the number of interior walls: ")) num_exterior_walls = int(input("Enter the number of exterior walls: ")) total_paint_cost = calculate_paint_cost(num_interior_walls, num_exterior_walls) print("Total paint cost:", total_paint_cost, "Rs.")
@diwakarsingh786
@diwakarsingh786 4 ай бұрын
def calculateTime(n): if n == 0: print("Time Estimated : 0 Minutes") elif 0 < n <= 2000: print("Time Estimated : 25 Minutes") elif 2000 < n <= 4000: print("Time Estimated : 35 Minutes") elif 4000 < n <= 7000: print("Time Estimated : 45 Minutes") else: print("INVALID INPUT") def main(): machineWeight = int(input()) calculateTime(machineWeight) if __name__ == "__main__": main()
@diwakarsingh786
@diwakarsingh786 4 ай бұрын
def main(): trainee = [[0]*3 for _ in range(3)] average = [0] * 3 max_avg = 0 for i in range(3): for j in range(3): trainee[i][j] = int(input()) if trainee[i][j] < 1 or trainee[i][j] > 100: trainee[i][j] = 0 for i in range(3): for j in range(3): average[i] += trainee[j][i] average[i] //= 3 max_avg = max(average) for i in range(3): if average[i] == max_avg: print("Trainee Number:", i + 1) if average[i] < 70: print("Trainee is Unfit") if __name__ == "__main__": main()
@frontendinterviewlive5532
@frontendinterviewlive5532 4 ай бұрын
def main(): n = int(input()) arr = [] for i in range(n): arr.append(input()[0]) lower = [0] * 26 upper = [0] * 26 for char in arr: if 'A' <= char <= 'Z': upper[ord(char) - ord('A')] += 1 elif 'a' <= char <= 'z': lower[ord(char) - ord('a')] += 1 flag = False ch = '\0' for char in arr: if 'A' <= char <= 'Z': if upper[ord(char) - ord('A')] % 2 == 1: ch = char flag = True break elif 'a' <= char <= 'z': if lower[ord(char) - ord('a')] % 2 == 1: ch = char flag = True break if flag: print(ch) else: print("All are even") if __name__ == "__main__": main()
@frontendinterviewlive5532
@frontendinterviewlive5532 4 ай бұрын
#include <bits/stdc++.h> using namespace std; int main() { int r,c,a,sum=0,m=INT_MIN,in=0; cin>>r>>c; for(int i=0;i>a; sum+=a; } if(sum>m) { m=sum; in=i+1; } sum=0; } cout<< in; }
@devT44
@devT44 4 ай бұрын
What's difference between compiler and jit compiler? Why js engine uses jit compiler instead of normal compiler?
@frontendinterviewlive5532
@frontendinterviewlive5532 4 ай бұрын
a regular compiler translates the entire program upfront, a JIT compiler translates parts of the code just before they're needed, which can lead to better performance, especially for dynamic languages like JavaScript used in web development.
@frontendinterviewlive5532
@frontendinterviewlive5532 4 ай бұрын
thanks for the comment as it helped us to learn new things
@rajeshbhandari1238
@rajeshbhandari1238 5 ай бұрын
Keep it up
@DevanshSharma-zn3oh
@DevanshSharma-zn3oh 5 ай бұрын
Experienced or fresher??
@abhijeetkujur9670
@abhijeetkujur9670 5 ай бұрын
Is this for IBM Application developer: Frontend-end role
@adarshyadav_0008
@adarshyadav_0008 5 ай бұрын
thanks brother
@govindsuryavanshi6686
@govindsuryavanshi6686 5 ай бұрын
well explained.....but bhai avi to direct code ikhne bol rhe hn , uska b video banao
@venom384
@venom384 6 ай бұрын
No webcam ! Dude I think u missed the word ‘mock’ in your video title
@SumitSinha_ArtFreak
@SumitSinha_ArtFreak 3 ай бұрын
It’s just audio recording I guess not video recording
@shivanshbohra03
@shivanshbohra03 6 ай бұрын
typeof(null): Object typeof(undefined): undefined
@shivanshbohra03
@shivanshbohra03 6 ай бұрын
11-2 = 9 . It is converted in to number due to type conversion concept.
@shivanshbohra03
@shivanshbohra03 6 ай бұрын
answer: String typeof 1: Number typeof "Number" : String
@himanshuupreti9457
@himanshuupreti9457 6 ай бұрын
Theory guy
@ROVERexploler
@ROVERexploler 7 ай бұрын
How many year of experience??
@Shashwat_sri_78
@Shashwat_sri_78 7 ай бұрын
012
@pratimroy2405
@pratimroy2405 7 ай бұрын
We can modify values inside an array which is declared as const because const makes the reference to the array immutable but the individual elements inside the array are mutable.
@frontendinterviewlive5532
@frontendinterviewlive5532 7 ай бұрын
Nice 👍
@kafeelization
@kafeelization 7 ай бұрын
Red
@kafeelization
@kafeelization 7 ай бұрын
Green
@kafeelization
@kafeelization 7 ай бұрын
4
@kafeelization
@kafeelization 7 ай бұрын
False
@kafeelization
@kafeelization 7 ай бұрын
Number
@kafeelization
@kafeelization 7 ай бұрын
False
@kafeelization
@kafeelization 7 ай бұрын
Blue
@kafeelization
@kafeelization 7 ай бұрын
Green
@kafeelization
@kafeelization 7 ай бұрын
True
@kafeelization
@kafeelization 7 ай бұрын
Red
@kafeelization
@kafeelization 7 ай бұрын
Red
@kafeelization
@kafeelization 7 ай бұрын
Red
@kafeelization
@kafeelization 7 ай бұрын
25
@kafeelization
@kafeelization 7 ай бұрын
9
@kafeelization
@kafeelization 7 ай бұрын
6
@kafeelization
@kafeelization 7 ай бұрын
3 3 3
@kafeelization
@kafeelization 7 ай бұрын
Answer is 6
@kafeelization
@kafeelization 7 ай бұрын
0
@msdhoni6419
@msdhoni6419 7 ай бұрын
Demo interview
@pravinsathe6521
@pravinsathe6521 7 ай бұрын
Bhai Aisa nahi hota interview, aajkal to editor open karke code likhne bolte he screen share karke. Itna easy nahi raha aajkal interview
@Jh05jj
@Jh05jj 7 ай бұрын
False because ye number ke sath sath datatype bhi check kr rha hai ek number or dusra string
@rachanaZende-Thorat
@rachanaZende-Thorat 7 ай бұрын
3 3 3
@AyushSharma-li1kn
@AyushSharma-li1kn 7 ай бұрын
scripted😶‍🌫😶‍🌫
@jagmohanraijagmohanrai4882
@jagmohanraijagmohanrai4882 7 ай бұрын
In case of arrow function not support so it gives an error .
@subhashreddy6750
@subhashreddy6750 7 ай бұрын
9
@sohailsam3505
@sohailsam3505 7 ай бұрын
02